alifouzizadeh commented on issue #25667:
URL: https://github.com/apache/airflow/issues/25667#issuecomment-1235176361
Hi @fernhtls, what @ilyadinaburg suggested works for me, I changed
`$(hostname)` to `$(hostname -i) `, and it is working.
So, the code in the `values.yaml ` should be like this:
```
scheduler:
livenessProbe:
initialDelaySeconds: 10
timeoutSeconds: 120
failureThreshold: 20
periodSeconds: 60
command:
- sh
- -c
- |
CONNECTION_CHECK_MAX_COUNT=0 AIRFLOW__LOGGING__LOGGING_LEVEL=ERROR
exec /entrypoint \
airflow jobs check --job-type SchedulerJob --hostname $(hostname -i)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]