一、Kubectl命令行说明

类型 命令 描述
基础命令 create  通过文件名或标准输入创建资源
expose  将一个资源公开为一个新的kubernetes服务
run

创建并运行一个特定的镜像,可能是副本

创建一个deployment或job管理创建的容器

set

配置应用资源

修改现有应用程序资源

get  显示一个或多个资源
explain  文档参考资料
edit  使用默认的编辑器编辑一个资源
delete  通过文件名、标准输入、资源名称或标签选择器来删除资源
部署命令 rollout  管理资源的发布
rolling-update  执行指定复制控制器的滚动更新
scale  扩容或缩容Pod数量,Deployment、ReplicasSet、RC或Job
autoscale  创建一个自动选择扩容或者缩容并设置Pod数量
集群管理命令 certificate  修改证书资源
cluster-info  显示集群信息
top  显示资源(CPUMemory/Storage)
cordon  标记节点为不可调度
uncordon  标记节点可调度
drain  维护期间排除节点
taint  更新一个或多个节点上的污点
排错/调试 describe  显示特定资源或资源组的详细信息
logs  打印pod中容器的日志
attach   连接到一个运行的容器,既可以查看output stream,也可以与容器(stdin)进行交互
exec   在容器中执行命令
port-forward   将一个或多个本地端口转发到pod中
proxy   运行Kubernetes API服务器的代理
cp   从容器中复制文件或目录
auth   检查授权
高级命令 apply  通过文件名或标准输入将配置应用于资源
patch  使用(patch)补丁修改、更新资源的字段
replace  用文件名或标准输入替换资源
convert  在不同的API版本之间转换配置文件
设置命令 label  更新资源的标签
annotate  更新资源上的注释
completion  输出指定shell的代码(bash or zsh)
其他命令 api-versions  在服务器上打印支持的API版本,格式为“group / version”
config  修改Kubernetes的文件
help  help命令
plugin  显示安装的插件
version  显示版本信息

  具体可以参考:https://kubernetes.io/docs/reference/kubectl/kubectl/

二、kubectl事例

  (1)创建一个deployment(deployment用来管理Pod和RS)

# kubectl run hello-world --replicas=3 --labels="app=example_nginx" --image=nginx:1.10 --port=80
deployment.apps "hello-world" created # 备注
hello-world : deployment的名称 --replicas:副本数 --labels:标签(非唯一,用于识别用途等特点) --image:使用的镜像 --port:暴露的端口

  (2)查看pod

[root@master-01 ~]# kubectl get pod
NAME READY STATUS RESTARTS AGE
hello-world-76c54b84b-b5bcz 1/1 Running 0 11m
hello-world-76c54b84b-bmhsd 1/1 Running 0 11m
hello-world-76c54b84b-rgn2q 1/1 Running 0 11m
[root@master-01 ~]# kubectl get pod -o wide
NAME READY STATUS RESTARTS AGE IP NODE
hello-world-76c54b84b-b5bcz 1/1 Running 0 11m 10.20.184.81 master-01
hello-world-76c54b84b-bmhsd 1/1 Running 0 11m 10.20.254.104 node-03
hello-world-76c54b84b-rgn2q 1/1 Running 0 11m 10.20.190.57 node-01

  (3)查看deployment

[root@master-01 ~]# kubectl get deployment
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
hello-world 3 3 3 3 12

  (4)查看pod的描述信息  

[root@master-01 ~]# kubectl describe pod hello-world-76c54b84b-b5bcz
Name: hello-world-76c54b84b-b5bcz
Namespace: default
Node: master-01/172.16.60.95
Start Time: Wed, 20 Jun 2018 09:53:07 +0800
Labels: app=example_nginx
pod-template-hash=327106406
Annotations: <none>
Status: Running
IP: 10.20.184.81
Controlled By: ReplicaSet/hello-world-76c54b84
.
.
.

  (5)描述deployment信息

