Skip to content
Snippets Groups Projects
Select Git revision
  • 6a32f85e6082c6c64d9c20e42c6a862aea9bb3a3
  • master default protected
  • rednatco-v2
  • rednatco
  • test
  • ntc-tube-uniform-color
  • ntc-tube-missing-atoms
  • restore-vertex-array-per-program
  • watlas2
  • dnatco_new
  • cleanup-old-nodejs
  • webmmb
  • fix_auth_seq_id
  • update_deps
  • ext_dev
  • ntc_balls
  • nci-2
  • plugin
  • bugfix-0.4.5
  • nci
  • servers
  • v0.5.0-dev.1
  • v0.4.5
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.12
  • v0.3.11
  • v0.3.10
  • v0.3.9
  • v0.3.8
  • v0.3.7
  • v0.3.6
  • v0.3.5
  • v0.3.4
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
41 results

webpack.config.viewer.js

Blame
  • deploy.sh 852 B
    #! /bin/bash -xe
    
    #
    # See https://docs.egi.eu/providers/notebooks/operations/
    # (without terraform and ansible-inventory tools)
    #
    
    INGRESS_HOSTNAME='eosc.zcu.cz'
    
    ip4=78.128.247.56
    ip6=2001:718:ff05:205::56
    
    # wait ping
    while ! ping -c 1 "$ip4"; do sleep 5; done
    
    # wait ssh
    while ! ssh egi@"$ip4" -o ConnectTimeout=10 -o PreferredAuthentications=publickey -o StrictHostKeyChecking=no :; do sleep 10; done
    
    # check ssh access
    ansible -m command -a 'uname -a' allnodes
    
    # wait cloud-init
    ansible -m shell -a 'while ! test -f /var/lib/cloud/instance/boot-finished; do sleep 2; done' allnodes
    
    # kubernetes
    ansible-playbook playbooks/k8s.yaml
    
    # image repository
    ansible-playbook playbooks/repository-nexus.yaml
    
    # wait for finish
    while ansible -m command -a 'kubectl get pods --all-namespaces' master | tail -n +3 | grep -v ' Running '; do sleep 5; done