X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=installers%2Finstall_osm.sh;h=e475c3fd3f76fa886aa8b2eacf9d5ff672fbc707;hb=397a65dcb0d6b9afb9165f5f13f0f717d449c374;hp=1e13852c819e96b657a24e50f11a9ad49cc33fca;hpb=0d5676042e48358eafd714951e83971c1f0b1365;p=osm%2Fdevops.git diff --git a/installers/install_osm.sh b/installers/install_osm.sh index 1e13852c..e475c3fd 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -209,13 +209,22 @@ function configure(){ --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" + #R1/R2 config line + #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" }') + result=$(curl -k --request PUT \ - --url https://$SO_CONTAINER_IP:8008/api/config/resource-orchestrator \ + --url https://$SO_CONTAINER_IP:8008/api/config/project/default/ro-account/account \ --header 'accept: application/vnd.yang.data+json' \ --header 'authorization: Basic YWRtaW46YWRtaW4=' \ - --header 'cache-control: no-cache' \ + --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 '{"rw-ro-account:account": [ { "openmano": { "host": "'$RO_CONTAINER_IP'", "port": "9090", "tenant-id": "'$RO_TENANT_ID'"}, "name": "osmopenmano", "ro-account-type": "openmano" }]}') [[ $result =~ .*success.* ]] || FATAL "Failed resource-orchestrator configuration: $result" } @@ -369,6 +378,8 @@ lxd --version &>/dev/null || FATAL "lxd not present, exiting." wget -q -O- https://osm-download.etsi.org/ftp/osm-2.0-two/README.txt &> /dev/null +# use local devops for containers +export OSM_USE_LOCAL_DEVOPS=true if [ -z "$INSTALL_FROM_SOURCE" ]; then echo -e "\nCreating the containers and installing from binaries ..." $OSM_DEVOPS/jenkins/host/install RO $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "RO install failed"