10 Commits

Author SHA1 Message Date
c5ffac41ce Bumping immich version 2025-04-01 12:03:50 +02:00
bb09fdb3d2 Bumped immich version 2025-03-27 20:08:24 +01:00
631c142475 Bumped immich to 1.129.0 2025-03-09 21:01:38 +01:00
d49317ef58 Bumped immich to 1.128.0 2025-03-03 07:17:25 +01:00
ac5c7a83ee Added transmission ingress 2025-02-27 07:24:33 +01:00
742a042b1e Bumped immich to 1.127.0 2025-02-26 17:21:22 +01:00
cc926cd2fc Bumped immich version to 1.126.1 2025-02-13 23:36:23 +01:00
6ef197ceae Bumped immich to 1.125.7 2025-01-31 12:12:55 +00:00
8e5e8492b1 Bumped immich to 1.125.3 2025-01-27 13:32:47 +00:00
6f2ca22f89 Bumped immich to 1.124.2 2025-01-16 22:45:12 +01:00
15 changed files with 39 additions and 46 deletions

View File

@@ -2,5 +2,5 @@ apiVersion: v2
name: immich-argocd-apps name: immich-argocd-apps
description: A Helm chart for deploying Immich as an ArgoCD app description: A Helm chart for deploying Immich as an ArgoCD app
type: application type: application
version: 0.3.0 version: 0.8.0
appVersion: v1.123.0 appVersion: v1.131.0

View File

@@ -28,4 +28,4 @@ spec:
syncOptions: syncOptions:
- ApplyOutOfSyncOnly=true - ApplyOutOfSyncOnly=true
- ServerSideApply=true - ServerSideApply=true
- CreateNamespace=true - CreateNamespace=true

View File

@@ -2,4 +2,4 @@ apiVersion: v2
name: odoo-argocd-apps name: odoo-argocd-apps
description: A Helm chart for deploying the requirements, main charts and postinstall as ArgoCD apps for Odoo description: A Helm chart for deploying the requirements, main charts and postinstall as ArgoCD apps for Odoo
type: application type: application
version: 0.1.1 version: 0.1.0

View File

@@ -1,7 +1,7 @@
apiVersion: argoproj.io/v1alpha1 apiVersion: argoproj.io/v1alpha1
kind: Application kind: Application
metadata: metadata:
name: {{ .Values.argocd.prefix }}odoo-chart name: odoo-chart
namespace: {{ .Values.argocd.namespace }} namespace: {{ .Values.argocd.namespace }}
annotations: annotations:
argocd.argoproj.io/sync-wave: "0" argocd.argoproj.io/sync-wave: "0"
@@ -13,9 +13,8 @@ spec:
chart: odoo chart: odoo
targetRevision: 28.x targetRevision: 28.x
helm: helm:
releaseName: {{ .Values.argocd.prefix }}odoo releaseName: odoo
valuesObject: valuesObject:
image.debug: {{ .Values.odoo.image.debug }}
odooEmail: {{ .Values.odoo.odooEmail }} odooEmail: {{ .Values.odoo.odooEmail }}
replicaCount: {{ .Values.odoo.replicaCount }} replicaCount: {{ .Values.odoo.replicaCount }}
resourcesPreset: {{ .Values.odoo.resourcesPreset }} resourcesPreset: {{ .Values.odoo.resourcesPreset }}
@@ -24,15 +23,13 @@ spec:
postgresql: postgresql:
enabled: false enabled: false
externalDatabase: externalDatabase:
host: {{ .Values.odoo.externalDatabase.host }} host: odoo-db-rw
port: {{ .Values.odoo.externalDatabase.port }} port: 5432
user: {{ .Values.odoo.externalDatabase.user }} user: app
database: {{ .Values.odoo.externalDatabase.database }} database: app
create: {{ .Values.odoo.externalDatabase.create }} create: false
existingSecret: {{ .Values.odoo.externalDatabase.passwordSecret.name }} existingSecret: odoo-db-app
existingSecretPasswordKey: {{ .Values.odoo.externalDatabase.passwordSecret.key }} existingSecretPasswordKey: password
sslmode: require
extraOptions: sslrootcert=/opt/ssl/root.crt sslcert=/opt/ssl/postgresql.crt sslkey=/opt/ssl/postgresql.key
destination: destination:
server: {{ .Values.destination.server }} server: {{ .Values.destination.server }}
namespace: {{ .Values.destination.namespace }} namespace: {{ .Values.destination.namespace }}

View File

@@ -1,7 +1,7 @@
apiVersion: argoproj.io/v1alpha1 apiVersion: argoproj.io/v1alpha1
kind: Application kind: Application
metadata: metadata:
name: {{ .Values.argocd.prefix }}odoo-postinstall name: odoo-postinstall
namespace: {{ .Values.argocd.namespace }} namespace: {{ .Values.argocd.namespace }}
annotations: annotations:
argocd.argoproj.io/sync-wave: "1" argocd.argoproj.io/sync-wave: "1"
@@ -15,7 +15,6 @@ spec:
helm: helm:
releaseName: odoo-postinstall releaseName: odoo-postinstall
valuesObject: valuesObject:
prefix: {{ .Values.argocd.prefix }}
tailscaleIngresses: tailscaleIngresses:
odooHostname: {{ .Values.tailscaleIngresses.odooHostname }} odooHostname: {{ .Values.tailscaleIngresses.odooHostname }}
destination: destination:

