Skip to content

Commit d621100

Browse files
committed
wip
1 parent 25a3d63 commit d621100

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

k8s/jupyter/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
ARG BASE_CONTAINER=jupyter/datascience-notebook
2+
3+
FROM $BASE_CONTAINER
4+
5+
ADD requirements.txt /
6+
7+
RUN pip install jupyter-client --upgrade
8+
9+
RUN pip install -r /requirements.txt

k8s/jupyter/config.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
proxy:
2+
secretToken: 39f9a0b3f7cb7110e82369a5932a2d875241aaf6bb833b5d96f4d8b3ce22cd05
3+
4+
singleuser:
5+
image:
6+
# Get the latest image tag at:
7+
# https://hub.docker.com/r/jupyter/datascience-notebook/tags/
8+
# Inspect the Dockerfile at:
9+
# https://github.com/jupyter/docker-stacks/tree/master/datascience-notebook/Dockerfile
10+
name: nonsens3/testground-jupyter-base
11+
tag: latest
12+
memory:
13+
limit: 2G
14+
guarantee: 2G
15+
cpu:
16+
limit: 2
17+
guarantee: 2

k8s/jupyter/notes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
RELEASE=jhub
2+
NAMESPACE=jhub
3+
4+
helm upgrade --install $RELEASE jupyterhub/jupyterhub \
5+
--namespace $NAMESPACE \
6+
--version=0.8.2 \
7+
--values config.yaml

k8s/jupyter/requirements.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
toml
2+
jinja2
3+
ndjson
4+
pandas
5+
numpy
6+
matplotlib
7+
jupyter
8+
ipywidgets
9+
bunch
10+
stringcase
11+
papermill
12+
jupyter-ui-poll
13+
jupyter_contrib_nbextensions
14+
durations
15+
seaborn
16+
ipywidgets

0 commit comments

Comments
 (0)