File: README.md

package info (click to toggle)
python-kubernetes 30.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,980 kB
  • sloc: python: 126,462; sh: 699; makefile: 46
file content (29 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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
```