mirror of
https://github.com/gwg313/homelab-gitops.git
synced 2026-06-21 01:00:41 +00:00
add kube-prometheus-stack
Signed-off-by: gwg313 <gwg313@pm.me> remove vals Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
parent
231e6b3319
commit
bfce08329d
10 changed files with 101 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ resources:
|
|||
- tetragon-policies.yaml
|
||||
- sealed-secrets.yaml
|
||||
- cert-manager.yaml
|
||||
- monitoring.yaml
|
||||
- nfs-subdir.yaml
|
||||
- forgejo.yaml
|
||||
- navidrome.yaml
|
||||
|
|
|
|||
|
|
@ -21,3 +21,4 @@ spec:
|
|||
syncOptions:
|
||||
- CreateNamespace=false
|
||||
- ServerSideApply=true
|
||||
- Replace=true # <-- Policies have immutable fields so this helps deal with updates
|
||||
|
|
|
|||
23
management/platform-apps/monitoring.yaml
Normal file
23
management/platform-apps/monitoring.yaml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: monitoring
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argoproj.io/sync-wave: "-5"
|
||||
spec:
|
||||
project: default
|
||||
source:
|
||||
repoURL: https://github.com/gwg313/homelab-gitops.git
|
||||
targetRevision: main
|
||||
path: platform/monitoring
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: monitoring
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
- ServerSideApply=true
|
||||
Loading…
Add table
Add a link
Reference in a new issue