26 lines
		
	
	
	
		
			635 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			635 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: argoproj.io/v1alpha1
 | 
						|
kind: Application
 | 
						|
metadata:
 | 
						|
  name: mysql4blog
 | 
						|
  namespace: argocd
 | 
						|
spec:
 | 
						|
  destination:
 | 
						|
    namespace: blog
 | 
						|
    server: https://kubernetes.default.svc
 | 
						|
  project: apps
 | 
						|
  source:
 | 
						|
    chart: mariadb
 | 
						|
    helm:
 | 
						|
      parameters:
 | 
						|
        - name: auth.database
 | 
						|
          value: writefreely
 | 
						|
        - name: auth.forcePassword
 | 
						|
          value: 'true'
 | 
						|
        - name: auth.username
 | 
						|
          value: writefreely
 | 
						|
        - name: auth.existingSecret
 | 
						|
          value: db-creds
 | 
						|
        - name: primary.service.type
 | 
						|
          value: ClusterIP
 | 
						|
    repoURL: https://charts.bitnami.com/bitnami
 | 
						|
    targetRevision: 14.1.4
 |