基础不牢地动山摇,要想熟悉kubernetes,必须对kubernetes的基础命令熟悉于心,这里就介绍一下kuberneyes的常用命令,在判断kubernetes的异常时能起到事半功倍的效果。这里先试根据集群,然后根据node节点和pod。
# 集群 [root@wulaoer.org ~]# kubectl get cs # 集群健康情况 [root@wulaoer.org ~]# kubectl get sc #集群默认存储类型 [root@wulaoer.org ~]# kubectl get rc,services #查看rc和servers [root@wulaoer.org ~]# kubectl cluster-info # 集群核心组件运行情况 [root@wulaoer.org ~]# kubectl cluster-info dump #查看集群具体信息 [root@wulaoer.org ~]# kubectl get namespaces # 表空间名 [root@wulaoer.org ~]# kubectl get pod --all-namespaces #查看所有空间下的pod [root@wulaoer.org ~]# kubectl version # 版本 [root@wulaoer.org ~]# kubectl api-versions # API [root@wulaoer.org ~]# kubectl get events # 查看事件 [root@wulaoer.org ~]# kubectl get nodes //获取全部节点 [root@wulaoer.org ~]# kubectl delete node k8s2 //删除node节点 [root@wulaoer.org ~]# kubectl rollout status deploy nginx-test [root@wulaoer.org ~]# kubectl api-resources #查看 k8s 资源缩写 # 创建 [root@wulaoer.org ~]# kubectl create -f ./nginx.yaml # 创建资源 [root@wulaoer.org ~]# kubectl create -f . # 创建当前目录下的所有yaml资源 [root@wulaoer.org ~]# kubectl create -f ./nginx1.yaml -f ./mysql2.yaml # 使用多个文件创建资源 [root@wulaoer.org ~]# kubectl create -f ./dir # 使用目录下的所有清单文件来创建资源 [root@wulaoer.org ~]# kubectl create -f https://git.io/vPieo # 使用 url 来创建资源 [root@wulaoer.org ~]# kubectl run -i --tty busybox --image=busybox ----创建带有终端的pod [root@wulaoer.org ~]# kubectl run nginx --image=nginx # 启动一个 nginx 实例 [root@wulaoer.org ~]# kubectl run mybusybox --image=busybox --replicas=5 ----启动多个pod [root@wulaoer.org ~]# kubectl explain pods,svc # 获取 pod 和 svc 的文档 [root@wulaoer.org ~]# kubectl create service <type> <name> --tcp=80:8080 #type:clusterip、nodeport #创建service kubectl create service clusterip <name> --clusterip="None" #headless service [root@wulaoer.org ~]# kubectl expose deploy <deploy_name> --type=ClusterIP --name=<name> --port=80 --target-port=8080 #expose deployment # 更新 [root@wulaoer.org ~]# kubectl apply nginx1.yaml #根据文档创建对象 [root@wulaoer.org ~]# kubectl rolling-update python-v1 -f python-v2.json # 滚动更新 pod frontend-v1 [root@wulaoer.org ~]# kubectl rolling-update python-v1 python-v2 --image=image:v2 # 更新资源名称并更新镜像 [root@wulaoer.org ~]# kubectl rolling-update python --image=image:v2 # 更新 frontend pod 中的镜像 [root@wulaoer.org ~]# kubectl rolling-update python-v1 python-v2 --rollback # 退出已存在的进行中的滚动更新 [root@wulaoer.org ~]# cat pod.json | kubectl replace -f - # 基于 stdin 输入的 JSON 替换 pod 强制替换,删除后重新创建资源。会导致服务中断。 [root@wulaoer.org ~]# kubectl replace --force -f ./pod.json 为 nginx RC 创建服务,启用本地 80 端口连接到容器上的 8000 端口 [root@wulaoer.org ~]# kubectl expose rc nginx --port=80 --target-port=8000 更新单容器 pod 的镜像版本(tag)到 v4 kubectl get pod nginx-pod -o yaml | sed 's/\(image: myimage\):.*$/\1:v4/' | kubectl replace -f - [root@wulaoer.org ~]# kubectl label pods nginx-pod new-label=awesome # 添加标签 [root@wulaoer.org ~]# kubectl annotate pods nginx-pod icon-url=http://goo.gl/XXBTWq # 添加注解 [root@wulaoer.org ~]# kubectl autoscale deployment foo --min=2 --max=10 # 自动扩展 deployment “foo” [root@wulaoer.org ~]# kubectl run nginx-deploy --image=nginx --replicas=2 #创建 deploy [root@wulaoer.org ~]# kubectl set image deploy nginx-deploy nginx-deploy=nginx:1.9.1 #升级 image [root@wulaoer.org ~]# kubectl set resources deploy nginx-deploy -c=nginx --limits=cpu=200m,memory=512Mi #升级资源 # 回滚 [root@wulaoer.org ~]# kubectl rollout undo deploy nginx-deploy --to-revision=2 #回滚 [root@wulaoer.org ~]# kubectl rollout history deployment/abc #查看deployment的历史记录 [root@wulaoer.org ~]# kubectl rollout undo deployment/abc #回滚到之前的deployment版本 [root@wulaoer.org ~]# kubectl rollout undo --dry-run=true deployment/abc [root@wulaoer.org ~]# kubectl rollout undo daemonset/abc --to-revision=3 #回滚到daemonset 修订3版本 kubectl rollout resume deployment/nginx #恢复已暂停的 deployment [root@wulaoer.org ~]# kubectl logs zookeeper-1 --previous #查看pod zookeeper-1重启之前的日志 [root@wulaoer.org ~]# kubectl rollout pause deploy nginx-deploy #暂停 deploy [root@wulaoer.org ~]# kubectl rollout resume deploy nginx-deploy #恢复 deploy [root@wulaoer.org ~]# kubectl rollout history deploy nginx-deploy --revision=2 #查看指定版本历史 [root@wulaoer.org ~]# kubectl rollout status deploy nginx-deploy #查询升级状态 # 编辑资源 [root@wulaoer.org ~]# kubectl edit <type> <resource_name> #编辑对象 [root@wulaoer.org ~]# kubectl edit svc/docker-registry # 编辑名为 docker-registry 的 service [root@wulaoer.org ~]# KUBE_EDITOR="nano" kubectl edit svc/docker-registry # 使用其它编辑器 [root@wulaoer.org ~]# kubectl edit pod prometheus-cluster-monitoring-0 -n cattle-prometheus #编辑cattle-prometheus空间下的pod prometheus-cluster-monitoring-1的yaml文件 # 动态伸缩pod [root@wulaoer.org ~]# kubectl scale --replicas=3 rs/foo # 将foo副本集变成3个 [root@wulaoer.org ~]# kubectl scale --replicas=3 -f foo.yaml # 缩放“foo”中指定的资源。 [root@wulaoer.org ~]# kubectl scale --current-replicas=2 --replicas=3 deployment/mysql # 将deployment/mysql从2个变成3个 [root@wulaoer.org ~]# kubectl scale --replicas=5 rc/foo rc/bar rc/baz # 变更多个控制器的数量 [root@wulaoer.org ~]# kubectl rollout status deploy deployment/mysql # 查看变更进度 [root@wulaoer.org ~]# kubectl scale deploy nginx-deploy --replicas=10 #弹性伸缩 # 删除 [root@wulaoer.org ~]# kubectl delete -f ./pod.json # 删除 pod.json 文件中定义的类型和名称的 pod [root@wulaoer.org ~]# kubectl delete pod,service baz foo # 删除名为“baz”的 pod 和名为“foo”的 service [root@wulaoer.org ~]# kubectl delete pods,services -l name=myLabel # 删除具有 name=myLabel 标签的 pod 和 serivce [root@wulaoer.org ~]# kubectl delete pods,services -l name=myLabel --include-uninitialized # 删除具有 name=myLabel 标签的 pod 和 service,包括尚未初始化的 [root@wulaoer.org ~]# kubectl -n my-ns delete po,svc --all # 删除 my-ns namespace下的所有 pod 和 serivce,包括尚未初始化的 [root@wulaoer.org ~]# kubectl delete pods prometheus-7fcfcb9f89-qkkf7 --grace-period=0 --force 强制删除 # 交互 [root@wulaoer.org ~]# kubectl logs nginx-pod # dump 输出 pod 的日志(stdout) [root@wulaoer.org ~]# kubectl logs nginx-pod -c my-container # dump 输出 pod 中容器的日志(stdout,pod 中有多个容器的情况下使用) [root@wulaoer.org ~]# kubectl logs -f nginx-pod # 流式输出 pod 的日志(stdout) [root@wulaoer.org ~]# kubectl logs -f nginx-pod -c my-container # 流式输出 pod 中容器的日志(stdout,pod 中有多个容器的情况下使用) [root@wulaoer.org ~]# kubectl run -i --tty busybox --image=busybox -- sh # 交互式 shell 的方式运行 pod [root@wulaoer.org ~]# kubectl attach nginx-pod -i # 连接到运行中的容器 [root@wulaoer.org ~]# kubectl port-forward nginx-pod 5000:6000 # 转发 pod 中的 6000 端口到本地的 5000 端口 [root@wulaoer.org ~]# kubectl exec nginx-pod -- ls / # 在已存在的容器中执行命令(只有一个容器的情况下) [root@wulaoer.org ~]# kubectl exec nginx-pod -c my-container -- ls / # 在已存在的容器中执行命令(pod 中有多个容器的情况下) [root@wulaoer.org ~]# kubectl top pod POD_NAME --containers # 显示指定 pod和容器的指标度量 [root@wulaoer.org ~]# kubectl logs zookeeper-1 --previous #查看pod zookeeper-1重启之前的日志 # 调度配置 [root@wulaoer.org ~]# kubectl cordon k8s-node # 标记 my-node 不可调度 [root@wulaoer.org ~]# kubectl drain k8s-node # 清空 my-node 以待维护 [root@wulaoer.org ~]# kubectl uncordon k8s-node # 标记 my-node 可调度 [root@wulaoer.org ~]# kubectl top node #查看node节点的 [root@wulaoer.org ~]# kubectl cluster-info dump # 将当前集群状态输出到 stdout [root@wulaoer.org ~]# kubectl cluster-info dump --output-directory=/path/to/cluster-state # 将当前集群状态输出到 /path/to/cluster-state #如果该键和影响的污点(taint)已存在,则使用指定的值替换 [root@wulaoer.org ~]# kubectl taint nodes foo dedicated=special-user:NoSchedule #查看 [root@wulaoer.org ~]# kubectl get <type> <resource_name> -o wide #查看具体资源对象 [root@wulaoer.org ~]# kubectl get <type> <resource_name> -o yaml #查看对象的 yaml 信息 [root@wulaoer.org ~]# kubectl describe <type> <resource_name> #查看对象的详细信息 [root@wulaoer.org ~]# kubectl logs -f <pod-name> -c <container-name> #查看日志 [root@wulaoer.org ~]# kubectl describe pod nginx-storage-pod > nginx-storage-pod.yaml //导出pod的yaml文件 [root@wulaoer.org ~]# kubectl describe nodes | grep -A 2 -e "^\\s*CPU Requests" #查看node节点cpu [root@wulaoer.org ~]# kubectl top nodes #查看节点的资源使用 [root@wulaoer.org ~]# kubectl top pods #查看pod的资源使用 [root@wulaoer.org ~]# kubectl get pod -o wide #查看容器详细信息 [root@wulaoer.org ~]# kubectl get node -o wide #查看node节点详细信息 [root@wulaoer.org ~]# kubectl get deployment nginx-test -o yaml #导出已有pod的yaml #节点label 节点的label 查看节点的所有label [root@wulaoer.org ~]# kubectl get node --show-labels 给节点添加一个新label [root@wulaoer.org ~]# kubectl label nodes kube-node node=kube-node 修改节点的label [root@wulaoer.org ~]# kubectl label nodes --overwrite k8s-slave node-network-driver=ovs 删除节点的某个label [root@wulaoer.org ~]# kubectl label nodes kube-node node- 根据node的label筛选节点 [root@wulaoer.org ~]# kubectl label nodes kube-node node=kube-node [root@wulaoer.org ~]# kubectl label nodes --overwrite k8s-slave node-network-driver=sriov //修改节点k8s-slave的标签node-network-driver的值为sriov [root@wulaoer.org ~]# kubectl get node -a -l "node=kube-node"
以上就是kubernetes使用时常用的命令,有些命令并不常用,但是我们需要知道,希望整理这些可以帮助更多人,没有了,看些其他的吧。
您可以选择一种方式赞助本站
支付宝扫一扫赞助
微信钱包扫描赞助
赏