This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu@lambert8-dev:~/deploy-dev$ make clean && make dev | |
./stop_worker.sh | |
./destroy_instances.py | |
Deleting all running instances | |
b'' | |
docker stack rm wt | |
Removing service wt_dashboard | |
Removing service wt_dashboard_old | |
Removing service wt_girder | |
Removing service wt_mongo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu@lambert8-dev:~/deploy-dev$ make clean && make dev | |
./stop_worker.sh | |
./destroy_instances.py | |
Deleting all running instances | |
b'' | |
docker stack rm wt | |
Removing service wt_dashboard | |
Removing service wt_dashboard_old | |
Removing service wt_girder | |
Removing service wt_mongo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu@lambert8-dev:~/deploy-dev$ make dev | |
docker stack deploy --compose-file=docker-stack.yml wt | |
Updating service wt_dashboard (id: 83vr4wn29g3s09776uub2an3y) | |
Updating service wt_registry (id: a9s0amcqjhvka83mschosxcei) | |
Updating service wt_traefik (id: i0nuz1bmd5bl2gbreth19081d) | |
Updating service wt_mongo (id: vv29cjdot7l6u0qkj3sphx88t) | |
Updating service wt_girder (id: gpgp0l1pj6xj7s8ru8pq2tbxj) | |
Updating service wt_redis (id: k8b5m02yeyc8y4yfy3p3hymjb) | |
Updating service wt_dashboard_old (id: x95qq24mucxfvk1u2sdi2tjnt) | |
./run_worker.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu@lambert8-dev:~/deploy-dev$ make tail_girder_err | |
docker exec -ti $(docker ps --filter=name=wt_girder -q) \ | |
tail -n 200 /home/girder/.girder/logs/error.log | |
[2020-05-15 22:27:33,034] WARNING: WARNING: adding swagger models without specifying resources to bind to is discouraged (containerConfig). | |
[2020-05-15 22:27:33,034] WARNING: WARNING: adding swagger models without specifying resources to bind to is discouraged (dataSet). | |
[2020-05-15 22:27:33,354] WARNING: WARNING: adding swagger models without specifying resources to bind to is discouraged (dataMap). | |
[2020-05-15 22:27:33,355] WARNING: WARNING: adding swagger models without specifying resources to bind to is discouraged (fileMap). | |
[2020-05-15 22:27:33,373] WARNING: WARNING: adding swagger models without specifying resources to bind to is discouraged (containerConfig). | |
[2020-05-15 22:27:33,373] WARNING: WARNING: adding swagger models without specifying resources to bind to is discouraged (dataSet). | |
[2020-05-15 22:27:33,386] WARNING: WARNING: adding sw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: PersistentVolumeClaim | |
apiVersion: v1 | |
metadata: | |
name: test | |
spec: | |
accessModes: | |
- ReadWriteMany | |
resources: | |
requests: | |
storage: 1Mi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BASEDIR="/home/core" | |
WORKDIR="$BASEDIR/ndslabs-deploy-tools" | |
PRIVATE_DIR="$BASEDIR/private" | |
PERSONAL_INV_DIR="$BASEDIR/inventories" | |
PERSONAL_PLB_DIR="$BASEDIR/playbooks" | |
REPO="ndslabs" | |
IMAGE="deploy-tools" | |
TAG="latest" | |
VOLUME_ARGS=" -v $WORKDIR/FILES.deploy-tools/root/playbooks:/root/playbooks \ |