summaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/pom.xml
blob: b8209b64eefec092de4e3260434ef798bdb925e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<name>openecomp-sdc-api</name>
	<artifactId>openecomp-sdc-api</artifactId>
	<packaging>pom</packaging>

	<url>http://maven.apache.org</url>

	<parent>
		<groupId>org.openecomp.sdc</groupId>
		<artifactId>openecomp-sdc</artifactId>
		<version>1.3.0-SNAPSHOT</version>
		<relativePath>..</relativePath>
	</parent>

	<modules>
		<module>/openecomp-sdc-rest-webapp</module>
	</modules>

</project>
lass="o">=$(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) export OPENO_IP=$(cat /opt/config/openo_ip.txt) # 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 SO 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/v2.0", "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" } ] }, "mso-bpmn-urn-config": { "msoDefaultCloudOwnerId": "CloudOwner" } } } 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 SO image, the second one for mariadb) ./deploy.sh $NEXUS_DOCKER_REPO $NEXUS_USERNAME $NEXUS_PASSWD $NEXUS_DOCKER_REPO $NEXUS_USERNAME $NEXUS_PASSWD