22 lines
		
	
	
	
		
			562 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			562 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: argoproj.io/v1alpha1
 | 
						|
kind: Application
 | 
						|
metadata:
 | 
						|
  name: uptime-kuma
 | 
						|
  namespace: argocd
 | 
						|
spec:
 | 
						|
  destination:
 | 
						|
    namespace: uptime
 | 
						|
    server: https://kubernetes.default.svc
 | 
						|
  project: apps
 | 
						|
  source:
 | 
						|
    helm:
 | 
						|
      parameters:
 | 
						|
        - name: service.type
 | 
						|
          value: LoadBalancer
 | 
						|
        - name: persistence.enabled
 | 
						|
          value: 'true'
 | 
						|
        - name: persistence.storageClass
 | 
						|
          value: longhorn-fast
 | 
						|
    path: apps-helm/uptime-kuma
 | 
						|
    repoURL: http://forgejo.git.svc.cluster.local/martyn/infra4talos.git
 | 
						|
    targetRevision: HEAD
 |