fix(helm chart): rolling update values should be strings in all cases (#5586)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user