34 lines
		
	
	
		
			853 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			853 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: kustomize.config.k8s.io/v1beta1
 | |
| kind: Kustomization
 | |
| 
 | |
| namespace: monitoring
 | |
| 
 | |
| resources: 
 | |
|   - namespace.yaml
 | |
|   # prometheus-operator crds
 | |
|   - https://github.com/prometheus-operator/prometheus-operator?ref=v0.85.0
 | |
|   # single prometheus instance with a thanos sidecar
 | |
|   - prometheus.yaml
 | |
|   - thanos-store.statefulset.yaml
 | |
|   - thanos-query.deployment.yaml
 | |
|   - thanos-objstore-config.sealedsecret.yaml
 | |
| 
 | |
| 
 | |
| images:
 | |
|   - name: thanos
 | |
|     newName: quay.io/thanos/thanos
 | |
|     newTag: v0.39.2
 | |
| 
 | |
| 
 | |
| helmCharts:
 | |
|   - name: loki
 | |
|     releaseName: loki
 | |
|     repo: https://grafana.github.io/helm-charts
 | |
|     version: 6.43.0
 | |
|     valuesFile: loki.values.yaml
 | |
|   - name: prometheus-node-exporter
 | |
|     releaseName: prometheus-node-exporter
 | |
|     repo: https://prometheus-community.github.io/helm-charts
 | |
|     version: 4.48.0
 | |
|     valuesFile: prometheus-node-exporter.values.yaml
 |