[root@master- ~]# kubectl describe deploy/hello-world
Name: hello-world
Namespace: default
CreationTimestamp: Wed, Jun :: +
Labels: app=example_nginx
Annotations: deployment.kubernetes.io/revision=
Selector: app=example_nginx
Replicas: desired | updated | total | available | unavailable
StrategyType: RollingUpdate
MinReadySeconds:
RollingUpdateStrategy: max unavailable, max surge
Pod Template:
Labels: app=example_nginx
Containers:
hello-world:
Image: nginx:1.10
Port: /TCP
Host Port: /TCP
Environment: <none>
Mounts: <none>
Volumes: <none>
Conditions:
Type Status Reason
---- ------ ------
Available True MinimumReplicasAvailable
Progressing True NewReplicaSetAvailable
OldReplicaSets: <none>
NewReplicaSet: hello-world-76c54b84b (/ replicas created)
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal ScalingReplicaSet 18m deployment-controller Scaled up replica set hello-world-76c54b84b to

  (6)查看其它命名空间的资源(--namespace xxx / -n xxx)

[root@master-01 ~]# kubectl get pod -o wide -n kube-system
NAME READY STATUS RESTARTS AGE IP NODE
calico-kube-controllers-98989846-gjk55 1/1 Running 1 8d 172.16.60.98 node-02
calico-node-4mxvv 1/1 Running 1 8d 172.16.60.98 node-02
calico-node-ftg9v 1/1 Running 1 8d 172.16.60.96 master-02
calico-node-hctvm 1/1 Running 1 8d 172.16.60.97 node-01
calico-node-rbv5b 1/1 Running 1 8d 172.16.60.99 node-0

  (7)edit修改配置

# 将刚才port的80 改为8088

[root@master-01 ~]# kubectl edit deploy hello-world

...
...
...
ports:
- containerPort: 8088
...
...

  describe检查 

[root@master-01 ~]# kubectl describe deploy/hello-world
...
...
...
Pod Template:
Labels: app=example_nginx
Containers:
hello-world:
Image: nginx:1.10
Port: 8088/TCP
Host Port: 0/TCP

  (8)创建一个Service对象,暴露Deployment端口 

[root@master-01 ~]# kubectl expose deploy/hello-world --port=88 --type=NodePort --target-port=80 --name=example-nginx-service
service "example-nginx-service" exposed # 备注
--port=88:Service服务的端口 --target-port=80: 容器暴露的端口 --type=NodePort:会随机开放一个宿主机端口(端口范围在apiserver中定义)

  查看/描述 服务  

[root@master-01 ~]# kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
example-nginx-service NodePort 10.254.43.65 <none> 88:40591/TCP 5m [root@master-01 ~]# kubectl describe svc example-nginx-service
Name: example-nginx-service
Namespace: default
Labels: app=example_nginx
Annotations: <none>
Selector: app=example_nginx
Type: NodePort
IP: 10.254.43.65
Port: <unset> 88/TCP
TargetPort: 80/TCP
NodePort: <unset> 40591/TCP
Endpoints: 10.20.184.82:80,10.20.190.59:80,10.20.254.106:80
Session Affinity: None
External Traffic Policy: Cluster
Events: <none>

  访问nginx

# 可以通过Service 的cluster-ip:88 / ndoe-ip:40591

[root@master-01 ~]# curl 10.254.43.65:88
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p> <p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p>
</body>
</html>

  

# 任意node-ip
[root@master-01 ~]# curl 172.16.60.95:40591
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p> <p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p>
</body>
</html>

  (9)创建一个Service对象,暴露UDP端口 

# kubectl expose deploy/hello-world --port=4123 --type=NodePort --protocol=udp --target-port=80 --name=example-upd-service

  (10)查看Pod日志

[root@master-01 ~]# kubectl logs pods/hello-world-76c54b84b-rx4vz

