Set 30080 port for Kubernetes Dashboard 49/69849/1
authorVictor Morales <victor.morales@intel.com>
Thu, 4 Oct 2018 08:53:45 +0000 (01:53 -0700)
committerVictor Morales <victor.morales@intel.com>
Thu, 4 Oct 2018 08:55:34 +0000 (01:55 -0700)
This change allows to use a specific port for the Kubernetes
Dashboard which avoids to discover it later.

Change-Id: Ia2ae07678ec9b96d4644c6d2dc926527359b101f
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: MULTICLOUD-301

vagrant/installer.sh

index dd5b77b..f3f11a7 100755 (executable)
@@ -195,10 +195,11 @@ function _print_kubernetes_info {
         return
     fi
     # Expose Dashboard using NodePort
+    node_port=30080
     KUBE_EDITOR="sed -i \"s|type\: ClusterIP|type\: NodePort|g\"" kubectl -n kube-system edit service kubernetes-dashboard
+    KUBE_EDITOR="sed -i \"s|nodePort\: .*|nodePort\: $node_port|g\"" kubectl -n kube-system edit service kubernetes-dashboard
 
     master_ip=$(kubectl cluster-info | grep "Kubernetes master" | awk -F ":" '{print $2}')
-    node_port=$(kubectl get service -n kube-system | grep kubernetes-dashboard | awk '{print $5}' |awk -F "[:/]" '{print $2}')
 
     printf "Kubernetes Info\n===============\n" > $k8s_info_file
     echo "Dashboard URL: https:$master_ip:$node_port" >> $k8s_info_file