Answers for "kubernetes allow port 80"

0

how to get just the ports in kubernetes

kubectl describe service --all-namespaces | grep -i nodeport
Posted by: Guest on October-15-2021
0

kube dashboard expose access port

kubectl -n kube-system edit service kubernetes-dashboard
#change the .spec.type to NodePort


#You can reach by hitting the nodePort for the dashboard on the master

kubectl describe services kubernetes-dashboard --namespace=kube-system
#NodePort:       <unset> 30042/TCP
#http://MASTER:30042
Posted by: Guest on January-22-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language