172.16.60.95 - - [20/Jun/2018:02:35:20 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.29.0" "-"
172.16.60.95 - - [20/Jun/2018:02:36:06 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.29.0" "-"
172.16.60.95 - - [20/Jun/2018:02:36:43 +0000] "GET / HTTP/1.1" 200 612 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36" "-"

  (11)使用标签查询Pod

[root@master-01 ~]# kubectl get pod --selector="app=example_nginx" -o wide
NAME READY STATUS RESTARTS AGE IP NODE
hello-world-76c54b84b-8zn5j 1/1 Running 0 18m 10.20.190.59 node-01
hello-world-76c54b84b-pbp9h 1/1 Running 0 18m 10.20.254.106 node-03
hello-world-76c54b84b-rx4vz 1/1 Running 0 18m 10.20.184.82 master-01

  

Kubernetes--kubectl的更多相关文章

  1. Kubernetes kubectl 命令

    kubectl 命令用来操作 Kubernetes 集群中的资源对象,包括对资源的创建.删除.查看.修改.配置.运行等 命令语法:kubectl [command] [TYPE] [NAME] [fl ...

  2. [Kubernetes]kubectl命令补全出错

    在kubernetes集群中,命令补全能够省很多事,但是这两天就很奇怪 kubectl get pod -n kube+tab键自动补全Namespace的时候出现错误 kubectl get pod ...

  3. Kubernetes kubectl 命令概述

    kubectl用于运行Kubernetes集群命令的管理工具. 语法 kubectl [command] [TYPE] [NAME] [flags] command:指定要在一个或多个资源执行的操作 ...

  4. Kubernetes,kubectl常用命令详解

    kubectl概述 祭出一张图,转载至 kubernetes-handbook/kubectl命令概述 ,可以对命令族有个整体的概念. 环境准备 允许master节点部署pod,使用命令如下: kub ...

  5. Kubernetes - kubectl proxy

    最近在玩flink部署在k8s上,但是k8s以前没玩过,参照前几天写的文章可部署一个简单的k8shttps://www.cnblogs.com/felixzh/p/9726244.html 在参照fl ...

  6. [Kubernetes] Kubectl and Pod

    1. Create and run a Pod kubectl run my-nginx --image=nginx:alpine We can run kubectl get all to see ...

  7. kubernetes kubectl 命令自动补全

    yum install -y bash-completion source /usr/share/bash-completion/bash_completion source <(kubectl ...

  8. Kubernetes源码之旅:从kubectl到API Server

    概述: Kubernetes项目目前依然延续着之前爆炸式的扩张.急需能够理解Kubernetes原理并且贡献代码的软件开发者.学习Kubernetes源码并不容易.Kubernetes是使用相对年轻的 ...

  9. kubernetes入门(08)kubernetes单机版的安装和使用

    kubectl get - 类似于 docker ps ,查询资源列表 kubectl describe - 类似于 docker inspect ,获取资源的详细信息 kubectl logs - ...

  10. yum方式安装kubernetes

    环境准备 master01 node01 node02,连通网络,修改hosts文件,确认3台主机相互解析 vim /etc/hosts 127.0.0.1 localhost localhost.l ...

随机推荐

  1. Data truncation: Truncated incorrect DOUBLE value:

    在写sql查询语句queryRunner.update(connection,"update account set balance=? where name=?",account ...

  2. python处理xml实例

    """ Author = zyh FileName = read_xml_1.py Time = 18-9-26 下午5:19 """ fr ...

  3. css3学习笔记二

    接着是对图形移动.旋转.倾斜.放缩的处理. -moz-transform:translateX(x deg) translateY(x deg);/*图形会沿着XY轴移动*/ -moz-transfo ...

  4. Spring笔记③--spring的命名空间

    p:命名空间: xmlns:p="http://www.springframework.org/schema/p" 作用:简化在xml配置bean的属性 在<bean> ...

  5. 第一个spring冲刺团队贡献分(80分满分)

    团队贡献分(80分满分): 李泳江 24 叶煜稳 26 谢洪跃 18 周伟雄 12

  6. golang 反射

    参考:|--http://blog.51cto.com/speakingbaicai/1707637 |--https://studygolang.com/articles/6324 反射是在gola ...

  7. Alpha版本冲刺(三)

    目录 组员情况 组员1(组长):胡绪佩 组员2:胡青元 组员3:庄卉 组员4:家灿 组员5:凯琳 组员6:丹丹 组员7:家伟 组员8:政演 组员9:鸿杰 组员10:刘一好 组员11:何宇恒 展示组内最 ...

  8. Head First Java & 异常

     

  9. Asp.net MVC area

    妈的,今天去携程面试,技术面了三轮,竟然让我走了,没有然后了,你不要老子,干嘛还面那么多轮,害的老子一上午的时间没了,气死我了. 好了,总结下面试中的问题吧, 1.GC 2.设计模式 3.做过的项目的 ...

  10. Print Nodes in Top View of Binary Tree

    Top view of a binary tree is the set of nodes visible when the tree is viewed from the top. Given a ...