CodeSnippet.Cn
代码片段
Csharp
架构设计
.NetCore
西班牙语
kubernetes
MySql
Redis
Algorithm
Ubuntu
Linux
Other
.NetMvc
VisualStudio
Git
pm
Python
WPF
java
Plug-In
分布式
CSS
微服务架构
JavaScript
DataStructure
Shared
K8S常用命令,持续更新...
0
kubernetes
小笨蛋
发布于:2021年10月14日
更新于:2021年10月17日
149
#custom-toc-container
### 删除某个pod 查看已部署的服务 ```shell #语法:kubectl get deployment -n [命名空间] kubectl get deployment -n kubernetes-dashboard ``` ![图片alt](/uploads/images/20211014/215308-1c45f430f406405d9dc31ddceb5ee176.png ''图片title'') 选择要删除的pod执行如下命令即可 ```shell #语法 kubectl delete deployment [pod名称] kubectl delete deployment dashboard-metrics-scraper ``` ------------ ### 删除namespace ```shell #语法 kubectl delete namespaces [命名空间] kubectl delete namespaces kubernetes-dashboard ``` ------------ ### 显示Pod资源的详细信息 ```shell kubectl describe pod [pod名称] -n [命名空间] ``` ------------ ### 创建命名空间 ```shell #语法 kubectl create namespace [命名空间] kubectl create namespace my-namespace ``` ------------ ### 进入某个pod ```shell kubectl exec -it [pod名称] -n [命名空间] bash ``` ------------ ### 以yaml方式显示pod信息 ```shell #语法 kubectl get [pod名称] -n [命名空间] -o yaml kubectl get pod web-api-vendor-deployment-789577c969-njl6k -n mokkaya-backend-test -o yaml ``` ------------ ### 以json方式显示pod信息 ```shell #语法 kubectl get [pod名称] -n [命名空间] -o json kubectl get pod web-api-vendor-deployment-789577c969-njl6k -n mokkaya-backend-test -o json ``` ------------ ### 查看pod在哪个node上 ```shell #语法 kubectl get [pod名称] -n [命名空间] -o wide kubectl get pod web-api-vendor-deployment-789577c969-njl6k -n mokkaya-backend-test -o wide ``` ------------ ### 查看命名空间 ```shell kubectl get namespace # or kubectl get ns #使用sls过滤 kubectl get ns | sls production ``` ------------ ### 获取所有ingress ```shell #语法 kubectl get ingress -n [命名空间] kubectl get ingress -n mokkaya-backend-test ``` ------------ ### 查看ingress的IP及详细信息 ```shell kubectl get ingress -A ``` ------------ ### pod健康状态检查 ```shell kubectl get cs ```
这里⇓感觉得写点什么,要不显得有点空,但还没想好写什么...
返回顶部
About
京ICP备13038605号
© 代码片段 2024