Skip to content

Commit

Permalink
Fix empty values in helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
Smirl committed Mar 29, 2022
1 parent a073a46 commit 1d19628
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions deploy/nest-temperature-forwarder/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ spec:
- /opt/code/temperature_forwarder.py
- --health-check-path={{ .Values.healthCheck.path }}
- --delay-seconds={{ .Values.args.delaySeconds }}
- --postal-code={{ .Values.args.postalCode }}
- {{ if .Values.args.verbose }}--verbose{{ end }}
{{- with .Values.args.postalCode }}
- --postal-code={{ . }}
{{- end }}
{{- with .Values.args.verbose }}
- --verbose
{{- end }}
{{- if .Values.healthCheck.enabled }}
livenessProbe:
exec:
Expand Down

0 comments on commit 1d19628

Please sign in to comment.