Remove space in KUBE_MASTER_IP 91/52791/1
authorLinda Wang <wangwulin@huawei.com>
Wed, 28 Feb 2018 01:29:06 +0000 (01:29 +0000)
committerLinda Wang <wangwulin@huawei.com>
Wed, 28 Feb 2018 01:30:35 +0000 (01:30 +0000)
Change-Id: I779da2fd1f450abd7757484e7dc46e3bf5a6e816
Signed-off-by: Linda Wang <wangwulin@huawei.com>
ci/k8.sh

index e260733..6bac446 100755 (executable)
--- a/ci/k8.sh
+++ b/ci/k8.sh
@@ -9,7 +9,7 @@ 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`
+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
 EOF
 }