jupyter-server / enterprise_gateway

A lightweight, multi-tenant, scalable and secure gateway that enables Jupyter Notebooks to share resources across distributed clusters such as Apache Spark, Kubernetes and others.
https://jupyter-enterprise-gateway.readthedocs.io/en/latest/
Other
615 stars 221 forks source link

Disable healthcheck on kernel-images derived from notebook images #1240

Closed kevin-bates closed 1 year ago

kevin-bates commented 1 year ago

This pull request preemptively disables the HEALTHCHECK command that may be inherited from the jupyter/docker-stacks images. Note that the inherited notebook images do not currently have HEALTHCHECK commands as they were added in March of 2022 and we currently base images from January of 2022, but I wanted to get these updates in place in case the base images are updated (thus the italics).

I've confirmed the images are operational (in Kubernetes) and exhibit the expected metadata produced via docker inspect:

            "Healthcheck": {
                "Test": [
                    "NONE"
                ]
            },

Resolves #1218