X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Finstall_osm.sh;h=34494ec2f0193d757b74d31b473423ae45f0aa0e;hb=c80394e7806dc89e012d958b71b87e48a7db20b9;hp=f24f9383cf5e158d8f293a3317fc55560e8ea6e8;hpb=a1fc4570e6196978b0de679c5e659748ba407e6d;p=osm%2Fdevops.git diff --git a/installers/install_osm.sh b/installers/install_osm.sh index f24f9383..34494ec2 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -129,6 +129,32 @@ function update(){ echo } +function so_is_up(){ + SO_IP=$1 + time=0 + step=5 + timelength=300 + while [ $time -le $timelength ] + do + curl -k https://$SO_IP:8008/api/operational/vcs/info \ + --header 'accept: application/vnd.yang.data+json' \ + --header 'authorization: Basic YWRtaW46YWRtaW4=' \ + --header 'cache-control: no-cache' \ + --header 'content-type: application/vnd.yang.data+json' &> /dev/null + RET=$? + if [ "$RET" == 0 ]; then + break + fi + sleep $step + echo -n "." + time=$((time+step)) + done + if [ "$RET" != 0 ]; then + FATAL "OSM Failed to startup" + fi + echo +} + #Configure VCA, SO and RO with the initial configuration: # RO -> tenant:osm, logs to be sent to SO # VCA -> juju-password @@ -141,7 +167,9 @@ function configure(){ echo -e " Configuring RO" lxc exec RO -- sed -i -e "s/^\#\?log_socket_host:.*/log_socket_host: $SO_CONTAINER_IP/g" /etc/osm/openmanod.cfg lxc exec RO -- service osm-ro restart + time=0; step=2; timelength=20; while [ $time -le $timelength ]; do sleep $step; echo -n "."; time=$((time+step)); done; echo + lxc exec RO -- openmano tenant-delete -f osm >/dev/null RO_TENANT_ID=`lxc exec RO -- openmano tenant-create osm |awk '{print $1}'` @@ -153,25 +181,35 @@ function configure(){ echo -e " Configuring SO" sudo route add -host $JUJU_CONTROLLER_IP gw $VCA_CONTAINER_IP sudo sed -i "$ i route add -host $JUJU_CONTROLLER_IP gw $VCA_CONTAINER_IP" /etc/rc.local - lxc exec SO-ub -- nohup sudo -b -H /usr/rift/rift-shell -r -i /usr/rift -a /usr/rift/.artifacts -- ./demos/launchpad.py --use-xml-mode & - time=0; step=30; timelength=300; while [ $time -le $timelength ]; do sleep $step; echo -n "."; time=$((time+step)); done; echo + lxc exec SO-ub -- systemctl restart launchpad + + so_is_up $SO_CONTAINER_IP - curl -k --request POST \ + #delete existing config agent (could be there on reconfigure) + curl -k --request DELETE \ + --url https://$SO_CONTAINER_IP:8008/api/config/config-agent/account/osmjuju \ + --header 'accept: application/vnd.yang.data+json' \ + --header 'authorization: Basic YWRtaW46YWRtaW4=' \ + --header 'cache-control: no-cache' \ + --header 'content-type: application/vnd.yang.data+json' &> /dev/null + + result=$(curl -k --request POST \ --url https://$SO_CONTAINER_IP:8008/api/config/config-agent \ --header 'accept: application/vnd.yang.data+json' \ --header 'authorization: Basic YWRtaW46YWRtaW4=' \ --header 'cache-control: no-cache' \ --header 'content-type: application/vnd.yang.data+json' \ - --data '{"account": [ { "name": "osmjuju", "account-type": "juju", "juju": { "ip-address": "'$JUJU_CONTROLLER_IP'", "port": "17070", "user": "admin", "secret": "'$JUJU_PASSWD'" } } ]}' + --data '{"account": [ { "name": "osmjuju", "account-type": "juju", "juju": { "ip-address": "'$JUJU_CONTROLLER_IP'", "port": "17070", "user": "admin", "secret": "'$JUJU_PASSWD'" } } ]}') + [[ $result =~ .*success.* ]] || FATAL "Failed config-agent configuration: $result" - curl -k --request PUT \ + result=$(curl -k --request PUT \ --url https://$SO_CONTAINER_IP:8008/api/config/resource-orchestrator \ --header 'accept: application/vnd.yang.data+json' \ --header 'authorization: Basic YWRtaW46YWRtaW4=' \ --header 'cache-control: no-cache' \ --header 'content-type: application/vnd.yang.data+json' \ - --data '{ "openmano": { "host": "'$RO_CONTAINER_IP'", "port": "9090", "tenant-id": "'$RO_TENANT_ID'" }, "name": "osmopenmano", "account-type": "openmano" }' - + --data '{ "openmano": { "host": "'$RO_CONTAINER_IP'", "port": "9090", "tenant-id": "'$RO_TENANT_ID'" }, "name": "osmopenmano", "account-type": "openmano" }') + [[ $result =~ .*success.* ]] || FATAL "Failed resource-orchestrator configuration: $result" } function install_lxd() { @@ -183,6 +221,19 @@ function install_lxd() { systemctl start lxd-bridge } +function ask_user(){ + # ask to the user and parse a response among 'y', 'yes', 'n' or 'no'. Case insensitive + # Params: $1 text to ask; $2 Action by default, can be 'y' for yes, 'n' for no, other or empty for not allowed + # Return: true(0) if user type 'yes'; false (1) if user type 'no' + read -e -p "$1" USER_CONFIRMATION + while true ; do + [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'y' ] && return 0 + [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'n' ] && return 1 + [ "${USER_CONFIRMATION,,}" == "yes" ] || [ "${USER_CONFIRMATION,,}" == "y" ] && return 0 + [ "${USER_CONFIRMATION,,}" == "no" ] || [ "${USER_CONFIRMATION,,}" == "n" ] && return 1 + read -e -p "Please type 'yes' or 'no': " USER_CONFIRMATION + done +} UNINSTALL="" DEVELOP="" @@ -245,8 +296,11 @@ if [ -n "$SHOWOPTS" ]; then exit 0 fi +# if develop, we force master [ -z "$COMMIT_ID" ] && [ -n "$DEVELOP" ] && COMMIT_ID="master" -[ -n "$COMMIT_ID" ] && INSTALL_FROM_SOURCE="y" + +# if master, force install from source +[ -n "$COMMIT_ID" ] && [ "$COMMIT_ID" == "master" ] && INSTALL_FROM_SOURCE="y" if [ -n "$TEST_INSTALLER" ]; then echo -e "\nUsing local devops repo for OSM installation" @@ -284,9 +338,7 @@ OSM_JENKINS="$TEMPDIR/jenkins" #Installation starts here echo -e "\nInstalling OSM from refspec: $COMMIT_ID" if [ -n "$INSTALL_FROM_SOURCE" ] && [ -z "$ASSUME_YES" ]; then - read -e -p "The installation will take about 75-90 minutes. Continue (Y/n)?" USER_CONFIRMATION - [ -n "$USER_CONFIRMATION" ] && [ "$USER_CONFIRMATION" != "yes" ] && \ - [ "$USER_CONFIRMATION" != "y" ] && echo "Cancelled!" && exit 0 + ! ask_user "The installation will take about 75-90 minutes. Continue (Y/n)? " y && echo "Cancelled!" && exit 1 fi echo -e "\nChecking required packages: wget, curl, tar"