Skip to content

Commit 7e49768

Browse files
authored
fixed incorrect tetheredNamespace reference (#358)
Signed-off-by: Henry Li <[email protected]>
1 parent 2bf6558 commit 7e49768

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

helm/templates/01-operator-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
]
5151
capabilities: Seamless Upgrades
5252
productName: IBM Cloud Platform Common Services
53-
containerImage: '{{ .Values.global.imagePullPrefix }}/{{ .Values.imageRegistryNamespaceOperator }}/ibm-namespace-scope-operator:4.2.12'
53+
containerImage: {{ .Values.global.imagePullPrefix }}/{{ .Values.imageRegistryNamespaceOperator }}/ibm-namespace-scope-operator:4.2.12
5454
productMetric: FREE
5555
spec:
5656
restartPolicy: Always
@@ -104,7 +104,7 @@ spec:
104104
type: RuntimeDefault
105105
imagePullPolicy: IfNotPresent
106106
terminationMessagePolicy: File
107-
image: '{{ .Values.global.imagePullPrefix }}/{{ .Values.imageRegistryNamespaceOperator }}/ibm-namespace-scope-operator:4.2.12'
107+
image: {{ .Values.global.imagePullPrefix }}/{{ .Values.imageRegistryNamespaceOperator }}/ibm-namespace-scope-operator:4.2.12
108108
serviceAccount: ibm-namespace-scope-operator
109109
dnsPolicy: ClusterFirst
110110
strategy:

helm/templates/02-nss-cr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
namespaceMembers:
1414
- {{ .Values.global.operatorNamespace }}
1515
- {{ .Values.global.instanceNamespace }}
16-
{{- range $i, $v := $.Values.tenantNamespaces }}
16+
{{- range $i, $v := $.Values.tetheredNamespace }}
1717
- {{ $v }}
1818
{{- end }}
1919
restartLabels:

0 commit comments

Comments
 (0)