Compare commits
10 Commits
odoo-rewor
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| c5ffac41ce | |||
| bb09fdb3d2 | |||
| 631c142475 | |||
| d49317ef58 | |||
| ac5c7a83ee | |||
| 742a042b1e | |||
| cc926cd2fc | |||
| 6ef197ceae | |||
| 8e5e8492b1 | |||
| 6f2ca22f89 |
@@ -2,5 +2,5 @@ apiVersion: v2
|
||||
name: immich-argocd-apps
|
||||
description: A Helm chart for deploying Immich as an ArgoCD app
|
||||
type: application
|
||||
version: 0.3.0
|
||||
appVersion: v1.123.0
|
||||
version: 0.8.0
|
||||
appVersion: v1.131.0
|
||||
|
||||
@@ -28,4 +28,4 @@ spec:
|
||||
syncOptions:
|
||||
- ApplyOutOfSyncOnly=true
|
||||
- ServerSideApply=true
|
||||
- CreateNamespace=true
|
||||
- CreateNamespace=true
|
||||
|
||||
@@ -2,4 +2,4 @@ apiVersion: v2
|
||||
name: odoo-argocd-apps
|
||||
description: A Helm chart for deploying the requirements, main charts and postinstall as ArgoCD apps for Odoo
|
||||
type: application
|
||||
version: 0.1.1
|
||||
version: 0.1.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: {{ .Values.argocd.prefix }}odoo-chart
|
||||
name: odoo-chart
|
||||
namespace: {{ .Values.argocd.namespace }}
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "0"
|
||||
@@ -13,9 +13,8 @@ spec:
|
||||
chart: odoo
|
||||
targetRevision: 28.x
|
||||
helm:
|
||||
releaseName: {{ .Values.argocd.prefix }}odoo
|
||||
releaseName: odoo
|
||||
valuesObject:
|
||||
image.debug: {{ .Values.odoo.image.debug }}
|
||||
odooEmail: {{ .Values.odoo.odooEmail }}
|
||||
replicaCount: {{ .Values.odoo.replicaCount }}
|
||||
resourcesPreset: {{ .Values.odoo.resourcesPreset }}
|
||||
@@ -24,15 +23,13 @@ spec:
|
||||
postgresql:
|
||||
enabled: false
|
||||
externalDatabase:
|
||||
host: {{ .Values.odoo.externalDatabase.host }}
|
||||
port: {{ .Values.odoo.externalDatabase.port }}
|
||||
user: {{ .Values.odoo.externalDatabase.user }}
|
||||
database: {{ .Values.odoo.externalDatabase.database }}
|
||||
create: {{ .Values.odoo.externalDatabase.create }}
|
||||
existingSecret: {{ .Values.odoo.externalDatabase.passwordSecret.name }}
|
||||
existingSecretPasswordKey: {{ .Values.odoo.externalDatabase.passwordSecret.key }}
|
||||
sslmode: require
|
||||
extraOptions: sslrootcert=/opt/ssl/root.crt sslcert=/opt/ssl/postgresql.crt sslkey=/opt/ssl/postgresql.key
|
||||
host: odoo-db-rw
|
||||
port: 5432
|
||||
user: app
|
||||
database: app
|
||||
create: false
|
||||
existingSecret: odoo-db-app
|
||||
existingSecretPasswordKey: password
|
||||
destination:
|
||||
server: {{ .Values.destination.server }}
|
||||
namespace: {{ .Values.destination.namespace }}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: {{ .Values.argocd.prefix }}odoo-postinstall
|
||||
name: odoo-postinstall
|
||||
namespace: {{ .Values.argocd.namespace }}
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "1"
|
||||
@@ -15,7 +15,6 @@ spec:
|
||||
helm:
|
||||
releaseName: odoo-postinstall
|
||||
valuesObject:
|
||||
prefix: {{ .Values.argocd.prefix }}
|
||||
tailscaleIngresses:
|
||||
odooHostname: {{ .Values.tailscaleIngresses.odooHostname }}
|
||||
destination:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: {{ .Values.argocd.prefix }}odoo-requirements
|
||||
name: odoo-requirements
|
||||
namespace: {{ .Values.argocd.namespace }}
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "-1"
|
||||
@@ -15,10 +15,8 @@ spec:
|
||||
helm:
|
||||
releaseName: odoo-requirements
|
||||
valuesObject:
|
||||
prefix: {{ .Values.argocd.prefix }}
|
||||
odoo:
|
||||
dbCluster:
|
||||
enable: {{ .Values.odoo.dbCluster.enable }}
|
||||
numInstances: {{ .Values.odoo.dbCluster.numInstances }}
|
||||
size: {{ .Values.odoo.dbCluster.size }}
|
||||
dataPvc:
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
argocd:
|
||||
namespace: argocd
|
||||
project: default
|
||||
prefix: null
|
||||
requirements:
|
||||
repoURL: "https://git.blarre.net/thomas/helm-charts.git"
|
||||
targetRevision: HEAD
|
||||
@@ -17,7 +16,6 @@ destination:
|
||||
|
||||
odoo:
|
||||
dbCluster:
|
||||
enable: true
|
||||
numInstances: 3
|
||||
size: 10Gi
|
||||
dataPvc:
|
||||
@@ -27,17 +25,6 @@ odoo:
|
||||
odooEmail: "admin@domain.net"
|
||||
resourcesPreset: "large"
|
||||
replicaCount: 1
|
||||
externalDatabase:
|
||||
host: odoo-db-rw
|
||||
port: 5432
|
||||
user: app
|
||||
database: app
|
||||
create: false
|
||||
passwordSecret:
|
||||
name: odoo-db-secret
|
||||
key: password
|
||||
image:
|
||||
debug: false
|
||||
|
||||
tailscaleIngresses:
|
||||
odooHostname: odoo
|
||||
@@ -2,4 +2,4 @@ apiVersion: v2
|
||||
name: odoo-postinstall
|
||||
description: A Helm chart for deploying the postinall stuff for odoo, mainly the ingress
|
||||
type: application
|
||||
version: 0.1.1
|
||||
version: 0.1.0
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: {{ .Values.prefix}}ts-odoo
|
||||
name: ts-odoo
|
||||
annotations:
|
||||
tailscale.com/funnel: "true"
|
||||
spec:
|
||||
defaultBackend:
|
||||
service:
|
||||
name: {{ .Values.prefix }}odoo
|
||||
name: odoo
|
||||
port:
|
||||
name: http
|
||||
ingressClassName: tailscale
|
||||
|
||||
@@ -1,3 +1,2 @@
|
||||
prefix: null
|
||||
tailcaleIngresses:
|
||||
odooHostname: odoo
|
||||
@@ -2,4 +2,4 @@ apiVersion: v2
|
||||
name: odoo-requirements
|
||||
description: A Helm chart for the requirements for Odoo
|
||||
type: application
|
||||
version: 0.1.1
|
||||
version: 0.1.0
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
{{- if .Values.odoo.dbCluster.enabled -}}
|
||||
: postgresql.cnpg.io/v1
|
||||
apiVersion: postgresql.cnpg.io/v1
|
||||
kind: Cluster
|
||||
metadata:
|
||||
name: {{ .Values.prefix }}odoo-db
|
||||
name: odoo-db
|
||||
spec:
|
||||
instances: {{ .Values.odoo.dbCluster.numInstances }}
|
||||
storage:
|
||||
size: {{ .Values.odoo.dbCluster.size }}
|
||||
{{- end }}
|
||||
size: {{ .Values.odoo.dbCluster.size }}
|
||||
@@ -1,7 +1,5 @@
|
||||
prefix: null
|
||||
odoo:
|
||||
dbCluster:
|
||||
enable: true
|
||||
numInstances: 3
|
||||
size: 10Gi
|
||||
dataPvc:
|
||||
|
||||
16
thomflix-postinstall/templates/transmission-ingress.yaml
Normal file
16
thomflix-postinstall/templates/transmission-ingress.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: transmission-thomflix
|
||||
annotations:
|
||||
tailscale.com/tags: "tag:k8s,tag:thomflix"
|
||||
spec:
|
||||
defaultBackend:
|
||||
service:
|
||||
name: transmission
|
||||
port:
|
||||
number: 10109
|
||||
ingressClassName: tailscale
|
||||
tls:
|
||||
- hosts:
|
||||
- {{ .Values.tailscaleIngresses.transmissionHostname }}
|
||||
@@ -3,6 +3,7 @@ tailscaleIngresses:
|
||||
sonarrHostname: thomflix-sonarr
|
||||
radarrHostname: thomflix-radarr
|
||||
filebrowserHostname: thomflix-files
|
||||
transmissionHostname: thomflix-transmission
|
||||
mainNamespace: thomflix
|
||||
jellyfinURL: "jellyfin.domain.net"
|
||||
jellyseerrURL: "jellyserr.domain.net"
|
||||
|
||||
Reference in New Issue
Block a user