-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
applications.yaml
41 lines (41 loc) · 1.4 KB
/
applications.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: yorkie-cluster
namespace: {{ .Values.argocd.namespace }}
spec:
project: {{ .Values.argocd.project }}
sources:
- repoURL: {{ .Values.argocd.source.helmChartRepoURL }}
chart: yorkie-cluster
targetRevision: {{ .Values.argocd.source.helmChartTargetRevision }}
helm:
valueFiles:
- $gitops/{{ .Values.argocd.source.clusterValuesPath }}
- repoURL: {{ .Values.argocd.source.gitOpsRepoURL }}
targetRevision: {{ .Values.argocd.source.gitOpsRepoTargetRevision }}
ref: gitops
destination:
server: {{ .Values.argocd.destination.server }}
namespace: {{ .Values.argocd.destination.yorkieNamespace }}
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: yorkie-monitoring
namespace: {{ .Values.argocd.namespace }}
spec:
project: {{ .Values.argocd.project }}
sources:
- repoURL: {{ .Values.argocd.source.helmChartRepoURL }}
chart: yorkie-monitoring
targetRevision: {{ .Values.argocd.source.helmChartTargetRevision }}
helm:
valueFiles:
- $gitops/{{ .Values.argocd.source.monitoringValuesPath }}
- repoURL: {{ .Values.argocd.source.gitOpsRepoURL }}
targetRevision: {{ .Values.argocd.source.gitOpsRepoTargetRevision }}
ref: gitops
destination:
server: {{ .Values.argocd.destination.server }}
namespace: {{ .Values.argocd.destination.monitoringNamespace }}