Add monitoring stack

This commit is contained in:
2026-06-12 18:03:34 +00:00
parent f2fb5e976e
commit 594180e4ac
2 changed files with 60 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: monitoring
namespace: argocd
spec:
project: default
source:
repoURL: https://prometheus-community.github.io/helm-charts
chart: kube-prometheus-stack
targetRevision: 77.*
helm:
values: |
grafana:
ingress:
enabled: true
ingressClassName: nginx
hosts:
- grafana.home.lan
prometheus:
ingress:
enabled: true
ingressClassName: nginx
hosts:
- prometheus.home.lan
destination:
server: https://kubernetes.default.svc
namespace: monitoring
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
+20
View File
@@ -0,0 +1,20 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: uptime-kuma
namespace: argocd
spec:
project: default
source:
repoURL: http://git.home.lan/jay/k8s-gitops.git
targetRevision: main
path: apps/uptime-kuma
destination:
server: https://kubernetes.default.svc
namespace: uptime-kuma
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true