View File

@@ -1,7 +1,7 @@
apiVersion: argoproj.io/v1alpha1 apiVersion: argoproj.io/v1alpha1
kind: Application kind: Application
metadata: metadata:
name: {{ .Values.argocd.prefix }}odoo-requirements name: odoo-requirements
namespace: {{ .Values.argocd.namespace }} namespace: {{ .Values.argocd.namespace }}
annotations: annotations:
argocd.argoproj.io/sync-wave: "-1" argocd.argoproj.io/sync-wave: "-1"
@@ -15,10 +15,8 @@ spec:
helm: helm:
releaseName: odoo-requirements releaseName: odoo-requirements
valuesObject: valuesObject:
prefix: {{ .Values.argocd.prefix }}
odoo: odoo:
dbCluster: dbCluster:
enable: {{ .Values.odoo.dbCluster.enable }}
numInstances: {{ .Values.odoo.dbCluster.numInstances }} numInstances: {{ .Values.odoo.dbCluster.numInstances }}
size: {{ .Values.odoo.dbCluster.size }} size: {{ .Values.odoo.dbCluster.size }}
dataPvc: dataPvc:

View File

@@ -1,7 +1,6 @@
argocd: argocd:
namespace: argocd namespace: argocd
project: default project: default
prefix: null
requirements: requirements:
repoURL: "https://git.blarre.net/thomas/helm-charts.git" repoURL: "https://git.blarre.net/thomas/helm-charts.git"
targetRevision: HEAD targetRevision: HEAD
@@ -17,7 +16,6 @@ destination:
odoo: odoo:
dbCluster: dbCluster:
enable: true
numInstances: 3 numInstances: 3
size: 10Gi size: 10Gi
dataPvc: dataPvc:
@@ -27,17 +25,6 @@ odoo:
odooEmail: "admin@domain.net" odooEmail: "admin@domain.net"
resourcesPreset: "large" resourcesPreset: "large"
replicaCount: 1 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: tailscaleIngresses:
odooHostname: odoo odooHostname: odoo

View File

@@ -2,4 +2,4 @@ apiVersion: v2
name: odoo-postinstall name: odoo-postinstall
description: A Helm chart for deploying the postinall stuff for odoo, mainly the ingress description: A Helm chart for deploying the postinall stuff for odoo, mainly the ingress
type: application type: application
version: 0.1.1 version: 0.1.0

View File

@@ -1,13 +1,13 @@
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
kind: Ingress kind: Ingress
metadata: metadata:
name: {{ .Values.prefix}}ts-odoo name: ts-odoo
annotations: annotations:
tailscale.com/funnel: "true" tailscale.com/funnel: "true"
spec: spec:
defaultBackend: defaultBackend:
service: service:
name: {{ .Values.prefix }}odoo name: odoo
port: port:
name: http name: http
ingressClassName: tailscale ingressClassName: tailscale

View File

@@ -1,3 +1,2 @@
prefix: null
tailcaleIngresses: tailcaleIngresses:
odooHostname: odoo odooHostname: odoo

View File

@@ -2,4 +2,4 @@ apiVersion: v2
name: odoo-requirements name: odoo-requirements
description: A Helm chart for the requirements for Odoo description: A Helm chart for the requirements for Odoo
type: application type: application
version: 0.1.1 version: 0.1.0

View File

@@ -1,10 +1,8 @@
{{- if .Values.odoo.dbCluster.enabled -}} apiVersion: postgresql.cnpg.io/v1
: postgresql.cnpg.io/v1
kind: Cluster kind: Cluster
metadata: metadata:
name: {{ .Values.prefix }}odoo-db name: odoo-db
spec: spec:
instances: {{ .Values.odoo.dbCluster.numInstances }} instances: {{ .Values.odoo.dbCluster.numInstances }}
storage: storage:
size: {{ .Values.odoo.dbCluster.size }} size: {{ .Values.odoo.dbCluster.size }}
{{- end }}

View File

@@ -1,7 +1,5 @@
prefix: null
odoo: odoo:
dbCluster: dbCluster:
enable: true
numInstances: 3 numInstances: 3
size: 10Gi size: 10Gi
dataPvc: dataPvc:

View 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 }}

View File

@@ -3,6 +3,7 @@ tailscaleIngresses:
sonarrHostname: thomflix-sonarr sonarrHostname: thomflix-sonarr
radarrHostname: thomflix-radarr radarrHostname: thomflix-radarr
filebrowserHostname: thomflix-files filebrowserHostname: thomflix-files
transmissionHostname: thomflix-transmission
mainNamespace: thomflix mainNamespace: thomflix
jellyfinURL: "jellyfin.domain.net" jellyfinURL: "jellyfin.domain.net"
jellyseerrURL: "jellyserr.domain.net" jellyseerrURL: "jellyserr.domain.net"