Skip to content

Commit d7519ee

Browse files
adding swarm tools and deployment notes
1 parent 0256b04 commit d7519ee

6 files changed

+136
-5
lines changed

.gitignore

-5
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,3 @@ venv.bak/
113113
# Added config to hide hash of changed password
114114
src/jupyter_notebook_config.json
115115
.idea
116-
Deployment-notes.md
117-
add-to-swarm-with-defaults.sh
118-
add-to-swarm.sh
119-
remove-from-swarm.sh
120-
docker-compose-swarm.yml

Deployment-notes.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Deployment Notes
2+
3+
## Push image with tag to Dockerhub
4+
5+
Based on [this](https://ropenscilabs.github.io/r-docker-tutorial/04-Dockerhub.html) tutorial
6+
with the tag `v1.0_cuda-10.1_ubuntu-18.04`:
7+
8+
```bash
9+
# on il048:
10+
cd ~/Documents/projects/GPU-Jupyter/gpu-jupyter
11+
git pull
12+
bash generate_Dockerfile.sh
13+
bash start-local -p 1234
14+
docker image ls
15+
docker tag [IMAGE ID] cschranz/gpu-jupyter:v1.0_cuda-10.1_ubuntu-18.04
16+
docker push cschranz/gpu-jupyter:v1.0_cuda-10.1_ubuntu-18.04
17+
docker save cschranz/gpu-jupyter > ../gpu-jupyter_tag-v1.0_cuda-10.1_ubuntu-18.04.tar
18+
```
19+
20+
Then, the new tag is available on [Dockerhub](https://hub.docker.com/repository/docker/cschranz/gpu-jupyter/tags).
21+
22+
23+
## Deployment in the swarm
24+
25+
The GPU-Jupyter instance for deployment, that has swarm files and changed pw is
26+
in `/home/iotdev/Documents/projects/dtz/src/gpu-jupyter`
27+
28+
```bash
29+
# on il048:
30+
cd /home/iotdev/Documents/projects/dtz/src/gpu-jupyter
31+
git pull
32+
bash generate_Dockerfile.sh
33+
bash add-to-swarm-with-defaults.sh
34+
```
35+
36+
Then, the service will be available with data stored in `data`
37+
on [192.168.48.48:8848](http://192.168.48.48:8848) with our password.

add-to-swarm-with-defaults.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
cd $(cd -P -- "$(dirname -- "$0")" && pwd -P)
3+
4+
./add-to-swarm.sh -p 8848 -n elk_datastack -r 5001

add-to-swarm.sh

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
#!/usr/bin/env bash
2+
cd $(cd -P -- "$(dirname -- "$0")" && pwd -P)
3+
4+
# Fetching port and network as input
5+
PORT=8888
6+
REGISTRY=5000
7+
while [[ "$#" -gt 0 ]]; do case $1 in
8+
-p|--port) PORT="$2"; shift;;
9+
-r|--registry) REGISTRY="$2"; shift;;
10+
-n|--network) NETWORK="$2"; shift;;
11+
# -u|--uglify) uglify=1;;
12+
*) echo "Unknown parameter passed: $1"; exit 1;;
13+
esac; shift; done
14+
15+
# Check if arguments are valid
16+
if [[ $PORT != [0-9][0-9][0-9][0-9]* ]]; then
17+
echo "Given port is not valid."
18+
echo "Usage: $0 -p [port] -n [docker-network] -r [registry-port] # ports must be an integer with 4 or more digits."
19+
exit 21
20+
fi
21+
22+
if [[ $REGISTRY != [0-9][0-9][0-9][0-9]* ]]; then
23+
echo "Given registry port is not valid."
24+
echo "Usage: $0 -p [port] -n [docker-network] -r [registry-port] # ports must be an integer with 4 or more digits."
25+
exit 21
26+
fi
27+
28+
if [[ $NETWORK == "" ]]; then
29+
echo "No docker network was provided to which this gpu-jupyter should be added to."
30+
echo "Usage: $0 -p [port] -n [docker-network] -r [registry-port] # ports must be an integer with 4 or more digits."
31+
exit 22
32+
fi
33+
result=$(docker network ls)
34+
if [[ "$result" != *" $NETWORK "* ]]; then
35+
echo "Could not find network $NETWORK. Please provide a valid docker network."
36+
echo "Please select a network:"
37+
docker network ls
38+
exit 23
39+
fi
40+
41+
# starting in swarm
42+
export HOSTNAME=$(hostname)
43+
export JUPYTER_PORT=$PORT
44+
export REGISTRY_PORT=$REGISTRY
45+
export JUPYTER_NETWORK=$NETWORK
46+
echo "Adding gpu-jupyter to the swarm on the node $HOSTNAME in the network $NETWORK on port $PORT and registry to port $REGISTRY."
47+
48+
# substitute the blueprint docker-compose-swarm with the environment variables and stack deploy it.
49+
envsubst < docker-compose-swarm.yml > .docker-compose-swarm.yml.envsubst
50+
docker-compose -f .docker-compose-swarm.yml.envsubst build
51+
docker-compose -f .docker-compose-swarm.yml.envsubst push
52+
docker stack deploy --compose-file .docker-compose-swarm.yml.envsubst gpu
53+
rm .docker-compose-swarm.yml.envsubst
54+
55+
echo
56+
echo "Added gpu-jupyter to docker swarm $NETWORK on port $JUPYTER_PORT."
57+
echo "See 'docker service ps gpu_gpu-jupyter' for status info."
58+
echo "See 'docker service logs -f gpu_gpu-jupyter' for logs."

docker-compose-swarm.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
version: "3.4"
2+
services:
3+
gpu-jupyter:
4+
image: 127.0.0.1:$REGISTRY_PORT/gpu-jupyter
5+
build: .build
6+
ports:
7+
- $JUPYTER_PORT:8888
8+
volumes:
9+
- ./data:/home/jovyan/work
10+
environment:
11+
GRANT_SUDO: "yes"
12+
JUPYTER_ENABLE_LAB: "yes"
13+
# enable sudo permissions
14+
user:
15+
"root"
16+
networks:
17+
- default
18+
- $JUPYTER_NETWORK
19+
deploy:
20+
placement:
21+
constraints: [node.hostname == $HOSTNAME]
22+
replicas: 1
23+
update_config:
24+
parallelism: 2
25+
delay: 10s
26+
restart_policy:
27+
condition: on-failure
28+
29+
networks:
30+
$JUPYTER_NETWORK:
31+
external:
32+
name: $JUPYTER_NETWORK

remove-from-swarm.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
cd $(cd -P -- "$(dirname -- "$0")" && pwd -P)
3+
4+
echo "Removing gpu-jupyter from docker swarm."
5+
docker stack rm gpu

0 commit comments

Comments
 (0)