Skip to content

Commit

Permalink
Quotes for env check (#804)
Browse files Browse the repository at this point in the history
* Quotes for env check

* updated chart.yaml
  • Loading branch information
dunefro authored Nov 19, 2024
1 parent 0c06491 commit 34141e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/tfy-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.38
version: 0.2.39

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/tfy-agent/templates/tfy-agent-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ spec:
{{- end }}
{{- range $val := .Values.tfyAgent.extraEnvVars }}
- name: {{ $val.name }}
value: {{ $val.value }}
value: {{ $val.value | quote }}
{{- end }}
image: "{{ .Values.tfyAgent.image.repository }}:{{ .Values.tfyAgent.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.tfyAgent.image.pullPolicy }}
Expand Down
2 changes: 1 addition & 1 deletion charts/tfy-agent/templates/tfy-agent-proxy-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
name: {{ include "tfy-agent.secretName" .}}
{{- range $val := .Values.tfyAgentProxy.extraEnvVars }}
- name: {{ $val.name }}
value: {{ $val.value }}
value: {{ $val.value | quote }}
{{- end }}
image: "{{ .Values.tfyAgentProxy.image.repository }}:{{ .Values.tfyAgentProxy.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.tfyAgentProxy.image.pullPolicy }}
Expand Down

0 comments on commit 34141e9

Please sign in to comment.