Merge pull request #6741 from tengqm/fix-1785
Fix port-foward description in cheatsheet
This commit is contained in:
commit
ec64856598
|
|
@ -215,7 +215,7 @@ $ kubectl logs -f my-pod # stream pod logs (stdout)
|
||||||
$ kubectl logs -f my-pod -c my-container # stream pod container logs (stdout, multi-container case)
|
$ kubectl logs -f my-pod -c my-container # stream pod container logs (stdout, multi-container case)
|
||||||
$ kubectl run -i --tty busybox --image=busybox -- sh # Run pod as interactive shell
|
$ kubectl run -i --tty busybox --image=busybox -- sh # Run pod as interactive shell
|
||||||
$ kubectl attach my-pod -i # Attach to Running Container
|
$ kubectl attach my-pod -i # Attach to Running Container
|
||||||
$ kubectl port-forward my-pod 5000:6000 # Forward port 6000 of Pod to your to 5000 on your local machine
|
$ kubectl port-forward my-pod 5000:6000 # Listen on port 5000 on the local machine and forward to port 6000 on my-pod
|
||||||
$ kubectl exec my-pod -- ls / # Run command in existing pod (1 container case)
|
$ kubectl exec my-pod -- ls / # Run command in existing pod (1 container case)
|
||||||
$ kubectl exec my-pod -c my-container -- ls / # Run command in existing pod (multi-container case)
|
$ kubectl exec my-pod -c my-container -- ls / # Run command in existing pod (multi-container case)
|
||||||
$ kubectl top pod POD_NAME --containers # Show metrics for a given pod and its containers
|
$ kubectl top pod POD_NAME --containers # Show metrics for a given pod and its containers
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue