Answers for "how to expose port in kubernetes"

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 port-forward -n kubernetes-dashboard service/kubernetes-dashboard 10443:443 --address 0.0.0.0

#In your case the namespace is different so:
kubectl port-forward -n kube-system service/kubernetes-dashboard 10443:443 --address 0.0.0.0
Posted by: Guest on January-22-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language