Skip to content
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

Increase default liveness probe timeout #19003

Merged
merged 1 commit into from
Oct 15, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1225,17 +1225,17 @@
"timeoutSeconds": {
"description": "Scheduler Liveness probe timeout seconds.",
"type": "integer",
"default": 5
"default": 10
},
"failureThreshold": {
"description": "Scheduler Liveness probe failure threshold.",
"type": "integer",
"default": 10
"default": 5
},
"periodSeconds": {
"description": "Scheduler Liveness probe period seconds.",
"type": "integer",
"default": 30
"default": 60
}
}
},
Expand Down Expand Up @@ -1478,17 +1478,17 @@
"timeoutSeconds": {
"description": "Triggerer Liveness probe timeout seconds.",
"type": "integer",
"default": 5
"default": 10
},
"failureThreshold": {
"description": "Triggerer Liveness probe failure threshold.",
"type": "integer",
"default": 10
"default": 5
},
"periodSeconds": {
"description": "Triggerer Liveness probe period seconds.",
"type": "integer",
"default": 30
"default": 60
}
}
},
Expand Down
16 changes: 8 additions & 8 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,13 +505,13 @@ workers:

# Airflow scheduler settings
scheduler:
# If the scheduler stops heartbeating for 5 minutes (10*30s) kill the
# If the scheduler stops heartbeating for 5 minutes (5*60s) kill the
# scheduler and let Kubernetes restart it
livenessProbe:
initialDelaySeconds: 10
timeoutSeconds: 5
failureThreshold: 10
periodSeconds: 30
timeoutSeconds: 10
failureThreshold: 5
periodSeconds: 60
# Airflow 2.0 allows users to run multiple schedulers,
# However this feature is only recommended for MySQL 8+ and Postgres
replicas: 1
Expand Down Expand Up @@ -786,13 +786,13 @@ triggerer:
maxSurge: "100%"
maxUnavailable: "50%"

# If the triggerer stops heartbeating for 5 minutes (10*30s) kill the
# If the triggerer stops heartbeating for 5 minutes (5*60s) kill the
# triggerer and let Kubernetes restart it
livenessProbe:
initialDelaySeconds: 10
timeoutSeconds: 5
failureThreshold: 10
periodSeconds: 30
timeoutSeconds: 10
failureThreshold: 5
periodSeconds: 60

# Create ServiceAccount
serviceAccount:
Expand Down