Skip to content

Commit 9c31ddb

Browse files
authored
Quote string values (#16)
1 parent 259deae commit 9c31ddb

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

translate-engagement-data/files/ocp-init/templates/resourceclaim.j2

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ spec:
2020
governor: labs.ocp4.na
2121
vars:
2222
job_vars:
23-
admin_user: {{ .Values.ocp.admin_username }}
24-
admin_password: {{ .Values.ocp.admin_password }}
25-
aws_region: {{ .Values.ocp.cloud_region }}
26-
ocp4_installer_version: {{ .Values.ocp.version }}
27-
ocp_subdomain: {{ .Values.ocp.sub_domain }}
28-
email: {{ .Values.email }}
23+
admin_user: "{{ .Values.ocp.admin_username }}"
24+
admin_password: "{{ .Values.ocp.admin_password }}"
25+
aws_region: "{{ .Values.ocp.cloud_region }}"
26+
ocp4_installer_version: "{{ .Values.ocp.version }}"
27+
ocp_subdomain: "{{ .Values.ocp.sub_domain }}"
28+
email: "{{ .Values.email }}"
2929
{{- end }}
3030
{%- endraw %}
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
email: {{ engagement_lead_email }}
1+
email: "{{ engagement_lead_email }}"
22
ocp:
3-
admin_username: {{ ocp_admin_username }}
4-
admin_password: {{ ocp_admin_password }}
5-
cloud_provider: {{ ocp_cloud_provider_name }}
6-
cloud_region: {{ ocp_cloud_provider_region }}
7-
cluster_size: {{ ocp_cluster_size }}
8-
sub_domain: {{ ocp_sub_domain }}
9-
version: {{ ocp_version }}
10-
project_id: {{ project_id }}
3+
admin_username: "{{ ocp_admin_username }}"
4+
admin_password: "{{ ocp_admin_password }}"
5+
cloud_provider: "{{ ocp_cloud_provider_name }}"
6+
cloud_region: "{{ ocp_cloud_provider_region }}"
7+
cluster_size: "{{ ocp_cluster_size }}"
8+
sub_domain: "{{ ocp_sub_domain }}"
9+
version: "{{ ocp_version }}"
10+
project_id: "{{ project_id }}"

0 commit comments

Comments
 (0)