From 2b048ca69a0fb3b8a76746a1d6cb8cf5075a73c5 Mon Sep 17 00:00:00 2001 From: Marco Platania Date: Thu, 21 Sep 2017 18:00:24 -0400 Subject: Add OPEN-O VM to Heat template - Add OPEN-O VM with MSB, Multi-VIM, VNFSDK, VFC, UUI - Add branch name per component - Add docker version number per component - Add xxlarge flavor to Heat for OPEN-O VM - Add MSB, Multi-VIM, VNFSDK, VFC, UUI to DNS config - Rename MSO to SO (wherever possible) Change-Id: Ie64563486212b4589b190e5c52d6524f9ca22850 Issue-ID: INT-213 Signed-off-by: Marco Platania --- boot/mso_vm_init.sh | 101 ---------------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 boot/mso_vm_init.sh (limited to 'boot/mso_vm_init.sh') diff --git a/boot/mso_vm_init.sh b/boot/mso_vm_init.sh deleted file mode 100644 index e39f6b06..00000000 --- a/boot/mso_vm_init.sh +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/bash - -NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt) -NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt) -NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt) -DMAAP_TOPIC=$(cat /opt/config/dmaap_topic.txt) -OPENSTACK_USERNAME=$(cat /opt/config/openstack_username.txt) -OPENSTACK_APIKEY=$(cat /opt/config/api_key.txt) -export MSO_DOCKER_IMAGE_VERSION=$(cat /opt/config/docker_version.txt) -export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1) - -# Deployments in OpenStack require a keystone file -if [ -e /opt/config/keystone.txt ] -then - KEYSTONE_URL=$(cat /opt/config/keystone.txt) - OPENSTACK_REGION=$(cat /opt/config/openstack_region.txt) - DCP_CLLI="DEFAULT_KEYSTONE" - AUTH_TYPE="USERNAME_PASSWORD" - read -d '' CLOUD_SITES <<-EOF - "cloud_sites": [{ - "aic_version": "2.5", - "id": "$OPENSTACK_REGION", - "identity_service_id": "$DCP_CLLI", - "lcp_clli": "$OPENSTACK_REGION", - "region_id": "$OPENSTACK_REGION" - }], -EOF -else - KEYSTONE_URL="https://identity.api.rackspacecloud.com/v2.0" - DCP_CLLI="RAX_KEYSTONE" - AUTH_TYPE="RACKSPACE_APIKEY" - read -d '' CLOUD_SITES <<-EOF - "cloud_sites": [ - { - "id": "Dallas", - "aic_version": "2.5", - "lcp_clli": "DFW", - "region_id": "DFW", - "identity_service_id": "$DCP_CLLI" - }, - - { - "id": "Northern Virginia", - "aic_version": "2.5", - "lcp_clli": "IAD", - "region_id": "IAD", - "identity_service_id": "$DCP_CLLI" - }, - - { - "id": "Chicago", - "aic_version": "2.5", - "lcp_clli": "ORD", - "region_id": "ORD", - "identity_service_id": "$DCP_CLLI" - } - ], -EOF -fi - -# Update the MSO configuration file. -read -d '' MSO_CONFIG_UPDATES <<-EOF -{ -"default_attributes": - { - "asdc-connections": - { - "asdc-controller1": - { - "environmentName": "$DMAAP_TOPIC" - } - }, - "mso-po-adapter-config": - { - $CLOUD_SITES - "identity_services": - [ - {"dcp_clli": "$DCP_CLLI", - "identity_url": "$KEYSTONE_URL", - "mso_id": "$OPENSTACK_USERNAME", - "mso_pass": "$OPENSTACK_APIKEY", - "admin_tenant": "service", - "member_role": "admin", - "tenant_metadata": "true", - "identity_server_type": "KEYSTONE", - "identity_authentication_type": "$AUTH_TYPE" - - } - ] - } - } -} -EOF -export MSO_CONFIG_UPDATES - -# Deploy the environment -cd /opt/test_lab -git pull -chmod +x deploy.sh -#This script takes in input 2 nexus repos (the first one for the MSO image, the second one for mariadb) -./deploy.sh $NEXUS_DOCKER_REPO $NEXUS_USERNAME $NEXUS_PASSWD $NEXUS_DOCKER_REPO $NEXUS_USERNAME $NEXUS_PASSWD -- cgit 1.2.3-korg