[bitnami/airflow] Use different liveness/readiness probes (#25971)

Signed-off-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
David Gomez
2024-05-17 16:11:06 +02:00
committed by GitHub
parent 4e3d87c812
commit 10b559db2e
7 changed files with 46 additions and 16 deletions

View File

@@ -378,6 +378,12 @@ The Bitnami Airflow chart relies on the PostgreSQL chart persistence. This means
| `scheduler.readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `15` |
| `scheduler.readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `6` |
| `scheduler.readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
| `scheduler.startupProbe.enabled` | Enable startupProbe on Airflow scheduler containers | `false` |
| `scheduler.startupProbe.initialDelaySeconds` | Initial delay seconds for startupProbe | `60` |
| `scheduler.startupProbe.periodSeconds` | Period seconds for startupProbe | `10` |
| `scheduler.startupProbe.timeoutSeconds` | Timeout seconds for startupProbe | `1` |
| `scheduler.startupProbe.failureThreshold` | Failure threshold for startupProbe | `15` |
| `scheduler.startupProbe.successThreshold` | Success threshold for startupProbe | `1` |
| `scheduler.customLivenessProbe` | Custom livenessProbe that overrides the default one | `{}` |
| `scheduler.customReadinessProbe` | Custom readinessProbe that overrides the default one | `{}` |
| `scheduler.customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |