Use "kubectl <command> --help" for more information about a given command. Use "kubectl options" for a list of global command-line options (applies to all commands). 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 获取修改模板 [root@master ~]# kubec...
kubectl [command] [type] [name] [flags] **comand**:指定要对资源执行的操作,例如create、get、delete **type**:指定资源类型,比如deployment、pod、service **name**:指定资源的名称,名称大小写敏感 **flags**:指定额外的可选参数 1. 2. 3. 4. 5. 6. 7. 8. 9. 输出示例 #进入POD里面输入 pod...
# kubectl exec -it [pod name] -c [container name] -n [namespace] [command] (command 可以是 bash 这种直接登录的,也可以直接执行远程命令) [root@master ~]# kubectl exec -it cloud-bmp-7d688998f8-qprvw -c cloud-bmp -n cos bash kubectl exec [POD] [COMMAND] is DEPRECATED and will be ...
kubectl delete pod,service baz foo # 删除名字为baz或foo的pod和service kubectl delete pods,services -l name=myLabel # -l 参数可以删除包含指定label的资源对象 kubectl delete pod foo --grace-period=0 --force # 强制删除一个pod,在各种原因pod一直terminate不掉的时候很有用 查看资源状态 get 最常用...
10 kubernetes: Call command in another containers which are in same pod 1 Execute command inside kubernetes pod (bash script) 9 How to execute a 'command with arguments' on a container of 'multi-container pod'? 0 Running multiple kubectl commands in a bash script 1 H...
$ kubectl [command] [TYPE] [NAME] [flags] comand:指定要对资源执行的操作,例如create、get、describe和delete TYPE:指定资源类型,资源类型是大小学敏感的,开发者能够以单数、复数和缩略的形式。例如: 代码语言:javascript 复制 $ kubectl get pod pod1 $ kubectl get pods pod1 $ kubectl get po pod1 NAME...
kubectl run <deployname> --image=busybox --command -- ping example.com set 在对象上设置特定功能。 例如: 滚动更新一个deployment的容器镜像改为1.0版本: kubectl set image deployment/<deployname> <containername>=<containername>:1.0 edit edit提供了另一种更新resource源的操作。
kubectl [command] [TYPE] [NAME] [flags] [options] Use "kubectl <command> --help" formore information about a given command. Use "kubectl options" for a list of global command-line options (applies to all commands). command:指定要对资源执行的操作,如create、get、describe和delete等。
If you’ve created a deployment yaml file and would like to validate the syntax, use the command: kubectl create --dry-run --validate -f <file>.yaml Example: $ kubectl create --dry-run=client --validate -f hello-world.yml pod/hello-world created (dry run) ...
describe 显示一个指定 resource 或者 group 的 resources 详情 logs 输出容器在 pod 中的日志 attach Attach 到一个运行中的 container exec 在一个 container 中执行一个命令 port-forward Forward one or more local ports to a pod proxy 运行一个 proxy 到 Kubernetes API server cp 复制 files 和 directori...