diff options
author | stark, steven <steven.stark@att.com> | 2020-04-21 15:28:13 -0700 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2020-04-23 12:28:48 +0000 |
commit | d5d74c7ce5f071d2e0417cc3b4b86073fd9b41cc (patch) | |
tree | 7f58554dcf13054bc8a6f35d90aac68cd3a480b5 /deployment/aks/cloud.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/cloud.sh')
-rwxr-xr-x | deployment/aks/cloud.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/deployment/aks/cloud.sh b/deployment/aks/cloud.sh index b99865145..a1cbfe888 100755 --- a/deployment/aks/cloud.sh +++ b/deployment/aks/cloud.sh @@ -159,6 +159,7 @@ OOM_BRANCH = "$OOM_BRANCH" CHART_VERSION = "$CHART_VERSION" OOM_OVERRIDES = "$OOM_OVERRIDES" DOCKER_REPOSITORY = "$DOCKER_REPOSITORY" +MASTER_PASSWORD = "$MASTER_PASSWORD" EOF @@ -347,7 +348,8 @@ $DIR/util/create_integration_override.sh "$BUILD_DIR" \ "$DOCKER_REPOSITORY" \ "$NFS_PRIVATE_IP" \ "$AKS_PUBLIC_IP_ADDRESS" \ - "$BUILD_DIR/kubeconfig" + "$BUILD_DIR/kubeconfig" \ + "$MASTER_PASSWORD" fi @@ -361,7 +363,8 @@ $DIR/create_onap.sh "$BUILD" \ "$OOM_BRANCH" \ "$BUILD_DIR" \ "$CHART_VERSION" \ - "$OOM_OVERRIDES" + "$OOM_OVERRIDES" \ + "$MASTER_PASSWORD" fi |