Skip to content

Commit

Permalink
fix: correct a typo in the GO template language (#24)
Browse files Browse the repository at this point in the history
Refer to values file map correctly as '.Values' instead of as 'Values', which would be a function.
  • Loading branch information
meadmaker authored Jan 20, 2024
1 parent ee7cb2b commit 261f3f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
value: {{ default "1" .Values.postgres.NODE_TLS_REJECT_UNAUTHORIZED | quote }}
- name: HA_ACTIVE
value: {{ .Values.replicaCount | int | le 2 | quote }}
{{- if Values.env }}
{{- if .Values.env }}
{{- toYaml .Values.env | nindent 12 }}
{{- end }}
{{- with .Values.volumeMounts }}
Expand Down

0 comments on commit 261f3f9

Please sign in to comment.