# 读取资源文件,将新的配置应用到资源上
#-----------------------------------------#
[root@master k8s]# kubectl apply -f mypod.yaml
pod/mypod created
[root@master k8s]# sed 's,mypod,myweb,g' mypod.yaml |kubectl apply -f -
pod/myweb created
[root@master k8s]# kubectl get pods
NAME READY STATUS RESTARTS AGE
mypod 1/1 Running 0 36s
myweb 1/1 Running 0 4s
attach
复制代码
# 连接一个正在运行的容器的启动进程
#-----------------------------------------#
[root@master k8s]# kubectl attach mypod -c linux
If you don't see a command prompt, try pressing enter.
10.244.219.64:44372: response:200
auth
复制代码
# 检查授权信息
#-----------------------------------------#
[root@master k8s]# kubectl --kubeconfig=admin.conf auth can-i get pods
yes
[root@master k8s]# kubectl --kubeconfig=auth.conf auth can-i get pods
no
# 修改证书资源
#-----------------------------------------#
[root@master k8s]# kubectl get certificatesigningrequests
NAME AGE REQUESTOR CONDITION
csr-wsfz7 8s system:node:master Pending
[root@master k8s]# kubectl certificate approve csr-wsfz7
[root@master k8s]# kubectl get certificatesigningrequests
NAME AGE REQUESTOR CONDITION
csr-wsfz7 86s system:node:master Approved,Issued
cluster-info
复制代码
# 显示集群信息
#-----------------------------------------#
[root@master k8s]# kubectl cluster-info
Kubernetes control plane is running at https://192.168.1.10:6443
CoreDNS is running at https://192.168.1.10:6443/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.
# 标记节点为不可调度的
#-----------------------------------------#
[root@master k8s]# kubectl get nodes
NAME STATUS ROLES AGE VERSION
master Ready master 15h v1.22.5
node-0001 Ready node 15h v1.22.5
[root@master k8s]# kubectl cordon node-0001
node/node-0001 cordoned
[root@master k8s]# kubectl get nodes
NAME STATUS ROLES AGE VERSION
master Ready master 15h v1.22.5
node-0001 Ready,SchedulingDisabled node 15h v1.22.5
cp
复制代码
# 将文件和目录拷入/拷出容器
#-----------------------------------------#
[root@master k8s]# kubectl get pods
NAME READY STATUS RESTARTS AGE
myweb-759ffdd494-9956m 1/1 Running 0 5h13m
[root@master k8s]# kubectl cp myweb-759ffdd494-9956m:/var/www/html/index.html ./index.html
tar: Removing leading `/' from member names
[root@master k8s]# ls index.html
index.html
[root@master k8s]# echo "hello world" > index.html
[root@master k8s]# kubectl cp index.html myweb-759ffdd494-9956m:/var/www/html/index.html
[root@master k8s]# curl http://10.244.21.168
hello world
# 通过文件名或资源和名字删除资源
#-----------------------------------------#
[root@master k8s]# kubectl get pods
NAME READY STATUS RESTARTS AGE
debugger 2/2 Running 1 (3s ago) 6s
mypod 1/1 Running 0 40s
[root@master k8s]# kubectl delete pod debugger
pod "debugger" deleted
[root@master k8s]# kubectl delete -f mypod.yaml
pod "mypod" deleted
[root@master k8s]# kubectl get pods
No resources found in default namespace.
# 清空节点,节点资源被删除也不能被调度
#-----------------------------------------#
[root@master k8s]# kubectl get nodes
NAME STATUS ROLES AGE VERSION
master Ready master 36h v1.22.5
node-0001 Ready node 36h v1.22.5
[root@master k8s]# kubectl drain node-0001 --delete-emptydir-data --ignore-daemonsets --force
[root@master k8s]# kubectl get nodes
NAME STATUS ROLES AGE VERSION
master Ready master 36h v1.22.5
node-0001 Ready,SchedulingDisabled node 36h v1.22.5
edit
# 修改服务器上的某资源
#-----------------------------------------#
[root@master k8s]# kubectl edit pod mypod
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
apiVersion: v1
kind: Pod
...
exec
复制代码
# 在一个正在运行的容器中执行命令
#-----------------------------------------#
[root@master k8s]# kubectl get pods
NAME READY STATUS RESTARTS AGE
myweb-759ffdd494-9956m 1/1 Running 0 27m
[root@master k8s]# kubectl exec -it myweb-759ffdd494-9956m -c httpd -- /bin/bash
[root@myweb-759ffdd494-9956m html]# ls
index.html info.html info.php
explain
复制代码
# 显示资源的帮助信息
#-----------------------------------------#
[root@master k8s]# kubectl explain pod.spec
KIND: Pod
VERSION: v1
RESOURCE: spec <Object>
DESCRIPTION:
Specification of the desired behavior of the pod. More info:
https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
PodSpec is a description of a pod.
...
# 显示一个或者多个资源信息
#-----------------------------------------#
[root@master k8s]# kubectl get nodes
ku NAME STATUS ROLES AGE VERSION
master Ready master 36h v1.22.5
node-0001 Ready node 36h v1.22.5
[root@master k8s]# kubectl get pods
NAME READY STATUS RESTARTS AGE
mypod 1/1 Running 0 5m9s
[root@master k8s]# kubectl get pod mypod -o wide
NAME READY STATUS RESTARTS IP ...
mypod 1/1 Running 0 10.244.21.154 ...
[root@master k8s]# kubectl get pod mypod -o yaml
apiVersion: v1
kind: Pod
metadata:
...
help
复制代码
# 显示帮助信息
#-----------------------------------------#
[root@master k8s]# kubectl help run
Create and run a particular image in a pod.
Examples:
# Start a nginx pod
kubectl run nginx --image=nginx
# 更新资源的标签
#-----------------------------------------#
[root@master k8s]# kubectl get pods --show-labels
NAME READY STATUS RESTARTS AGE LABELS
mypod 1/1 Running 0 7m22s <none>
[root@master k8s]# kubectl label pod mypod app=webapp
pod/mypod labeled
[root@master k8s]# kubectl get pods --show-labels
NAME READY STATUS RESTARTS AGE LABELS
mypod 1/1 Running 0 7m41s app=webapp
[root@master k8s]# kubectl label pod mypod app-
pod/mypod labeled
[root@master k8s]# kubectl get pods --show-labels
NAME READY STATUS RESTARTS AGE LABELS
mypod 1/1 Running 0 68m <none>
logs
复制代码
# 显示 pod 中某容器的日志
#-----------------------------------------#
[root@master k8s]# kubectl get pod
NAME READY STATUS RESTARTS AGE
mypod 1/1 Running 0 5h4m
[root@master k8s]# kubectl logs mypod -c linux
10.244.219.64:34666: response:200
options
复制代码
# 显示所有命令都支持的共有参数列表
#-----------------------------------------#
[root@master k8s]# kubectl options
The following options can be passed to any command:
--insecure-skip-tls-verify=false: If true, the server's certificate will not be checked for validity. This will
...
patch
复制代码
# 基于策略性合并修补规则更新某资源中的字段
#-----------------------------------------#
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: mypv
spec:
capacity:
storage: 5Gi
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Recycle
hostPath:
path: /var/webroot
type: DirectoryOrCreate
#-----------------------------------------#
[root@master k8s]# kubectl get pv
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS AGE
mypv 5Gi RWO Recycle Available 5s
[root@master k8s]# kubectl patch pv mypv -p '{"spec":{"capacity":{"storage":"8Gi"}}}'
persistentvolume/mypv patched
[root@master k8s]# kubectl get pv
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS AGE
mypv 8Gi RWO Recycle Available 67s
plugin
# 运行命令行插件
# 插件在 ${PATH} 下,是一个独立的可执行文件,名称以 kubectl- 开头
#-----------------------------------------#
[root@master k8s]# vim /usr/local/bin/kubectl-gettaint
#!/bin/bash
/usr/bin/kubectl get nodes -o custom-columns=NodeName:.metadata.name,Taints:.spec.taints
[root@master k8s]# chmod 755 /usr/local/bin/kubectl-gettaint
[root@master k8s]# kubectl plugin list
The following compatible plugins are available:
/usr/local/bin/kubectl-gettaint
[root@master k8s]# kubectl gettaint
NodeName Taints
master [map[effect:NoSchedule key:node-role.kubernetes.io/master]]
node-0001 <none>
port-forward
复制代码
# 将一个或者多个本地端口转发到 pod
#-----------------------------------------#
[root@master k8s]# kubectl port-forward --address 0.0.0.0 pod/mypod 8080 80
Forwarding from 0.0.0.0:8080 -> 8080
Forwarding from 0.0.0.0:80 -> 80
#-----------------------------------------#
[root@master local]# curl http://master:8080
hello world.
# 管理资源的上线
#-----------------------------------------#
[root@master k8s]# kubectl rollout history deployment
deployment.apps/myweb
REVISION CHANGE-CAUSE
1 httpd.v1
2 httpd.v2
[root@master k8s]# kubectl rollout undo deployment myweb --to-revision=1
deployment.apps/myweb rolled back
[root@master k8s]# kubectl rollout history deployment
deployment.apps/myweb
REVISION CHANGE-CAUSE
2 httpd.v2
3 httpd.v1
run
# 在集群中使用指定镜像启动容器
#-----------------------------------------#
[root@master k8s]# kubectl run mypod --image=registry:5000/myos:httpd
#-----------------------------------------#
---
apiVersion: v1
kind: Pod
metadata:
labels:
run: mypod
name: mypod
spec:
containers:
- image: registry:5000/myos:httpd
name: mypod
restartPolicy: Always
scale
# 为可扩充资源设置一个新副本数量
#-----------------------------------------#
[root@master k8s]# kubectl apply -f myDeploy.yaml
deployment.apps/myweb created
[root@master ~]# kubectl get deployments.apps
NAME READY UP-TO-DATE AVAILABLE AGE
myweb 1/1 1 1 21m
[root@master ~]# kubectl scale deployment myweb --replicas=3
deployment.apps/myweb scaled
[root@master ~]# kubectl get deployments.apps
NAME READY UP-TO-DATE AVAILABLE AGE
myweb 3/3 3 3 21m
top
复制代码
# 显示资源(CPU /内存/存储)使用率
#-----------------------------------------#
[root@master k8s]# kubectl top nodes
NAME CPU(cores) CPU% MEMORY(bytes) MEMORY%
master 90m 4% 1210Mi 14%
node-0001 45m 2% 931Mi 11%
[root@master k8s]# kubectl top pods
NAME CPU(cores) MEMORY(bytes)
mypod 5m 8Mi
[root@master k8s]#
uncordon
复制代码
# 解除(cordon、drain)资源不可调度标记
#-----------------------------------------#
[root@master k8s]# kubectl get nodes
NAME STATUS ROLES AGE VERSION
master Ready master 15h v1.22.5
node-0001 Ready,SchedulingDisabled node 15h v1.22.5
[root@master k8s]# kubectl uncordon node-0001
node/node-0001 uncordoned
[root@master k8s]# kubectl get nodes
NAME STATUS ROLES AGE VERSION
master Ready master 15h v1.22.5
node-0001 Ready node 15h v1.22.5