Comment prom and grafana appset
This commit is contained in:
parent
f33c9895db
commit
94131bd252
@ -1,36 +1,36 @@
|
|||||||
apiVersion: argoproj.io/v1alpha1
|
# apiVersion: argoproj.io/v1alpha1
|
||||||
kind: ApplicationSet
|
# kind: ApplicationSet
|
||||||
metadata:
|
# metadata:
|
||||||
name: grafana-appset
|
# name: grafana-appset
|
||||||
namespace: argocd
|
# namespace: argocd
|
||||||
spec:
|
# spec:
|
||||||
generators:
|
# generators:
|
||||||
- list:
|
# - list:
|
||||||
elements:
|
# elements:
|
||||||
- env: prod
|
# - env: prod
|
||||||
valuesFile: values-prod.yaml
|
# valuesFile: values-prod.yaml
|
||||||
nameSuffix: grafana-prod
|
# nameSuffix: grafana-prod
|
||||||
host: grafana.dvirlabs.com
|
# host: grafana.dvirlabs.com
|
||||||
- env: int
|
# - env: int
|
||||||
valuesFile: values-int.yaml
|
# valuesFile: values-int.yaml
|
||||||
nameSuffix: grafana-int
|
# nameSuffix: grafana-int
|
||||||
host: grafana-int.dvirlabs.com
|
# host: grafana-int.dvirlabs.com
|
||||||
template:
|
# template:
|
||||||
metadata:
|
# metadata:
|
||||||
name: '{{nameSuffix}}'
|
# name: '{{nameSuffix}}'
|
||||||
spec:
|
# spec:
|
||||||
project: observability
|
# project: observability
|
||||||
source:
|
# source:
|
||||||
repoURL: https://git.dvirlabs.com/dvirlabs/observability-stack.git
|
# repoURL: https://git.dvirlabs.com/dvirlabs/observability-stack.git
|
||||||
targetRevision: master
|
# targetRevision: master
|
||||||
path: charts/grafana
|
# path: charts/grafana
|
||||||
helm:
|
# helm:
|
||||||
valueFiles:
|
# valueFiles:
|
||||||
- my-values/{{valuesFile}}
|
# - my-values/{{valuesFile}}
|
||||||
destination:
|
# destination:
|
||||||
server: https://kubernetes.default.svc
|
# server: https://kubernetes.default.svc
|
||||||
namespace: monitoring
|
# namespace: monitoring
|
||||||
syncPolicy: {}
|
# syncPolicy: {}
|
||||||
# automated:
|
# automated:
|
||||||
# prune: true
|
# prune: true
|
||||||
# selfHeal: true
|
# selfHeal: true
|
||||||
|
|||||||
@ -1,38 +1,38 @@
|
|||||||
apiVersion: argoproj.io/v1alpha1
|
# apiVersion: argoproj.io/v1alpha1
|
||||||
kind: ApplicationSet
|
# kind: ApplicationSet
|
||||||
metadata:
|
# metadata:
|
||||||
name: prometheus-appset
|
# name: prometheus-appset
|
||||||
namespace: argocd
|
# namespace: argocd
|
||||||
spec:
|
# spec:
|
||||||
generators:
|
# generators:
|
||||||
- list:
|
# - list:
|
||||||
elements:
|
# elements:
|
||||||
- env: prod
|
# - env: prod
|
||||||
valuesFile: values-prod.yaml
|
# valuesFile: values-prod.yaml
|
||||||
nameSuffix: prometheus-prod
|
# nameSuffix: prometheus-prod
|
||||||
host: prometheus.dvirlabs.com
|
# host: prometheus.dvirlabs.com
|
||||||
- env: int
|
# - env: int
|
||||||
valuesFile: values-int.yaml
|
# valuesFile: values-int.yaml
|
||||||
nameSuffix: prometheus-int
|
# nameSuffix: prometheus-int
|
||||||
host: prometheus-int.dvirlabs.com
|
# host: prometheus-int.dvirlabs.com
|
||||||
template:
|
# template:
|
||||||
metadata:
|
# metadata:
|
||||||
name: '{{nameSuffix}}'
|
# name: '{{nameSuffix}}'
|
||||||
spec:
|
# spec:
|
||||||
project: observability
|
# project: observability
|
||||||
source:
|
# source:
|
||||||
repoURL: https://git.dvirlabs.com/dvirlabs/observability-stack.git
|
# repoURL: https://git.dvirlabs.com/dvirlabs/observability-stack.git
|
||||||
targetRevision: master
|
# targetRevision: master
|
||||||
path: charts/prometheus
|
# path: charts/prometheus
|
||||||
helm:
|
# helm:
|
||||||
valueFiles:
|
# valueFiles:
|
||||||
- my-values/values-{{env}}.yaml
|
# - my-values/values-{{env}}.yaml
|
||||||
destination:
|
# destination:
|
||||||
server: https://kubernetes.default.svc
|
# server: https://kubernetes.default.svc
|
||||||
namespace: monitoring
|
# namespace: monitoring
|
||||||
syncPolicy:
|
# syncPolicy:
|
||||||
automated: {}
|
# automated: {}
|
||||||
# prune: true
|
# # prune: true
|
||||||
# selfHeal: true
|
# # selfHeal: true
|
||||||
# syncOptions:
|
# # syncOptions:
|
||||||
# - CreateNamespace=true
|
# # - CreateNamespace=true
|
||||||
|
|||||||
@ -1,27 +1,27 @@
|
|||||||
apiVersion: argoproj.io/v1alpha1
|
# apiVersion: argoproj.io/v1alpha1
|
||||||
kind: ApplicationSet
|
# kind: ApplicationSet
|
||||||
metadata:
|
# metadata:
|
||||||
name: prometheus-scrape-config
|
# name: prometheus-scrape-config
|
||||||
namespace: argocd
|
# namespace: argocd
|
||||||
spec:
|
# spec:
|
||||||
generators:
|
# generators:
|
||||||
- list:
|
# - list:
|
||||||
elements:
|
# elements:
|
||||||
- name: prometheus-scrape
|
# - name: prometheus-scrape
|
||||||
path: manifests/prometheus
|
# path: manifests/prometheus
|
||||||
template:
|
# template:
|
||||||
metadata:
|
# metadata:
|
||||||
name: '{{name}}'
|
# name: '{{name}}'
|
||||||
spec:
|
# spec:
|
||||||
project: observability
|
# project: observability
|
||||||
source:
|
# source:
|
||||||
repoURL: https://git.dvirlabs.com/dvirlabs/observability-stack.git
|
# repoURL: https://git.dvirlabs.com/dvirlabs/observability-stack.git
|
||||||
targetRevision: master
|
# targetRevision: master
|
||||||
path: '{{path}}'
|
# path: '{{path}}'
|
||||||
destination:
|
# destination:
|
||||||
server: https://kubernetes.default.svc
|
# server: https://kubernetes.default.svc
|
||||||
namespace: monitoring
|
# namespace: monitoring
|
||||||
syncPolicy: {}
|
# syncPolicy: {}
|
||||||
# automated:
|
# automated:
|
||||||
# prune: true
|
# prune: true
|
||||||
# selfHeal: true
|
# selfHeal: true
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user