python/examples/notebooks
Kian-Meng Ang 2d299b7a57 Fix typos
Found via `codespell -S CHANGELOG.md,*.json,*.unprocessed -L querys,couldn`
2023-01-27 11:10:29 +08:00
..
docker fix: remove depriciated gitrepo volume type 2022-03-15 22:42:53 -07:00
create_configmap.ipynb Add notebook on how to create a ConfigMap and use its data in Pods 2017-08-22 00:57:14 +01:00
create_deployment.ipynb Reverting some changed that were made by IDE 2020-05-11 20:02:17 -04:00
create_pod.ipynb Fix typos 2023-01-27 11:10:29 +08:00
create_secret.ipynb Fix typos 2023-01-27 11:10:29 +08:00
create_service.ipynb Add notebook on how to create a Service 2017-07-06 21:51:48 +01:00
intro_notebook.ipynb Misc typo fixes 2021-12-17 12:23:37 +05:30
README.md fix: remove depriciated gitrepo volume type 2022-03-15 22:42:53 -07:00

Jupyter Notebooks for Kubernetes

This is a set of Jupyter notebooks to learn the Kubernetes API in Python.

Launch the deployment and create the service.

kubectl create -f docker/jupyter.yml

Open your browser on the jupyter service and go through the notebooks.

If you are using minikube:

# You can run this command to see jupyter service in your browser:

minikube service jupyter

# You can run this command to get the url in console
minikube service --url jupyter

Clean up your deployment.

kubectl delete -f docker/jupyter.yml