diff --git a/configure_helm_jupyterhub.sh b/configure_helm_jupyterhub.sh new file mode 100644 index 0000000..5f76863 --- /dev/null +++ b/configure_helm_jupyterhub.sh @@ -0,0 +1,2 @@ +helm repo add jupyterhub https://jupyterhub.github.io/helm-chart/ +helm repo update diff --git a/install_jhub.sh b/install_jhub.sh new file mode 100644 index 0000000..613bf48 --- /dev/null +++ b/install_jhub.sh @@ -0,0 +1,7 @@ +RELEASE=jhub +NAMESPACE=jhub + +helm upgrade --install $RELEASE jupyterhub/jupyterhub \ + --namespace $NAMESPACE \ + --version 0.7.0 \ + --values config_standard_storage.yaml --values secrets.yaml