taint Update the taints on one or more nodes Troubleshooting and Debugging Commands: describe Show details of a specific resource or group of resources logs Print the logsfora containerina pod attach Attach to a running container exec Execute a commandina container port-forward Forward one or more...
# 在已存在的容器中执行命令(只有一个容器的情况下) $ kubectlexec my-pod--ls/ # 在已存在的容器中执行命令(pod 中有多个容器的情况下) $ kubectlexec my-pod-cmy-container--ls/ # 显示指定 pod 和容器的指标度量 $ kubectltoppod POD_NAME--containers 与节点和集群交互 # 标记 my-node 不可调度 $...
# 在已存在的容器中执行命令(只有一个容器的情况下) $ kubectl exec my-pod -- ls / # 在已存在的容器中执行命令(pod 中有多个容器的情况下) $ kubectl exec my-pod -c my-container -- ls / # 显示指定 pod 和容器的指标度量 $ kubectl top pod POD_NAME --containers 1. 2. 3. 4. 5. 6....
# 在已存在的容器中执行命令(只有一个容器的情况下) $ kubectl exec my-pod -- ls / # 在已存在的容器中执行命令(pod 中有多个容器的情况下) $ kubectl exec my-pod -c my-container -- ls / # 显示指定 pod 和容器的指标度量 $ kubectl top pod POD_NAME --containers 与节点和集群交互 # 标记 ...
exec Execute a command in a container port-forward Forward one or more local ports to a pod proxy Run a proxy to the Kubernetes API server cp Copy files and directories to and from containers. auth Inspect authorization Advanced Commands: ...
kubectl exec -it --namespace=tools mongo-pod -- bash -c "mongo" You forgot a space between "--" and "bash". To execute multiple commands you may want: to create a script and mount it as a volume in your pod and execute it to launch a side container with the script and run...
一、Basic Commands (Beginner)基本命令(初学者) 1.kubectl create命令 http://docs.kubernetes.org.cn/490.html 功能:通过配置文件名或stdin创建一个集群资源对象。支持JSON和YAML格式的文件。 语法:kubectl create -f object.yaml/json 资源对象类型包括: ...
kubectl port-forward my-pod 5000:6000# 在已存在的容器中执行命令(只有一个容器的情况下)$ kubectl exec my-pod -- ls /# 在已存在的容器中执行命令(pod 中有多个容器的情况下)$ kubectl exec my-pod -c my-container -- ls /# 显示指定 pod ...
设置kubectl命令交互的 kubernetes 集群并修改配置信息。参阅 使用 kubeconfig 文件进行跨集群验证 获取关于配置文件的详细信息。 代码语言:javascript 复制 $ kubectl config view # 显示合并后的 kubeconfig 配置 # 同时使用多个 kubeconfig 文件并查看合并后的配置 ...
One of the most useful debugging commands iskubectl exec, which allows you to run commands inside a suspicious pod. The drawback of this command is that the program you want to execute must exist inside the pod. Here is a typical example to start a shell to allow you to explore what’...