From e6461b796c8fe088de0fe01b586a12218772191f Mon Sep 17 00:00:00 2001 From: Tasko Olevski Date: Wed, 2 Oct 2024 14:48:34 +0200 Subject: [PATCH] chore: publish the liveness detector image (#1989) --- chartpress.yaml | 6 ++++++ liveness-detector/Dockerfile | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/chartpress.yaml b/chartpress.yaml index afd4b595..c5b915ba 100644 --- a/chartpress.yaml +++ b/chartpress.yaml @@ -12,6 +12,7 @@ charts: - git-https-proxy - k8s-watcher - secrets-mount + - liveness-detector images: renku-notebooks: contextPath: . @@ -59,3 +60,8 @@ charts: valuesPath: notebooks.ssh.image paths: - ssh-jump-host + liveness-detector: + contextPath: liveness-detector + dockerfilePath: liveness-detector/Dockerfile + paths: + - liveness-detector diff --git a/liveness-detector/Dockerfile b/liveness-detector/Dockerfile index cbff3169..5a82da68 100644 --- a/liveness-detector/Dockerfile +++ b/liveness-detector/Dockerfile @@ -29,4 +29,4 @@ EXPOSE 8888 ENTRYPOINT ["/shell-hook.sh"] -CMD ["uvicorn", "liveness_detector:app", "--port", 8888] +CMD ["uvicorn", "liveness_detector:app", "--port", "8888"]