[stable/airflow] make the minReadySeconds changeable (#19004)

Signed-off-by: Stijn De Haes <stijndehaes@gmail.com>
This commit is contained in:
Stijn De Haes
2019-11-19 08:41:42 -08:00
committed by Kubernetes Prow Robot
parent d19093d44a
commit 67ea2df50a
4 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -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/
+1
View File
@@ -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
+1
View File
@@ -241,6 +241,7 @@ web:
annotations: {}
initialStartupDelay: "60"
initialDelaySeconds: "360"
minReadySeconds: 120
readinessProbe:
periodSeconds: 60
timeoutSeconds: 1