forked from Nordic-MVP-GitOps-Repos/liberty-sampleapp-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkustomization.yaml
36 lines (31 loc) · 841 Bytes
/
kustomization.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
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- argo-role.yaml
- argo-rolebinding.yaml
- common.yaml
- operators
- operands
patches:
- target:
group: argoproj.io
kind: ApplicationSet
labelSelector: group=applications
patch: |-
- op: add
path: /spec/template/spec/source/repoURL
value: https://github.com/s-silvius/liberty-sampleapp-gitops.git
- op: add
path: /spec/template/spec/source/targetRevision
value: HEAD
- target:
group: argoproj.io
kind: Application
labelSelector: group=applications
patch: |-
- op: add
path: /spec/source/repoURL
value: https://github.com/s-silvius/liberty-sampleapp-gitops.git
- op: add
path: /spec/source/targetRevision
value: HEAD