From f7d4d8e49262136e3c76bbe0c707ef91c29705a2 Mon Sep 17 00:00:00 2001 From: Amit Rathi Date: Tue, 30 Oct 2018 02:20:07 +0530 Subject: Fix #53298: JupyterHub to restarts should work without errors --- vendor/jupyter/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/jupyter/values.yaml b/vendor/jupyter/values.yaml index 049ffcc3407..24136a7aca5 100644 --- a/vendor/jupyter/values.yaml +++ b/vendor/jupyter/values.yaml @@ -16,7 +16,7 @@ singleuser: lifecycleHooks: postStart: exec: - command: ["git", "clone", "https://gitlab.com/gitlab-org/nurtch-demo.git", "DevOps-Runbook-Demo"] + command: ["sh", "-c", "git clone https://gitlab.com/gitlab-org/nurtch-demo.git DevOps-Runbook-Demo || true"] ingress: enabled: true -- cgit v1.2.1 From c5bc4e5ae14562258d542f570f03c29c92c92671 Mon Sep 17 00:00:00 2001 From: Amit Rathi Date: Tue, 30 Oct 2018 02:35:28 +0530 Subject: Adding changelog entry --- changelogs/unreleased/fix-53298.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelogs/unreleased/fix-53298.yml diff --git a/changelogs/unreleased/fix-53298.yml b/changelogs/unreleased/fix-53298.yml new file mode 100644 index 00000000000..f0bf5470dc8 --- /dev/null +++ b/changelogs/unreleased/fix-53298.yml @@ -0,0 +1,5 @@ +--- +title: 'Fix #53298: JupyterHub restarts should work without errors' +merge_request: 22671 +author: Amit Rathi +type: fixed -- cgit v1.2.1