mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/airflow] make the minReadySeconds changeable (#19004)
Signed-off-by: Stijn De Haes <stijndehaes@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
d19093d44a
commit
67ea2df50a
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Airflow is a platform to programmatically author, schedule and monitor workflows
|
||||
name: airflow
|
||||
version: 4.7.0
|
||||
version: 4.8.0
|
||||
appVersion: 1.10.4
|
||||
icon: https://airflow.apache.org/_images/pin_large.png
|
||||
home: https://airflow.apache.org/
|
||||
|
||||
@@ -375,6 +375,7 @@ The following table lists the configurable parameters of the Airflow chart and t
|
||||
| `web.labels` | labels for the web deployment | `{}` |
|
||||
| `web.annotations` | annotations for the web deployment | `{}` |
|
||||
| `web.initialStartupDelay` | amount of time webserver pod should sleep before initializing webserver | `60` |
|
||||
| `web.minReadySeconds` | minReadySeconds in the web deployment | `120`
|
||||
| `web.livenessProbe.periodSeconds` | interval between probes | `60` |
|
||||
| `web.livenessProbe.timeoutSeconds` | time allowed for a result to return | `1` |
|
||||
| `web.livenessProbe.successThreshold` | Minimum consecutive successes for the probe to be considered successful | `1` |
|
||||
|
||||
@@ -17,7 +17,7 @@ metadata:
|
||||
{{- end }}
|
||||
spec:
|
||||
replicas: {{ .Values.airflow.webReplicas }}
|
||||
minReadySeconds: 120
|
||||
minReadySeconds: {{ .Values.web.minReadySeconds }}
|
||||
strategy:
|
||||
# Smooth rolling update of the Web UI
|
||||
type: RollingUpdate
|
||||
|
||||
@@ -241,6 +241,7 @@ web:
|
||||
annotations: {}
|
||||
initialStartupDelay: "60"
|
||||
initialDelaySeconds: "360"
|
||||
minReadySeconds: 120
|
||||
readinessProbe:
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 1
|
||||
|
||||
Reference in New Issue
Block a user