Skip to content

Commit 1c90cbb

Browse files
Merge pull request openshift#1171 from petr-muller/ocpbugs-30090-fixup-template-manifests
NO-JIRA: manifests: make template manifests valid YAML
2 parents ee8b5ef + 6a11333 commit 1c90cbb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

install/0000_00_cluster-version-operator_03_deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
automountServiceAccountToken: false
2626
containers:
2727
- name: cluster-version-operator
28-
image: {{.ReleaseImage}}
28+
image: '{{.ReleaseImage}}'
2929
imagePullPolicy: IfNotPresent
3030
args:
3131
- "start"
@@ -70,7 +70,7 @@ spec:
7070
fieldRef:
7171
fieldPath: spec.nodeName
7272
- name: CLUSTER_PROFILE
73-
value: {{ .ClusterProfile }}
73+
value: '{{ .ClusterProfile }}'
7474
# this pod is hostNetwork and uses the internal LB DNS name when possible, which the kubelet also uses.
7575
# this dnsPolicy allows us to use the same dnsConfig as the kubelet, without access to read it ourselves.
7676
dnsPolicy: Default

pkg/payload/testdata/TestRenderManifest_expected_cvo_deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
automountServiceAccountToken: false
2626
containers:
2727
- name: cluster-version-operator
28-
image: quay.io/cvo/release:latest
28+
image: 'quay.io/cvo/release:latest'
2929
imagePullPolicy: IfNotPresent
3030
args:
3131
- "start"
@@ -70,7 +70,7 @@ spec:
7070
fieldRef:
7171
fieldPath: spec.nodeName
7272
- name: CLUSTER_PROFILE
73-
value: some-profile
73+
value: 'some-profile'
7474
# this pod is hostNetwork and uses the internal LB DNS name when possible, which the kubelet also uses.
7575
# this dnsPolicy allows us to use the same dnsConfig as the kubelet, without access to read it ourselves.
7676
dnsPolicy: Default

0 commit comments

Comments
 (0)