|
| 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." |
0 commit comments