22 lines
		
	
	
		
			629 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			629 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: kustomize.config.k8s.io/v1beta1
 | |
| kind: Kustomization
 | |
| 
 | |
| namespace: grafana
 | |
| 
 | |
| resources: 
 | |
|   - namespace.yaml
 | |
|   - grafana.ingress.yaml
 | |
|   - grafana-admin.sealedsecret.yaml
 | |
|   - grafana-auth.sealedsecret.yaml
 | |
|   # grafana dashboards are provisioned from a git repository
 | |
|   # in the initial bootstrap of the app of apps, the git repo won't be available, so this sync will initially fail
 | |
|   - https://git.kluster.moll.re/remoll/grafana-dashboards//?timeout=10&ref=main
 | |
| 
 | |
| 
 | |
| helmCharts:
 | |
|   - releaseName: grafana
 | |
|     name: grafana
 | |
|     repo: https://grafana.github.io/helm-charts
 | |
|     version: 9.2.10
 | |
|     valuesFile: grafana.values.yaml
 |