24 lines
		
	
	
	
		
			612 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			612 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: argoproj.io/v1alpha1
 | 
						|
kind: Application
 | 
						|
metadata:
 | 
						|
  name: code-server
 | 
						|
  namespace: argocd
 | 
						|
spec:
 | 
						|
  destination:
 | 
						|
    namespace: code-server
 | 
						|
    server: https://kubernetes.default.svc
 | 
						|
  project: infra
 | 
						|
  source:
 | 
						|
    helm:
 | 
						|
      parameters:
 | 
						|
        - name: persistence.storageClass
 | 
						|
          value: longhorn-fast
 | 
						|
        - name: image.pullPolicy
 | 
						|
          value: Always
 | 
						|
        - name: service.type
 | 
						|
          value: LoadBalancer
 | 
						|
        - name: service.port
 | 
						|
          value: '80'
 | 
						|
    path: apps-helm/code-server
 | 
						|
    repoURL: http://forgejo.git.svc.cluster.local/martyn/infra4talos
 | 
						|
    targetRevision: HEAD
 |