We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93842f7 + 65db699 commit c6f88fcCopy full SHA for c6f88fc
imgproxy/templates/deployment.yaml
@@ -30,6 +30,7 @@ spec:
30
selector:
31
matchLabels:
32
app: {{ template "imgproxy.fullname" $ }}
33
+ strategy: {{ toYaml .Values.resources.deployment.strategy | nindent 4 }}
34
template:
35
metadata:
36
{{- with .Values.resources.pod }}
imgproxy/values.yaml
@@ -96,6 +96,13 @@ resources:
96
# The setting MUST be set if `minCount < maxCount` only.
97
cpuUtilization: 80
98
99
+ # See https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
100
+ strategy:
101
+ rollingUpdate:
102
+ maxSurge: 25%
103
+ maxUnavailable: 25%
104
+ type: RollingUpdate
105
+
106
# A node selector label.
107
nodeSelector: {}
108
0 commit comments