blob: 3f1af4de8a34e3783ceb4b9c9fc5d63f765a1f88 [file] [log] [blame]
Borislav Glozman5197e2e2017-07-24 10:45:28 +03001#!/bin/bash
2
HuabingZhaoed957a42018-03-12 03:29:20 -04003# Deploying MSB first so the started ONAP services can be registered to MSB
4HELM_APPS=('consul' 'msb' 'mso' 'message-router' 'sdnc' 'vid' 'robot' 'portal' 'policy' 'appc' 'aai' 'sdc' 'dcaegen2' 'log' 'cli' 'multicloud' 'clamp' 'vnfsdk' 'uui' 'aaf' 'vfc' 'esr')
Borislav Glozman5197e2e2017-07-24 10:45:28 +03005ONAP_DOCKER_REGISTRY=${ONAP_DOCKER_REGISTRY:-nexus3.onap.org:10001}
6ONAP_DOCKER_USER=${ONAP_DOCKER_USER:-docker}
7ONAP_DOCKER_PASS=${ONAP_DOCKER_PASS:-docker}
8ONAP_DOCKER_MAIL=${ONAP_DOCKER_MAIL:-$USERNAME@$USERDOMAIN}
Mandeep Khindade8d47e2017-09-21 18:22:10 +00009# Openstack key pair private key file location required to enable dcaegen2 installer CRUD operations in your Openstack
10# Ensure you set the name of your keypair in the dcae-parameters.yaml entry "keypair: "dcae-g2"
11# example: export OPENSTACK_PRIVATE_KEY_PATH=/home/user/Downloads/dcae-g2.pem
12OPENSTACK_PRIVATE_KEY_PATH=${OPENSTACK_PRIVATE_KEY_PATH:-~/.ssh/onap_rsa}
13# dcaegen2 bootstrap configuration input yaml file. Start from the sample, and set your environments real values:
14# example: export DCAEGEN2_CONFIG_INPUT_FILE_PATH=/tmp/dcae-parameters.yaml
Dusan Rozman75c07c42017-09-25 10:28:28 -040015DCAEGEN2_CONFIG_INPUT_FILE_PATH=${DCAEGEN2_CONFIG_INPUT_FILE_PATH:-../dcaegen2/dcae-parameters-sample.yaml}