查看资源信息

节点

资源名称: nodes, 缩写: no

1
2
3
4
5
6
7
8
9
10
11
12
$ kubectl get no          # 显示所有节点信息
# 显示所有节点的更多信息
$ kubectl get no -o wide
$ kubectl describe no # 显示节点详情
# 以yaml格式,显示节点详情
$ kubectl get no -o yaml
# 筛选指定标签的节点
$ kubectl get node --selector=[label_name]
# 输出 jsonpath 表达式定义的字段信息
$ kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}'
# 显示节点(CPU/内存/存储)使用情况
$ kubectl top node [node_name]

容器组

资源名称: pods, 缩写: po

1
2
3
4
5
6
7
8
9
10
11
$ kubectl get po              # 显示所有容器组信息
$ kubectl get po -o wide
$ kubectl describe po
$ kubectl get po --show-labels # 查看容器组的labels
$ kubectl get po -l app=nginx
$ kubectl get po -o yaml
$ kubectl get pod [pod_name] -o yaml --export
$ kubectl get pod [pod_name] -o yaml --export > nameoffile.yaml
# 以yaml格式导出容器组信息到yaml文件
$ kubectl get pods --field-selector status.phase=Running
# 使用字段选择器筛选出容器组信息

命名空间

资源名称: namespaces, 缩写: ns

1
2
3
$ kubectl get ns
$ kubectl get ns -o yaml
$ kubectl describe ns

无状态

资源名称: deployments, 缩写: deploy

1
2
3
4
$ kubectl get deploy
$ kubectl describe deploy
$ kubectl get deploy -o wide
$ kubectl get deploy -o yaml

服务

资源名称: services, 缩写: svc

1
2
3
4
5
$ kubectl get svc
$ kubectl describe svc
$ kubectl get svc -o wide
$ kubectl get svc -o yaml
$ kubectl get svc --show-labels

守护进程集

资源名称: daemonsets, 缩写: ds

1
2
3
4
$ kubectl get ds
$ kubectl describe ds --all-namespaces
$ kubectl describe ds [daemonset_name] -n [namespace_name]
$ kubectl get ds [ds_name] -n [ns_name] -o yaml

事件

资源名称: events, 缩写: ev

1
2
3
$ kubectl get events 
$ kubectl get events -n kube-system
$ kubectl get events -w

服务帐户

资源名称: serviceaccounts, 缩写: sa

1
2
3
4
$ kubectl get sa
$ kubectl get sa -o yaml
$ kubectl get serviceaccounts default -o yaml >./sa.yaml
$ kubectl replace serviceaccount default -f ./sa.yaml

日志

1
2
3
4
5
6
$ kubectl logs [pod_name]
$ kubectl logs --since=1h [pod_name]
$ kubectl logs --tail=20 [pod_name]
$ kubectl logs \
-f -c [container_name] [pod_name]
$ kubectl logs [pod_name] > pod.log

副本集

资源名称: replicasets, 缩写: rs

1
2
3
4
$ kubectl get rs
$ kubectl describe rs
$ kubectl get rs -o wide
$ kubectl get rs -o yaml

角色

1
$ kubectl get roles --all-namespaces

1
2
$ kubectl get roles \
--all-namespaces -o yaml

保密字典

1
2
3
$ kubectl get secrets
$ kubectl get secrets --all-namespaces
$ kubectl get secrets -o yaml

配置项

资源名称: configmaps, 缩写: cm

1
2
3
$ kubectl get cm
$ kubectl get cm --all-namespaces
$ kubectl get cm --all-namespaces -o yaml

路由

资源名称: ingresses, 缩写: ing

1
2
$ kubectl get ing
$ kubectl get ing --all-namespaces

持久卷

资源名称: persistentvolumes, 缩写: pv

1
2
$ kubectl get pv 
$ kubectl describe pv

持久卷声明

资源名称: persistentvolumeclaims, 缩写: pvc

