From 6adca3683fe9d14c51cd7e3e9e667b976f28fc13 Mon Sep 17 00:00:00 2001
From: Mayra Cabrera <mcabrera@gitlab.com>
Date: Thu, 14 Mar 2019 02:27:19 +0000
Subject: [PATCH] Fixes jupyter installation randomly failing

Disables jupyter prepuller to avoid Helm chart to await for upgrading
the jupyter hub images that are used by the hub pod to spawn user pods
arrives on the nodes where users can spawn first.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58927
---
 changelogs/unreleased/58927-jupyterhub-fails-to-install.yml | 5 +++++
 vendor/jupyter/values.yaml                                  | 4 ++++
 2 files changed, 9 insertions(+)
 create mode 100644 changelogs/unreleased/58927-jupyterhub-fails-to-install.yml

diff --git a/changelogs/unreleased/58927-jupyterhub-fails-to-install.yml b/changelogs/unreleased/58927-jupyterhub-fails-to-install.yml
new file mode 100644
index 0000000000000..2502b981337c5
--- /dev/null
+++ b/changelogs/unreleased/58927-jupyterhub-fails-to-install.yml
@@ -0,0 +1,5 @@
+---
+title: Fixes jupyter installation randomly failing
+merge_request: 26126
+author:
+type: fixed
diff --git a/vendor/jupyter/values.yaml b/vendor/jupyter/values.yaml
index 781d6e3042fba..2be54dec30e35 100644
--- a/vendor/jupyter/values.yaml
+++ b/vendor/jupyter/values.yaml
@@ -23,3 +23,7 @@ ingress:
  annotations:
    kubernetes.io/ingress.class: "nginx"
    kubernetes.io/tls-acme: "true"
+
+prePuller:
+  hook:
+    enabled: false
-- 
GitLab