Difference between revisions of "Kubectl port-forward"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 25: Line 25:
 
* [[Port forwarding]]
 
* [[Port forwarding]]
 
* [[Kubernetes services]]
 
* [[Kubernetes services]]
 +
* <code>[[helm install]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 23:53, 22 May 2022

This article is a Draft. Help us to complete it.

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)


Related

See also

Advertising: