add kubectl run deploy pod into specific namespace (#15825)

* add kubectl run deploy pod into specific namespace

* add my namespace
This commit is contained in:
Melony QIN 2019-09-27 22:04:42 +01:00 committed by Kubernetes Prow Robot
parent 0d32568251
commit 62b279afbb
1 changed files with 5 additions and 0 deletions

View File

@ -290,6 +290,11 @@ 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 -l name=myLabel --all-containers # stream all pods logs with label name=myLabel (stdout)
kubectl run -i --tty busybox --image=busybox -- sh # Run pod as interactive shell
kubectl run nginx --image=nginx --restart=Never -n
mynamespace # Run pod nginx in a specific namespace
kubectl run nginx --image=nginx --restart=Never # Run pod nginx and write its spec into a file called pod.yaml
--dry-run -o yaml > pod.yaml
kubectl attach my-pod -i # Attach to Running Container
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)