Skip to content

Commit b2e406f

Browse files
authored
fix(dv-pod): default fetchFeeRecipientUpdates to true when nil (#283)
1 parent 36c759a commit b2e406f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

charts/dv-pod/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ spec:
538538
{{- if .Values.charon.featureSetEnable }}
539539
--feature-set-enable={{ .Values.charon.featureSetEnable }}
540540
{{- end }}
541-
--fetch-feerecipient-updates={{ .Values.charon.fetchFeeRecipientUpdates }}
541+
--fetch-feerecipient-updates={{ if kindIs "invalid" .Values.charon.fetchFeeRecipientUpdates }}true{{ else }}{{ .Values.charon.fetchFeeRecipientUpdates }}{{ end }}
542542
{{- if .Values.charon.logFormat }}
543543
--log-format={{ .Values.charon.logFormat }}
544544
{{- end }}

0 commit comments

Comments
 (0)