summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xci/k8.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/ci/k8.sh b/ci/k8.sh
index 6bac446c..2b901d7e 100755
--- a/ci/k8.sh
+++ b/ci/k8.sh
@@ -5,12 +5,17 @@ opnfvfeature=$1
juju scp kubernetes-master/0:/home/ubuntu/config ~/joid_config/config
-configk8(){
-cat <<-EOF
export KUBECONFIG=~/joid_config/config
export KUBERNETES_PROVIDER=local
export KUBE_MASTER_IP=`juju status kubernetes-master --format=yaml | grep public-address | cut -d ":" -f 2 | head -1 | sed "s/^[ \t]*//g"`
export KUBE_MASTER_URL=http://${KUBE_MASTER_IP}:6443
+
+configk8(){
+cat <<-EOF
+export KUBECONFIG=${KUBECONFIG}
+export KUBERNETES_PROVIDER=${KUBERNETES_PROVIDER}
+export KUBE_MASTER_IP=${KUBE_MASTER_IP}
+export KUBE_MASTER_URL=${KUBE_MASTER_URL}
EOF
}