Started on immich app of apps

This commit is contained in:
2024-11-03 13:56:52 +00:00
parent ccc94cb7f6
commit 213f8ad117
5 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: immich-requirements
namespace: argocd # Ensure this is the namespace where Argo CD is installed
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: "https://git.blarre.net/thomas/helm-charts.git"
targetRevision: HEAD
path: immich-argocd-requirements
helm:
valuesObject:
mainNamespace: {{ .Values.mainNamespace }}
destination:
server: https://kubernetes.default.svc # Targeting the current Kubernetes cluster
namespace: {{ .Values.mainNamespace }}
syncPolicy:
automated:
prune: true # Automatically remove resources no longer in the repo
selfHeal: true # Automatically self-heal when drift is detected
syncOptions:
- ApplyOutOfSyncOnly=true
- ServerSideApply=true
- CreateNamespace=true