Simon Kaiser 3 роки тому
джерело
коміт
403e949125
1 змінених файлів з 24 додано та 0 видалено
  1. 24
    0
      gitops-kaisers-info/templates/prometheus.yaml

+ 24
- 0
gitops-kaisers-info/templates/prometheus.yaml Переглянути файл

@@ -0,0 +1,24 @@
1
+apiVersion: argoproj.io/v1alpha1
2
+kind: Application
3
+metadata:
4
+  name: prometheus
5
+  namespace: default
6
+  finalizers:
7
+  - resources-finalizer.argocd.argoproj.io
8
+spec:
9
+  destination:
10
+    server: https://kubernetes.default.svc
11
+    namespace: default
12
+  project: default
13
+  source:
14
+    chart: prometheus
15
+    helm:
16
+      values: |
17
+        pushgateway:
18
+          enabled: false
19
+    repoURL: https://prometheus-community.github.io/helm-charts
20
+    targetRevision: 13.0.2
21
+  syncPolicy:
22
+    automated:
23
+      prune: true
24
+      selfHeal: true