-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Monitoring container vitality #1639
Comments
Note: Healthchecks are supported by buildah but not by umoci as of this time |
As noted in opencontainers/umoci#352 (comment) when I asked for healthcheck support umoci maintainers noted me this is not an standard OCI feature, this is docker specific. So this brings up some considerations:
So keeping the current implementation of container builds in KIWI it is not straight forward to include There could be a chance to implement support for it limited to buildah but this would require a relevant refactor. It is not clear to me the effort is worth. |
I'm closing this one for now as I don't think we will address this in the near future for the reasons written down |
Problem description
A “healthcheck” is a way in which a user can determine the “health” or readiness of the primary process running inside of a container. It is more than a simple “is my container running?” question. Think of it more like “is my application ready?” So, a healthcheck is really a way to verify that both the container and its applications are responsive.
For details see:
Expected behaviour
kiwi should be able to make use of the healtcheck feature
The text was updated successfully, but these errors were encountered: