Не удалось загрузить JupyterHub через helm - PullRequest
0 голосов
/ 24 марта 2020

Я пытаюсь загрузить / установить таблицу управления jupyterhub.

> helm repo add jupyterhub https://jupyterhub.github.io/helm-chart/
"jupyterhub" has been added to your repositories

> helm repo update
Hang tight while we grab the latest from your chart repositories...
...Skip local chart repository
...Successfully got an update from the "jupyterhub" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete. ⎈ Happy Helming!⎈

> helm upgrade --install jhub jupyterhub/jupyterhub --namespace jhub --version=0.8.2 --values config.yaml
Error: failed to download "jupyterhub/jupyterhub" (hint: running `helm repo update` may help)

(повторная попытка helm repo update не работает)

Когда я смотрю свои репозитории, я вижу jupyterhub:

> helm repo list
NAME        URL
stable      https://kubernetes-charts.storage.googleapis.com
local       http://127.0.0.1:8879/charts
jupyterhub  https://jupyterhub.github.io/helm-chart/

что мне не хватает? это может быть проблема с сервером обратного репо?

1 Ответ

0 голосов
/ 24 марта 2020

Ничего себе. Проблема была в том, что у меня были цитаты вокруг версии. это не принимало это. Это работает:

helm upgrade --install jhub jupyterhub/jupyterhub --namespace jhub --version=0.8.2 --values config.yaml 
...