blob: 6dfd948924a6f6e56dfc9540f43bad18f5a0141d [file] [log] [blame]
Borislav Glozman5197e2e2017-07-24 10:45:28 +03001#!/bin/bash
2
HuabingZhaoc9fdc4c2017-09-16 09:20:20 +08003# Deploying MSB first and kube2msb last will ensure all the ONAP services can be registered to MSB
Mandeep Khindade8d47e2017-09-21 18:22:10 +00004HELM_APPS=('consul' 'msb' 'mso' 'message-router' 'sdnc' 'vid' 'robot' 'portal' 'policy' 'appc' 'aai' 'sdc' 'dcaegen2' 'log' 'cli' 'multicloud' 'clamp' 'kube2msb')
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
15DCAEGEN2_CONFIG_INPUT_FILE_PATH=${DCAEGEN2_CONFIG_INPUT_FILE_PATH:-../dcaegen2/dcae-parameters-sample.yaml}