如果设置了--resource-version,则更新将使用此resource version,否则将使用原有的resource version。 支持的资源包括但不限于(大小写不限):pods (po)、services (svc)、 replicationcontrollers (rc)、nodes (no)、events (ev)、componentstatuses (cs)、 limitranges (limits)、persistentvolumes (pv)、persistentvolu...
kubectl delete pod nginx # Example: 删除名字为nginx的Pod kubectl delete RESOURCE --all # 删除某个资源的所有实例 Example: kubectl delete pod --all # 删除所有Pod kubectl delete -f FILENAME # 根据YAML配置文件删除资源 Example: kubectl delete -f nginx.yaml # 根据nginx.yaml配置文件删除资源 kubectl...
如果省略名称,则显示所有资源的详细信息,如“kubectl get pods”。 在对多个资源执行操作时,我们可以按类型和名称指定每个资源,或指定一个或多个文件 要按类型和名称指定资源: 如果资源类型相同,则对资源进行分组 kubectl get pod example-pod1 example-pod2 1. 分别指定多种资源类型 kubectl get pod/example-pod...
Options:--all=false: Delete all resources, including uninitialized ones, in the namespace of the specified resource types.-A, --all-namespaces=false: If present, list the requested object(s) across all namespaces. Namespace in currentcontext is ignored even if specified with --namespace.--ca...
get 显示一个或更多 resources edit 在服务器上编辑一个资源 #(直接编辑现在运行中的资源) delete Delete resources by filenames, stdin, resources and names, or by resources and label selector Deploy Commands: #(业务部署时用的指令) rollout Manage the rollout of a resource #(回滚到上一次) ...
kubectlgetrc/web service/frontend pods/web-pod-13je7 # 获取所有resource kubectlgetall (3)kubectl edit 使用默认编辑器 编辑服务器上定义的资源。 使用命令行工具获取的任何资源都可以使用edit命令编辑。edit命令会打开使用KUBE_EDITOR,GIT_EDITOR 或者EDITOR环境变量定义的编辑器,可以同时编辑多个资源,但所编辑过...
kubectl get -o template pod/web-pod-13je7 --template={{.status.phase}} # List resource information in custom columns. # 列出自定义列中的资源信息。 kubectl get pod test-pod -o custom-columns=CONTAINER:.spec.containers[0].name,IMAGE:.spec.containers[0].image ...
Ref:https://github.com/kubernetes/community/blob/master/contributors/devel/kubectl-conventions.md#rules-for-extending-special-resource-alias---all We may want to explainallin the help text. 111remainingitems Load more qgeffard commentedon Aug 9, 2021 ...
Kubernetes 彻底改变了容器编排,简化了应用程序的管理和扩展。然而,与任何复杂系统一样,Kubernetes 集群也会遇到问题,需要及时解决才能保持最佳性能和可...
... install a CRD that defines a `foos` resource in the `example.com` API group ... # fetch to ensure discovery data including the new custom resource is cached kubectl get foos.example.com # refetch and observe discovery data is invalidated kubectl get foos.example.com --v=6 I1109 ...