File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ metadata:
77 {{- include "operator.labels" . | nindent 4 }}
88spec :
99 replicas : {{ .Values.controllerManager.replicas }}
10+ strategy :
11+ rollingUpdate :
12+ maxSurge : {{ .Values.controllerManager.strategy.rollingUpdate.maxSurge | quote
13+ }}
14+ maxUnavailable : {{ .Values.controllerManager.strategy.rollingUpdate.maxUnavailable
15+ | quote }}
16+ type : {{ .Values.controllerManager.strategy.type | quote }}
1017 selector :
1118 matchLabels :
1219 control-plane : controller-manager
Original file line number Diff line number Diff line change @@ -49,6 +49,11 @@ controllerManager:
4949 serviceAccount :
5050 annotations :
5151 k8s.acme.org/some-meta-data : ACME Inc.
52+ strategy :
53+ rollingUpdate :
54+ maxSurge : 25%
55+ maxUnavailable : 25%
56+ type : RollingUpdate
5257kubernetesClusterDomain : cluster.local
5358managerConfig :
5459 controllerManagerConfigYaml : |-
You can’t perform that action at this time.
0 commit comments