Difference between revisions of "Kubectl port-forward"

From wikieduonline
Jump to navigation Jump to search
Line 32: Line 32:
 
* [[Port forwarding]]
 
* [[Port forwarding]]
 
* [[Kubernetes services]]
 
* [[Kubernetes services]]
* <code>[[helm install]]</code>
 
 
* <code>[[kubectl proxy]]</code>
 
* <code>[[kubectl proxy]]</code>
  

Revision as of 17:42, 27 May 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
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
Forwarding from 127.0.0.1:3000 -> 3000
Forwarding from [::1]:3000 -> 3000
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: