To ignore the health check of a specific Deployment #19257
stoneeve415
started this conversation in
General
Replies: 1 comment 1 reply
-
Looking at the code, the answer is a clear "no". But I like the idea and it seems easy enough to implement. Currently, returning result = {}
result.status = "Default"
return result ... or something like that. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone, I need help. I want to ignore the status of a specific deployment (which is expected to be in progress).
Attempt 1:
But this does not affect the health status.
Attempt 2:
Customize health checks using resource.customizations, and add the skip-health label to the deployment that needs to skip health checks.
However, returning nil will cause all other deployments to be in the progressing state. Is there a way to directly invoke the default health check logic?
Beta Was this translation helpful? Give feedback.
All reactions