1
2
$ kubectl get pvc
$ kubectl describe pvc

存储类

资源名称: storageclasses, 缩写: sc

1
2
$ kubectl get sc
$ kubectl get sc -o yaml

多个资源

1
2
3
4
$ kubectl get svc, po
$ kubectl get deploy, no
$ kubectl get all
$ kubectl get all --all-namespaces

变更资源属性

污点

1
$ kubectl taint [node_name] [taint_name]

标签

1
2
3
$ kubectl label nodes <node-name> <label-key>=<label-value>  #增加
$ kubectl label nodes <node-name> <label-key>- #删除
$ kubectl label nodes <node-name> <label-key>=<label-value> --overwrite #修改

维护/可调度

1
2
$ kubectl cordon [node_name]   # 节点维护
$ kubectl uncordon [node_name] # 节点可调度

清空节点

1
$ kubectl drain [node_name]    # 清空节点

节点/容器组

1
2
3
4
$ kubectl delete node [node_name] 
$ kubectl delete pod [pod_name]
$ kubectl edit node [node_name]
$ kubectl edit pod [pod_name]

无状态/命名空间

1
2
3
4
5
6
$ kubectl edit deploy [deploy_name]
$ kubectl delete deploy [deploy_name]
$ kubectl expose deploy [deploy_name] --port=80 --type=NodePort
$ kubectl scale deploy [deploy_name] --replicas=5
$ kubectl delete ns
$ kubectl edit ns [ns_name]

服务

1
2
$ kubectl edit svc [svc_name]
$ kubectl delete svc [svc_name]

守护进程集

1
2
$ kubectl edit ds [ds_name] -n kube-system 
$ kubectl delete ds [ds_name]

服务账号

1
2
$ kubectl edit sa [sa_name]
$ kubectl delete sa [sa_name]

注释

1
2
$ kubectl annotatepo [pod_name] [annotation]
$ kubectl annotateno [node_name]

添加资源

创建容器组

1
2
3
4
5
$ kubectl create -f [name_of_file] 
$ kubectl apply -f [name_of_file]
$ kubectl run [pod_name] --image=nginx --restart=Never
$ kubectl run [pod_name] --generator=run-pod/v1 --image=nginx
$ kubectl run [pod_name] --image=nginx --restart=Never

创建服务

1
2
$ kubectl create svc nodeport [svc_name] \
--tcp=8080:80

创建无状态应用

1
2
3
4
$ kubectl create -f [name_of_file] 
$ kubectl apply -f [name_of_file]
$ kubectl create deploy [deploy_name] \
--image=nginx

输出YAML文件

1
2
3
$ kubectl create deploy [deploy_name] --image=nginx --dry-run -o yaml > deploy.yaml
$ kubectl get po [pod_name] -o yaml --export > pod.yaml
$ kubectl run nginx --image=nginx:alpine --dry-run -o -yaml > deploy.yaml

容器交互

1
2
3
$ kubectl run [pod_name] \
--image=busybox --rm -it \
--restart=Never -- sh

获取帮助

1
2
3
4
$ kubectl -h
$ kubectl create -h
$ kubectl run -h
$ kubectl explain deploy.spec

请求

API调用

1
$ kubectl get --raw /apis/metrics.k8s.io/

集群信息

1
2
3
$ kubectl config
$ kubectl cluster-info
$ kubectl get componentstatus

另见


评论
avatar
竹山一叶
技术分享 个人心得
Follow Me
公告
欢迎光临小站,这里是我日常工作和学习中收集和整理的总结,希望能对你有所帮助:)

本站的内容经过个人加工总结而来,也参考了网友们分享的资料,如有侵权,请第一时间联系我,我将及时进行修改或删除😊
最新文章
网站资讯
文章数目 :
436
已运行时间 :
本站总字数 :
431.5k
本站访客数 :
本站总访问量 :
最后更新时间 :
文章归档文章分类文章标签复制本文标题复制本文地址
随便逛逛