forked from ab/homelab
26 lines
573 B
YAML
26 lines
573 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- app.yaml
|
|
- persistentVolume.yaml
|
|
- external-secrets.yaml
|
|
|
|
helmCharts:
|
|
- name: kube-prometheus-stack
|
|
repo: https://prometheus-community.github.io/helm-charts
|
|
version: 70.4.2
|
|
releaseName: prometheus
|
|
namespace: prometheus
|
|
valuesFile: prom-values.yaml
|
|
includeCRDs: true
|
|
|
|
- name: grafana
|
|
repo: https://grafana.github.io/helm-charts
|
|
version: 8.11.4
|
|
releaseName: grafana
|
|
namespace: prometheus
|
|
valuesFile: grafana-values.yaml
|
|
includeCRDs: true
|
|
|