Skip to content

Add progressDeadlineSeconds to the Operator deployment yaml and Helm … #752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ spec:
matchLabels:
control-plane: coherence
replicas: 3
progressDeadlineSeconds: 600
template:
metadata:
labels:
Expand Down
1 change: 1 addition & 0 deletions helm-charts/coherence-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ metadata:
{{- end }}
spec:
replicas: {{ default 3 .Values.replicas }}
progressDeadlineSeconds: {{ default 600 .Values.progressDeadlineSeconds }}
selector:
matchLabels:
control-plane: coherence
Expand Down
5 changes: 5 additions & 0 deletions helm-charts/coherence-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ imagePullPolicy:
# The operator runs HA by default, with one of the replicas assuming leadership.
replicas: 3

# progressDeadlineSeconds maps to the same field in the Operator deployment resource.
# If not set, the default is 600 seconds
# see: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#progress-deadline-seconds
progressDeadlineSeconds: 600

# imagePullSecrets provides support pulling images from private registries, the value references
# one or more secrets to be used when pulling images. Secrets must be manually created in the
# target namespace.
Expand Down