Difference between revisions of "Kubectl exec"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
Tags: Mobile web edit, Mobile edit |
||
Line 48: | Line 48: | ||
* <code>[[kubectl attach]]</code> | * <code>[[kubectl attach]]</code> | ||
* <code>[[sh]], [[ash]], [[bash]]</code> | * <code>[[sh]], [[ash]], [[bash]]</code> | ||
− | * <code>[[kubectl run]]</code> | + | * <code>[[kubectl run]]</code>: <code>[[kubectl run ubuntu --image=ubuntu]]</code> |
* [[Amazon ECS Exec Checker]] | * [[Amazon ECS Exec Checker]] | ||
Revision as of 07:02, 28 March 2023
kubectl exec kubectl exec --stdin --tty or kubectl exec -it kubectl exec --help
kubectl exec -it ubuntu -- bash Error from server (NotFound): pods "ubuntu" not found
kubectl exec --tty -i redis-client --namespace default -- bash
https://kubernetes.io/docs/tasks/debug/debug-application/get-shell-running-container/
kubectl exec -it my-redis-pod -- /bin/bash
(Get a shell to a running container (https://kubernetes.io/docs/tasks/debug-application-cluster/get-shell-running-container/))
kubectl -n your_namespace exec your-pod-name1 -- bash
kubectl exec -it -c your-pod-name-3 bash error: you must specify at least one command for the container
Error: unable to upgrade connection: container not found
Error from server (NotFound): pods "your-pod-name" not found
kubectl exec my-redis-pod -c my-redis-container /sbin/killall5 kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead. command terminated with exit code 2
kubectl exec my-redis-pod -c my-redis-container /sbin/killall kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead. OCI runtime exec failed: exec failed: container_linux.go:367: starting container process caused: exec: "/sbin/killall": stat /sbin/killall: no such file or directory: unknown command terminated with exit code 126
kubectl exec envar-demo -- printenv
kubectl exec -it your-container-name -- bash Defaulted container "yourapp-rabbitmq" out of: yourapp-rabbitmq, yourapp-rabbitmq-metrics
Related
docker exec
podman exec
crictl exec
kubectl logs
kubectl get pods
kubectl attach
sh, ash, bash
kubectl run
:kubectl run ubuntu --image=ubuntu
- Amazon ECS Exec Checker
Activities
See also
kubectl exec, kubectl exec -it
kubectl
: [cp | config | create
|delete
|edit | explain |
apply
|exec
|get
|set
|drain | uncordon | rolling-update
|rollout
|logs
|run
|auth
|label | annotate
|version
|top
|diff
|debug
|replace
|describe
|port-forward | proxy
|scale
|rollout
|api-resources
| expose deployment | expose | patch | attach | get endpoints | ~/.kube/config | kubectl logs --help | kubectl --help, kubectl-convert, kubectl autoscale, kubectl.kubernetes.io
Advertising: