fix(helm chart): rolling update values should be strings in all cases (#5586)

This commit is contained in:
Iain Sproat
2025-09-29 15:28:31 +01:00
committed by GitHub
parent f970a02dc1
commit de20cf1594
2 changed files with 4 additions and 4 deletions
@@ -15,8 +15,8 @@ spec:
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: {{ .Values.objects.rollingUpdate.maxUnavailable }}
maxSurge: {{ .Values.objects.rollingUpdate.maxSurge }}
maxUnavailable: {{ .Values.objects.rollingUpdate.maxUnavailable | quote }}
maxSurge: {{ .Values.objects.rollingUpdate.maxSurge | quote }}
template:
metadata:
labels:
@@ -15,8 +15,8 @@ spec:
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: {{ .Values.server.rollingUpdate.maxUnavailable }}
maxSurge: {{ .Values.server.rollingUpdate.maxSurge }}
maxUnavailable: {{ .Values.server.rollingUpdate.maxUnavailable | quote }}
maxSurge: {{ .Values.server.rollingUpdate.maxSurge | quote }}
template:
metadata:
labels: