diff --git a/chart/templates/webserver/webserver-deployment.yaml b/chart/templates/webserver/webserver-deployment.yaml index 9fd5b4326ec75..03b8b456b4606 100644 --- a/chart/templates/webserver/webserver-deployment.yaml +++ b/chart/templates/webserver/webserver-deployment.yaml @@ -203,10 +203,10 @@ spec: value: {{ regexReplaceAll ":\\d+$" (urlParse (tpl .Values.config.webserver.base_url .)).host "" }} {{- end }} scheme: {{ .Values.webserver.livenessProbe.scheme | default "http" }} - initialDelaySeconds: {{ .Values.webserver.livenessProbe.initialDelaySeconds | default 15 }} - timeoutSeconds: {{ .Values.webserver.livenessProbe.timeoutSeconds | default 30 }} - failureThreshold: {{ .Values.webserver.livenessProbe.failureThreshold | default 20 }} - periodSeconds: {{ .Values.webserver.livenessProbe.periodSeconds | default 5 }} + initialDelaySeconds: {{ .Values.webserver.livenessProbe.initialDelaySeconds }} + timeoutSeconds: {{ .Values.webserver.livenessProbe.timeoutSeconds }} + failureThreshold: {{ .Values.webserver.livenessProbe.failureThreshold }} + periodSeconds: {{ .Values.webserver.livenessProbe.periodSeconds }} readinessProbe: httpGet: path: {{ if .Values.config.webserver.base_url }}{{- with urlParse (tpl .Values.config.webserver.base_url .) }}{{ .path }}{{ end }}{{ end }}/health @@ -217,10 +217,10 @@ spec: value: {{ regexReplaceAll ":\\d+$" (urlParse (tpl .Values.config.webserver.base_url .)).host "" }} {{- end }} scheme: {{ .Values.webserver.readinessProbe.scheme | default "http" }} - initialDelaySeconds: {{ .Values.webserver.readinessProbe.initialDelaySeconds | default 15 }} - timeoutSeconds: {{ .Values.webserver.readinessProbe.timeoutSeconds | default 30 }} - failureThreshold: {{ .Values.webserver.readinessProbe.failureThreshold | default 20 }} - periodSeconds: {{ .Values.webserver.readinessProbe.periodSeconds | default 5 }} + initialDelaySeconds: {{ .Values.webserver.readinessProbe.initialDelaySeconds }} + timeoutSeconds: {{ .Values.webserver.readinessProbe.timeoutSeconds }} + failureThreshold: {{ .Values.webserver.readinessProbe.failureThreshold }} + periodSeconds: {{ .Values.webserver.readinessProbe.periodSeconds }} envFrom: {{- include "custom_airflow_environment_from" . | default "\n []" | indent 10 }} env: {{- include "custom_airflow_environment" . | indent 10 }} diff --git a/chart/values.schema.json b/chart/values.schema.json index 1e1ce381fd4e1..91dc5da412fce 100644 --- a/chart/values.schema.json +++ b/chart/values.schema.json @@ -3211,17 +3211,17 @@ "timeoutSeconds": { "description": "Webserver Liveness probe timeout seconds.", "type": "integer", - "default": 30 + "default": 5 }, "failureThreshold": { "description": "Webserver Liveness probe failure threshold.", "type": "integer", - "default": 20 + "default": 5 }, "periodSeconds": { "description": "Webserver Liveness probe period seconds.", "type": "integer", - "default": 5 + "default": 10 }, "scheme": { "description": "Webserver Liveness probe scheme.", @@ -3243,17 +3243,17 @@ "timeoutSeconds": { "description": "Webserver Readiness probe timeout seconds.", "type": "integer", - "default": 30 + "default": 5 }, "failureThreshold": { "description": "Webserver Readiness probe failure threshold.", "type": "integer", - "default": 20 + "default": 5 }, "periodSeconds": { "description": "Webserver Readiness probe period seconds.", "type": "integer", - "default": 5 + "default": 10 }, "scheme": { "description": "Webserver Readiness probe scheme.", diff --git a/chart/values.yaml b/chart/values.yaml index 5a7613e96c543..011aff1e8dd16 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -958,16 +958,16 @@ webserver: allowPodLogReading: true livenessProbe: initialDelaySeconds: 15 - timeoutSeconds: 30 - failureThreshold: 20 - periodSeconds: 5 + timeoutSeconds: 5 + failureThreshold: 5 + periodSeconds: 10 scheme: HTTP readinessProbe: initialDelaySeconds: 15 - timeoutSeconds: 30 - failureThreshold: 20 - periodSeconds: 5 + timeoutSeconds: 5 + failureThreshold: 5 + periodSeconds: 10 scheme: HTTP # Number of webservers