Skip to content

Commit 266d0f9

Browse files
committed
fix: property set as int instead of string
1 parent 03af805 commit 266d0f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/aws-efs-csi-driver/templates/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
value: "true"
9595
{{- end }}
9696
- name: PORT_RANGE_UPPER_BOUND
97-
value: {{ .Values.portRangeUpperBound }}
97+
value: "{{ .Values.portRangeUpperBound }}"
9898
{{- with .Values.controller.env }}
9999
{{- toYaml . | nindent 12 }}
100100
{{- end }}

charts/aws-efs-csi-driver/templates/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ spec:
9292
value: "true"
9393
{{- end }}
9494
- name: PORT_RANGE_UPPER_BOUND
95-
value: {{ .Values.portRangeUpperBound }}
95+
value: "{{ .Values.portRangeUpperBound }}"
9696
{{- with .Values.node.env }}
9797
{{- toYaml . | nindent 12 }}
9898
{{- end }}

0 commit comments

Comments
 (0)