36 lines
		
	
	
	
		
			799 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			799 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: argoproj.io/v1alpha1
 | 
						|
kind: Application
 | 
						|
metadata:
 | 
						|
  name: immich
 | 
						|
  namespace: argocd
 | 
						|
spec:
 | 
						|
  destination:
 | 
						|
    namespace: 'immich'
 | 
						|
    server: 'https://kubernetes.default.svc'
 | 
						|
  sources:
 | 
						|
  - repoURL: ghcr.io/immich-app/immich-charts
 | 
						|
    path: immich
 | 
						|
    targetRevision: 0.9.3
 | 
						|
    chart: immich
 | 
						|
    helm:
 | 
						|
      valuesObject:
 | 
						|
        env:
 | 
						|
          DB_HOSTNAME: "immich-postgres"
 | 
						|
          DB_USERNAME: "immich"
 | 
						|
          DB_DATABASE_NAME: "immich"
 | 
						|
        immich:
 | 
						|
          persistence:
 | 
						|
            library:
 | 
						|
              existingClaim: "immich-photos"
 | 
						|
        redis:
 | 
						|
          enabled: true
 | 
						|
        postgresql:
 | 
						|
          global:
 | 
						|
            postgresql:
 | 
						|
              auth:
 | 
						|
                existingSecret:
 | 
						|
  project: apps
 | 
						|
  syncPolicy:
 | 
						|
    automated:
 | 
						|
      prune: true
 | 
						|
      selfHeal: true
 |