From: Victor Morales Date: Thu, 4 Oct 2018 08:53:45 +0000 (-0700) Subject: Set 30080 port for Kubernetes Dashboard X-Git-Tag: 3.0.0-ONAP~22^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=2cae592aefec883743bd2df7b58127883c8eff45;p=multicloud%2Fk8s.git 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 --- 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