fix: remove redundant PROBES_ENABLED declaration in payment configuration

Signed-off-by: zhenyus <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-03-17 21:48:59 +08:00
parent bb30b8ae7c
commit 952cf5039d

View File

@ -18,4 +18,3 @@ data:
PROBES_ENABLED: {{ if .Values.payment.probes | default false | toString | b64enc }}
METRICS_ENABLED: {{ .Values.payment.serviceMonitor.enabled | default false | toString | b64enc }}
PROBES_ENABLED: {{ if and .Values.payment.probes (gt (len .Values.payment.probes) 0) }}{{ "true" | b64enc }}{{ else }}{{ "false" | b64enc }}{{ end }}