mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
Decommission kube-prometheus-stack installed Grafana and use grafana-operator instead. Signed-off-by: Vegard Hagen <[email protected]>
27 lines
806 B
YAML
27 lines
806 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
# Manually render ServiceMonitors since Argo CD chart checks if they exist
|
|
# Argo CD thinks the cluster doesn't have this capability
|
|
# Could possibly alter the plugin
|
|
# > helm template argo/argo-cd --api-versions monitoring.coreos.com/v1 -f values.yaml
|
|
|
|
resources:
|
|
- ns.yaml
|
|
- tls-route.yaml
|
|
- oidc.yaml
|
|
- service-monitors/argocd-application-controller.yaml
|
|
- service-monitors/argocd-applicationset-controller.yaml
|
|
- service-monitors/argocd-redis.yaml
|
|
- service-monitors/argocd-repo-server.yaml
|
|
- service-monitors/argocd-server.yaml
|
|
- dashboard.yaml
|
|
|
|
helmCharts:
|
|
- name: argo-cd
|
|
repo: https://argoproj.github.io/argo-helm
|
|
version: 8.1.3
|
|
releaseName: "argocd"
|
|
namespace: argocd
|
|
valuesFile: values.yaml
|