From 2cae592aefec883743bd2df7b58127883c8eff45 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 4 Oct 2018 01:53:45 -0700 Subject: Set 30080 port for Kubernetes Dashboard 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 Issue-ID: MULTICLOUD-301 --- vagrant/installer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vagrant/installer.sh b/vagrant/installer.sh index dd5b77b6..f3f11a77 100755 --- a/vagrant/installer.sh +++ b/vagrant/installer.sh @@ -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 -- cgit 1.2.3-korg