Skip to content

Commit cb9290a

Browse files
authored
Add progressDeadlineSeconds to the Operator deployment yaml and Helm chart (#752)
1 parent 595bd37 commit cb9290a

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

config/manager/manager.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ spec:
1818
matchLabels:
1919
control-plane: coherence
2020
replicas: 3
21+
progressDeadlineSeconds: 600
2122
template:
2223
metadata:
2324
labels:

helm-charts/coherence-operator/templates/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ metadata:
118118
{{- end }}
119119
spec:
120120
replicas: {{ default 3 .Values.replicas }}
121+
progressDeadlineSeconds: {{ default 600 .Values.progressDeadlineSeconds }}
121122
selector:
122123
matchLabels:
123124
control-plane: coherence

helm-charts/coherence-operator/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ imagePullPolicy:
2727
# The operator runs HA by default, with one of the replicas assuming leadership.
2828
replicas: 3
2929

30+
# progressDeadlineSeconds maps to the same field in the Operator deployment resource.
31+
# If not set, the default is 600 seconds
32+
# see: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#progress-deadline-seconds
33+
progressDeadlineSeconds: 600
34+
3035
# imagePullSecrets provides support pulling images from private registries, the value references
3136
# one or more secrets to be used when pulling images. Secrets must be manually created in the
3237
# target namespace.

0 commit comments

Comments
 (0)