Borislav Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
HuabingZhao | ed957a4 | 2018-03-12 03:29:20 -0400 | [diff] [blame^] | 3 | # Deploying MSB first so the started ONAP services can be registered to MSB |
| 4 | HELM_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 Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 5 | ONAP_DOCKER_REGISTRY=${ONAP_DOCKER_REGISTRY:-nexus3.onap.org:10001} |
| 6 | ONAP_DOCKER_USER=${ONAP_DOCKER_USER:-docker} |
| 7 | ONAP_DOCKER_PASS=${ONAP_DOCKER_PASS:-docker} |
| 8 | ONAP_DOCKER_MAIL=${ONAP_DOCKER_MAIL:-$USERNAME@$USERDOMAIN} |
Mandeep Khinda | de8d47e | 2017-09-21 18:22:10 +0000 | [diff] [blame] | 9 | # 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 |
| 12 | OPENSTACK_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 Rozman | 75c07c4 | 2017-09-25 10:28:28 -0400 | [diff] [blame] | 15 | DCAEGEN2_CONFIG_INPUT_FILE_PATH=${DCAEGEN2_CONFIG_INPUT_FILE_PATH:-../dcaegen2/dcae-parameters-sample.yaml} |