Skip to content

Commit a81dc5f

Browse files
Merge pull request #957 from ecordell/fix-env
fix(manifest): fix env var projection in command
2 parents 80d425e + 038f48d commit a81dc5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy/chart/templates/0000_50_olm_07-olm-operator.deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
- /bin/olm
2828
args:
2929
- -namespace
30-
- ${OPERATOR_NAMESPACE}
30+
- $(OPERATOR_NAMESPACE)
3131
{{- if .Values.watchedNamespaces }}
3232
- -watchedNamespaces
3333
- {{ .Values.watchedNamespaces }}

manifests/0000_50_olm_07-olm-operator.deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
- /bin/olm
2626
args:
2727
- -namespace
28-
- ${OPERATOR_NAMESPACE}
28+
- $(OPERATOR_NAMESPACE)
2929
- -writeStatusName
3030
- operator-lifecycle-manager
3131
- -writePackageServerStatusName

0 commit comments

Comments
 (0)