george-zubrienko commented on issue #27140:
URL: https://github.com/apache/airflow/issues/27140#issuecomment-1285388914
A temporary workaround for this is to set liveness probe command to `exit 0`.
in terraform `helm_release`:
```
...
set {
name = "dagProcessor.livenessProbe.command[0]"
value = "sh"
}
set {
name = "dagProcessor.livenessProbe.command[1]"
value = "-c"
}
set {
name = "dagProcessor.livenessProbe.command[2]"
value = "exit 0"
}
```
or in helm deploy:
```
--set dagProcessor.livenessProbe.command[0] ...
```
--
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]