From: garciadeblas Date: Wed, 5 Oct 2016 15:02:36 +0000 (+0200) Subject: install_from_source renamed to install_from_source.sh X-Git-Tag: v1.0.0~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=3f680f448a50c86059cedcaef0030ae7237b87c0;hp=018946bcbd64ef61d5c79502ffc55630a18b3cfd;p=osm%2Fdevops.git install_from_source renamed to install_from_source.sh Change-Id: Ia9d99d46dd486d82be916cee9e3b5f3841b11211 Signed-off-by: garciadeblas --- diff --git a/installers/install_from_source b/installers/install_from_source deleted file mode 100755 index ea1631d1..00000000 --- a/installers/install_from_source +++ /dev/null @@ -1,142 +0,0 @@ -#!/bin/bash -# Copyright 2016 Telefónica Investigación y Desarrollo S.A.U. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -function usage(){ - echo -e "usage: $0 [OPTIONS]" - echo -e "Install OSM from source code" - echo -e " OPTIONS" - echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules" - echo -e " --develop: install OSM from source code using the master branch" - echo -e " --nat: install only NAT rules" - echo -e " -h / --help: print this help" -} - -UNINSTALL="" -DEVELOP="" -NAT="" -while getopts ":h-:" o; do - case "${o}" in - h) - usage && exit 0 - ;; - -) - [ "${OPTARG}" == "help" ] && usage && exit 0 - [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue - [ "${OPTARG}" == "uninstall" ] && UNINSTALL="y" && continue - [ "${OPTARG}" == "nat" ] && NAT="y" && continue - echo -e "Invalid option: '--$OPTARG'\n" >&2 - usage && exit 1 - ;; - \?) - echo -e "Invalid option: '-$OPTARG'\n" >&2 - usage && exit 1 - ;; - *) - usage && exit 1 - ;; - esac -done - -echo -e "\nCreating temporary dir for OSM installation" -TEMPDIR="$(mktemp -d -q --tmpdir "installosm.XXXXXX")" -trap 'rm -rf "$TEMPDIR"' EXIT - -echo -e "\nCloning devops repo temporarily" -git clone https://osm.etsi.org/gerrit/osm/devops.git $TEMPDIR -RC_CLONE=$? -OSM_DEVOPS=$TEMPDIR -OSM_JENKINS="$TEMPDIR/jenkins" -. $OSM_JENKINS/common/all_funcs - -if [ -n "$UNINSTALL" ]; then - if [ $RC_CLONE ]; then - $OSM_DEVOPS/jenkins/host/clean_container RO - $OSM_DEVOPS/jenkins/host/clean_container VCA - $OSM_DEVOPS/jenkins/host/clean_container SO - #$OSM_DEVOPS/jenkins/host/clean_container UI - else - lxc stop RO && lxc delete RO - lxc stop VCA && lxc delete VCA - lxc stop SO-ub && lxc delete SO-ub - fi - exit 0 -fi - -if [ -n "$NAT" ]; then - sudo $OSM_DEVOPS/installers/nat_osm - exit 0 -fi - -#Installation starts here -wget -q -O- https://osm-download.etsi.org/ftp/osm-1.0-one/README.txt &> /dev/null - -echo -e "\nInstalling required packages: git, wget, curl, tar" -echo -e " Required root privileges" -sudo apt install -y git wget curl tar - -echo -e "\nCreating the containers and building ..." -COMMIT_ID="tags/v1.0" -#COMMIT_ID="master" -[ -n "$DEVELOP" ] && COMMIT_ID="master" -$OSM_DEVOPS/jenkins/host/start_build RO checkout $COMMIT_ID -$OSM_DEVOPS/jenkins/host/start_build VCA -$OSM_DEVOPS/jenkins/host/start_build SO checkout $COMMIT_ID -$OSM_DEVOPS/jenkins/host/start_build UI checkout $COMMIT_ID - -#Configure NAT rules -echo -e "\nConfiguring NAT rules" -echo -e " Required root privileges" -sudo $OSM_DEVOPS/installers/nat_osm - -#Configure components -echo -e "\nConfiguring components" -. $OSM_DEVOPS/installers/export_ips - -echo -e " Configuring RO" -lxc exec RO -- sed -i -e "s/^\#\?log_socket_host:.*/log_socket_host: $SO_CONTAINER_IP/g" /opt/openmano/openmanod.cfg -lxc exec RO -- service openmano restart -time=0; step=1; timelength=10; while [ $time -le $timelength ]; do sleep $step; echo -n "."; time=$((time+step)); done; echo -RO_TENANT_ID=`lxc exec RO -- openmano tenant-create osm |awk '{print $1}'` - -echo -e " Configuring VCA" -JUJU_PASSWD=`date +%s | sha256sum | base64 | head -c 32` -echo -e "$JUJU_PASSWD\n$JUJU_PASSWD" | lxc exec VCA -- juju change-user-password -JUJU_CONTROLLER_IP=`lxc exec VCA -- lxc list -c 4 |grep eth0 |awk '{print $2}'` - -echo -e " Configuring SO" -sudo route add -host $JUJU_CONTROLLER_IP gw $VCA_CONTAINER_IP -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=18; timelength=180; while [ $time -le $timelength ]; do sleep $step; echo -n "."; time=$((time+step)); done; echo - -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'" } } ]}' - -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" }' - - -echo -e "\nDONE" - - diff --git a/installers/install_from_source.sh b/installers/install_from_source.sh new file mode 100755 index 00000000..ea1631d1 --- /dev/null +++ b/installers/install_from_source.sh @@ -0,0 +1,142 @@ +#!/bin/bash +# Copyright 2016 Telefónica Investigación y Desarrollo S.A.U. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +function usage(){ + echo -e "usage: $0 [OPTIONS]" + echo -e "Install OSM from source code" + echo -e " OPTIONS" + echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules" + echo -e " --develop: install OSM from source code using the master branch" + echo -e " --nat: install only NAT rules" + echo -e " -h / --help: print this help" +} + +UNINSTALL="" +DEVELOP="" +NAT="" +while getopts ":h-:" o; do + case "${o}" in + h) + usage && exit 0 + ;; + -) + [ "${OPTARG}" == "help" ] && usage && exit 0 + [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue + [ "${OPTARG}" == "uninstall" ] && UNINSTALL="y" && continue + [ "${OPTARG}" == "nat" ] && NAT="y" && continue + echo -e "Invalid option: '--$OPTARG'\n" >&2 + usage && exit 1 + ;; + \?) + echo -e "Invalid option: '-$OPTARG'\n" >&2 + usage && exit 1 + ;; + *) + usage && exit 1 + ;; + esac +done + +echo -e "\nCreating temporary dir for OSM installation" +TEMPDIR="$(mktemp -d -q --tmpdir "installosm.XXXXXX")" +trap 'rm -rf "$TEMPDIR"' EXIT + +echo -e "\nCloning devops repo temporarily" +git clone https://osm.etsi.org/gerrit/osm/devops.git $TEMPDIR +RC_CLONE=$? +OSM_DEVOPS=$TEMPDIR +OSM_JENKINS="$TEMPDIR/jenkins" +. $OSM_JENKINS/common/all_funcs + +if [ -n "$UNINSTALL" ]; then + if [ $RC_CLONE ]; then + $OSM_DEVOPS/jenkins/host/clean_container RO + $OSM_DEVOPS/jenkins/host/clean_container VCA + $OSM_DEVOPS/jenkins/host/clean_container SO + #$OSM_DEVOPS/jenkins/host/clean_container UI + else + lxc stop RO && lxc delete RO + lxc stop VCA && lxc delete VCA + lxc stop SO-ub && lxc delete SO-ub + fi + exit 0 +fi + +if [ -n "$NAT" ]; then + sudo $OSM_DEVOPS/installers/nat_osm + exit 0 +fi + +#Installation starts here +wget -q -O- https://osm-download.etsi.org/ftp/osm-1.0-one/README.txt &> /dev/null + +echo -e "\nInstalling required packages: git, wget, curl, tar" +echo -e " Required root privileges" +sudo apt install -y git wget curl tar + +echo -e "\nCreating the containers and building ..." +COMMIT_ID="tags/v1.0" +#COMMIT_ID="master" +[ -n "$DEVELOP" ] && COMMIT_ID="master" +$OSM_DEVOPS/jenkins/host/start_build RO checkout $COMMIT_ID +$OSM_DEVOPS/jenkins/host/start_build VCA +$OSM_DEVOPS/jenkins/host/start_build SO checkout $COMMIT_ID +$OSM_DEVOPS/jenkins/host/start_build UI checkout $COMMIT_ID + +#Configure NAT rules +echo -e "\nConfiguring NAT rules" +echo -e " Required root privileges" +sudo $OSM_DEVOPS/installers/nat_osm + +#Configure components +echo -e "\nConfiguring components" +. $OSM_DEVOPS/installers/export_ips + +echo -e " Configuring RO" +lxc exec RO -- sed -i -e "s/^\#\?log_socket_host:.*/log_socket_host: $SO_CONTAINER_IP/g" /opt/openmano/openmanod.cfg +lxc exec RO -- service openmano restart +time=0; step=1; timelength=10; while [ $time -le $timelength ]; do sleep $step; echo -n "."; time=$((time+step)); done; echo +RO_TENANT_ID=`lxc exec RO -- openmano tenant-create osm |awk '{print $1}'` + +echo -e " Configuring VCA" +JUJU_PASSWD=`date +%s | sha256sum | base64 | head -c 32` +echo -e "$JUJU_PASSWD\n$JUJU_PASSWD" | lxc exec VCA -- juju change-user-password +JUJU_CONTROLLER_IP=`lxc exec VCA -- lxc list -c 4 |grep eth0 |awk '{print $2}'` + +echo -e " Configuring SO" +sudo route add -host $JUJU_CONTROLLER_IP gw $VCA_CONTAINER_IP +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=18; timelength=180; while [ $time -le $timelength ]; do sleep $step; echo -n "."; time=$((time+step)); done; echo + +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'" } } ]}' + +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" }' + + +echo -e "\nDONE" + +