diff options
author | Fatih Degirmenci <fdegir@gmail.com> | 2018-02-28 10:57:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-28 10:57:52 +0000 |
commit | 587420761ffb3ea73ed6f9e791d068e7d3d16d9f (patch) | |
tree | 4be725afcd2ab3dc3a18fc23390972d567336133 /jjb | |
parent | 5fe86177c5ca9b418fd0efb308e2ec3d4fc11a83 (diff) | |
parent | 23bf5c7e8ce3f7212abc5d9c628284c1f092a0d5 (diff) |
Merge "[Functest] Run k8s tests on Joid"
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/functest/functest-k8.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/jjb/functest/functest-k8.sh b/jjb/functest/functest-k8.sh index 888aded81..7c5308d5f 100755 --- a/jjb/functest/functest-k8.sh +++ b/jjb/functest/functest-k8.sh @@ -18,6 +18,9 @@ if [[ ${INSTALLER_TYPE} == 'compass' ]]; then echo "export KUBE_MASTER_URL=$KUBE_MASTER_URL" >> $rc_file KUBE_MASTER_IP=$(echo $KUBE_MASTER_URL|awk -F'https://|:[0-9]+' '$0=$2') echo "export KUBE_MASTER_IP=$KUBE_MASTER_IP" >> $rc_file +elif [[ ${INSTALLER_TYPE} == 'joid' && ${BRANCH} == 'master' ]]; then + admin_conf_file_vol="-v ${HOME}/joid_config/config:/root/joid_config/config" + rc_file=${HOME}/joid_config/k8config else echo "Not supported by other installers yet" exit 1 |