Difference between revisions of "Kubectl port-forward"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 37: Line 37:
  
 
== See also ==
 
== See also ==
* {{kubectl}}
+
* {{kubectl port-forward}}
 
* {{Kubernetes services}}
 
* {{Kubernetes services}}
  
 
[[Category:Kubernetes]]
 
[[Category:Kubernetes]]

Revision as of 19:47, 14 June 2022

kubectl port-forward forward one or more local ports to a pod.

Examples

  • kubectl --namespace default port-forward $POD_NAME 3000
  • kubectl port-forward svc/argocd-server -n argocd 8080:443
export POD_NAME=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=grafana,app.kubernetes.io/instance=grafana" -o jsonpath="{.items[0].metadata.name}")
kubectl --namespace default port-forward $POD_NAME 3000
Forwarding from 127.0.0.1:3000 -> 3000
Forwarding from [::1]:3000 -> 3000
kubectl -n default port-forward $POD_NAME 8443:8443
Forwarding from 127.0.0.1:8443 -> 8443
Forwarding from [::1]:8443 -> 8443

Examples with errors

kubectl --namespace default port-forward $POD_NAME 3000
error: unable to forward port because pod is not running. Current status=Failed
kubectl --namespace default port-forward $POD_NAME 3000
error: unable to forward port because pod is not running. Current status=Pending
kubectl --namespace default port-forward $POD_NAME 3000
error: You must be logged in to the server (Unauthorized)
kubectl --namespace default port-forward $POD_NAME 3000
error: TYPE/NAME and list of ports are required for port-forward
See 'kubectl port-forward -h' for help and examples

Related

See also

Advertising: