diff options
author | 2020-04-21 15:28:13 -0700 | |
---|---|---|
committer | 2020-04-23 12:28:48 +0000 | |
commit | d5d74c7ce5f071d2e0417cc3b4b86073fd9b41cc (patch) | |
tree | 7f58554dcf13054bc8a6f35d90aac68cd3a480b5 /deployment/aks/create_onap.sh | |
parent | 906480b1b28446660b4a65f249ddf6722fc8b7e6 (diff) |
[INT] updating aks install w/ master pass
- Also updating openstack cli to py3 to fix import issues
Issue-ID: INT-1557
Signed-off-by: stark, steven <steven.stark@att.com>
Change-Id: I99cbc68614e0fcc8fd0572fd7c44c7cd431b215b
Diffstat (limited to 'deployment/aks/create_onap.sh')
-rwxr-xr-x | deployment/aks/create_onap.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/deployment/aks/create_onap.sh b/deployment/aks/create_onap.sh index 9a494df2c..958874403 100755 --- a/deployment/aks/create_onap.sh +++ b/deployment/aks/create_onap.sh @@ -21,6 +21,7 @@ OOM_BRANCH=$3 BUILD_DIR=$4 CHART_VERSION=$5 OOM_OVERRIDES=$6 +MASTER_PASSWORD=$7 pushd . @@ -73,13 +74,13 @@ helm repo add stable "https://kubernetes-charts.storage.googleapis.com/" cp -R helm/plugins/ ~/.helm -make all +make all -e SKIP_LINT=TRUE if [ $? -ne 0 ]; then echo "Failed building helm charts, exiting..." exit 1 fi -make onap +make onap -e SKIP_LINT=TRUE if [ $? -ne 0 ]; then echo "Failed building helm charts, exiting..." exit 1 @@ -92,7 +93,7 @@ fi helm repo remove stable build_name=`echo "$BUILD_NAME" | tr '[:upper:]' '[:lower:]'` -helm deploy "$build_name" local/onap --version v"$CHART_VERSION" "$OOM_OVERRIDES" --namespace onap "$TEMPLATE_OVERRIDES" +helm deploy "$build_name" local/onap --version v"$CHART_VERSION" --set "global.masterPassword=$MASTER_PASSWORD" "$OOM_OVERRIDES" --namespace onap "$TEMPLATE_OVERRIDES" kubectl get pods --namespace onap |