File tree Expand file tree Collapse file tree 6 files changed +1
-106
lines changed Expand file tree Collapse file tree 6 files changed +1
-106
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,9 @@ apiVersion: v1
2
2
kind : Namespace
3
3
metadata :
4
4
name : {{ .Values.namespace }}
5
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
6
- annotations :
7
- openshift.io/node-selector : " "
8
- labels :
9
- openshift.io/scc : " anyuid"
10
- openshift.io/cluster-monitoring : " true"
11
- {{ end }}
5
+
12
6
---
13
7
apiVersion : v1
14
8
kind : Namespace
15
9
metadata :
16
10
name : {{ .Values.operator_namespace }}
17
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
18
- annotations :
19
- openshift.io/node-selector : " "
20
- labels :
21
- openshift.io/scc : " anyuid"
22
- {{ end }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 18
18
app : olm-operator
19
19
spec :
20
20
serviceAccountName : olm-operator-serviceaccount
21
- {{- if and .Values.installType (eq .Values.installType "ocp") }}
22
- priorityClassName : " system-cluster-critical"
23
- {{- end }}
24
21
containers :
25
22
- name : olm-operator
26
23
command :
71
68
port : {{ .Values.olm.service.internalPort }}
72
69
terminationMessagePolicy : FallbackToLogsOnError
73
70
env :
74
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
75
- - name : RELEASE_VERSION
76
- value : " 0.0.1-snapshot"
77
- {{ end }}
78
71
- name : OPERATOR_NAMESPACE
79
72
valueFrom :
80
73
fieldRef :
85
78
resources :
86
79
{{ toYaml .Values.olm.resources | indent 12 }}
87
80
{{- end}}
88
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
89
- volumeMounts :
90
- - mountPath : /var/run/secrets/serving-cert
91
- name : serving-cert
92
- {{ end }}
93
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
94
- volumes :
95
- - name : serving-cert
96
- secret :
97
- secretName : olm-operator-serving-cert
98
- {{ end }}
99
81
{{- if .Values.olm.nodeSelector }}
100
82
nodeSelector :
101
83
{{ toYaml .Values.olm.nodeSelector | indent 8 }}
Original file line number Diff line number Diff line change 18
18
app : catalog-operator
19
19
spec :
20
20
serviceAccountName : olm-operator-serviceaccount
21
- {{- if and .Values.installType (eq .Values.installType "ocp") }}
22
- priorityClassName : " system-cluster-critical"
23
- {{- end }}
24
21
containers :
25
22
- name : catalog-operator
26
23
command :
@@ -64,26 +61,10 @@ spec:
64
61
path : /healthz
65
62
port : {{ .Values.catalog.service.internalPort }}
66
63
terminationMessagePolicy : FallbackToLogsOnError
67
- env :
68
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
69
- - name : RELEASE_VERSION
70
- value : " 0.0.1-snapshot"
71
- {{ end }}
72
64
{{- if .Values.catalog.resources }}
73
65
resources :
74
66
{{ toYaml .Values.catalog.resources | indent 12 }}
75
67
{{- end}}
76
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
77
- volumeMounts :
78
- - mountPath : /var/run/secrets/serving-cert
79
- name : serving-cert
80
- {{ end }}
81
- {{ if and .Values.installType (eq .Values.installType "ocp") }}
82
- volumes :
83
- - name : serving-cert
84
- secret :
85
- secretName : catalog-operator-serving-cert
86
- {{ end }}
87
68
{{- if .Values.catalog.nodeSelector }}
88
69
nodeSelector :
89
70
{{ toYaml .Values.catalog.nodeSelector | indent 8 }}
Original file line number Diff line number Diff line change 15
15
app : packageserver
16
16
spec :
17
17
serviceAccountName : olm-operator-serviceaccount
18
- {{- if and .Values.installType (eq .Values.installType "ocp") }}
19
- priorityClassName : " system-cluster-critical"
20
- {{- end }}
21
18
{{- if .Values.package.nodeSelector }}
22
19
nodeSelector :
23
20
{{- toYaml .Values.package.nodeSelector | nindent 8 }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments