Skip to content

Commit 7918adf

Browse files
committed
OCPBUGS-30090: manifests: make template manifests valid YAML
CVO manifests are applied by CVO itself, which processes them through the templating engine, which makes them valid YAML. In an attempt to address OCPBUGS-30090, I want to process the CVO manifests through `oc adm release new` machinery, which requires them to be valid YAML.
1 parent ddb11b3 commit 7918adf

3 files changed

+5
-5
lines changed

install/0000_00_cluster-version-operator_03_deployment.yaml

+2-2
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

install/0000_00_update-status-controller_03_deployment-DevPreviewNoUpgrade.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
runAsNonRoot: true
2727
containers:
2828
- name: update-status-controller
29-
image: {{.ReleaseImage}}
29+
image: "{{.ReleaseImage}}"
3030
imagePullPolicy: IfNotPresent
3131
args:
3232
- "update-status-controller"

pkg/payload/testdata/TestRenderManifest_expected_cvo_deployment.yaml

+2-2
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)