diff options
author | stark, steven <steven.stark@att.com> | 2020-05-04 09:03:09 -0700 |
---|---|---|
committer | stark, steven <steven.stark@att.com> | 2020-05-04 09:11:18 -0700 |
commit | 2e4cee67a18ed93d3f042b3f064db28374081d9e (patch) | |
tree | 8b15420ad27a480ba7b7977c9d19c0782a3e35ea /ovp_testsuite/instantiate-k8s.sh | |
parent | 647da36b8da91d085e5d0f4c5c8427430ef496b0 (diff) |
[VVP] fixes for vvp test-engine6.0.0-ONAPfrankfurt
update license in setup.py.
update config.yaml to use same user, now that SDC has been updated.
add logic for OS X /tmp directory
Issue-ID: VVP-417
Signed-off-by: stark, steven <steven.stark@att.com>
Change-Id: Ibeb48208da9e39614c1c41499c87b06943855e96
Diffstat (limited to 'ovp_testsuite/instantiate-k8s.sh')
-rwxr-xr-x | ovp_testsuite/instantiate-k8s.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ovp_testsuite/instantiate-k8s.sh b/ovp_testsuite/instantiate-k8s.sh index 99c19f6..681ae92 100755 --- a/ovp_testsuite/instantiate-k8s.sh +++ b/ovp_testsuite/instantiate-k8s.sh @@ -43,6 +43,10 @@ OUTPUT_DIR=/tmp/OVP-$RANDOM_STRING PODNAME="ovp-test" CONFIGMAP="ovp-test-suite-vol" +if [[ "$OSTYPE" == "darwin"* ]]; then + OUTPUT_DIR=/private/tmp/OVP-$RANDOM_STRING +fi + function tar_output() { OUTPUT=$1 set +x |