File tree Expand file tree Collapse file tree 6 files changed +45
-15
lines changed
source/templates/appofapps Expand file tree Collapse file tree 6 files changed +45
-15
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,15 @@ environments:
53
53
hugi :
54
54
addons :
55
55
cluster-policies :
56
- enabled : false
57
- properties : {}
56
+ enabled : true
57
+ properties :
58
+ enableNetworkPolicies : true
59
+ disco-operator :
60
+ enabled : true
61
+ properties :
62
+ isSuperCool : false
63
+ requiredDefaultNotSet : null
64
+ second : Hello World
58
65
kyverno :
59
66
enabled : true
60
67
properties : {}
Original file line number Diff line number Diff line change 1
1
---
2
2
appSuffix : " hugi-dev"
3
- appSourceBasePath : overlays/dev/dev/hugi/cluster-config
3
+ appSourceBasePath : overlays/dev/dev/hugi/cluster-configs
4
4
5
5
default :
6
6
app :
@@ -14,8 +14,8 @@ default:
14
14
namespace : openshift-gitops
15
15
server : https://kubernetes.default.svc
16
16
source :
17
- repoURL : https://git.external.url/repo/name .git
18
- targetRevision : develop
17
+ repoURL : https://github.com/leonsteinhaeuser/openshift-gitops-cli .git
18
+ targetRevision : <no value>
19
19
20
20
projects :
21
21
hub :
@@ -24,7 +24,7 @@ projects:
24
24
description : Project for cluster hub
25
25
namespace : openshift-gitops
26
26
sourceRepos :
27
- - https://git.external.url/repo/name .git
27
+ - https://github.com/leonsteinhaeuser/openshift-gitops-cli .git
28
28
destinations : |
29
29
- namespace: '*'
30
30
server: https://kubernetes.default.svc
@@ -34,24 +34,34 @@ projects:
34
34
kind: '*'
35
35
36
36
applications :
37
- kyverno :
37
+ cluster-policies :
38
+ enabled : true
38
39
annotations :
39
- {}
40
+ argocd.argoproj.io/sync-wave : " 0 "
40
41
source :
41
- path : kyverno
42
+ path : cluster-policies
42
43
labels :
43
44
app.kubernetes.io/managed-by : argocd
44
- monitoring :
45
+ disco-operator :
46
+ enabled : true
45
47
annotations :
46
- {}
48
+ argocd.argoproj.io/sync-wave : " 0 "
47
49
source :
48
- path : monitoring
50
+ path : disco-operator
51
+ labels :
52
+ app.kubernetes.io/managed-by : argocd
53
+ kyverno :
54
+ enabled : true
55
+ annotations :
56
+ argocd.argoproj.io/sync-wave : " 0"
57
+ source :
58
+ path : kyverno
49
59
labels :
50
60
app.kubernetes.io/managed-by : argocd
51
- -by : argocd
52
61
monitoring :
62
+ enabled : true
53
63
annotations :
54
- {}
64
+ argocd.argoproj.io/sync-wave : " 0 "
55
65
source :
56
66
path : monitoring
57
67
labels :
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ apiVersion: kustomize.config.k8s.io/v1beta1
3
3
kind : Kustomization
4
4
resources :
5
5
- config/abc.yaml
6
+ - " ../../../../../../base/base-config/cluster-policies/"
Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : kustomize.config.k8s.io/v1beta1
3
+ kind : Kustomization
4
+ resources :
5
+ - " ../../../../../../base/disco-operator/"
6
+ patches :
7
+ - name : Hello World
8
+ file : patch.yaml
Original file line number Diff line number Diff line change
1
+ ---
2
+ some : yaml
3
+ key : false
Original file line number Diff line number Diff line change 1
1
---
2
2
appSuffix : " {{ .ClusterName }}-{{ .Stage }}"
3
- appSourceBasePath : overlays/{{ .Environment }}/{{ .Stage }}/{{ .ClusterName }}/cluster-config
3
+ appSourceBasePath : overlays/{{ .Environment }}/{{ .Stage }}/{{ .ClusterName }}/cluster-configs
4
4
5
5
default :
6
6
app :
@@ -36,6 +36,7 @@ projects:
36
36
applications :
37
37
{{- range $key, $value := .Addons }}
38
38
{{ $key }}:
39
+ enabled : {{ $value.Enabled }}
39
40
annotations :
40
41
{{- $value.Annotations | toYaml | nindent 6 }}
41
42
source :
You can’t perform that action at this time.
0 commit comments