Skip to content

Commit

Permalink
Use quote function for readability
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Aurelio Caldas Miranda <17923899+macmiranda@users.noreply.github.com>
  • Loading branch information
macmiranda authored and julianwiedmann committed Sep 13, 2023
1 parent aff16b2 commit fdeb6f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install/kubernetes/cilium/templates/cilium-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ data:
routing-mode: "tunnel"
tunnel-protocol: "vxlan"
{{- else if .Values.routingMode }}
routing-mode: "{{ .Values.routingMode }}"
routing-mode: {{ .Values.routingMode | quote }}
{{- else }}
{{- if eq .Values.tunnel "disabled" }}
routing-mode: "native"
Expand All @@ -462,15 +462,15 @@ data:
{{- end }}

{{- if .Values.tunnelProtocol }}
tunnel-protocol: "{{ .Values.tunnelProtocol }}"
tunnel-protocol: {{ .Values.tunnelProtocol | quote }}
{{- end }}

{{- if .Values.tunnelPort }}
tunnel-port: "{{ .Values.tunnelPort }}"
tunnel-port: {{ .Values.tunnelPort | quote }}
{{- end }}

{{- if .Values.MTU }}
mtu: "{{ .Values.MTU }}"
mtu: {{ .Values.MTU | quote }}
{{- end }}

{{- if .Values.eni.enabled }}
Expand Down

0 comments on commit fdeb6f3

Please sign in to comment.