kubectl 速查手册

资源对象文件

---
kind: Pod
apiVersion: v1
metadata:name: myweblabels:app: nginx
spec:containers:- name: webserverimage: nginx
status: {}

annotate

# 更新资源所关联的注释信息
#-----------------------------------------#
[root@master k8s]# kubectl apply -f mypod.yaml --record
[root@master k8s]# kubectl get pod mypod -o custom-columns=podName:.metadata.name,annotations:.metadata.annotations."kubernetes\.io/change-cause"
podName   annotations
mypod     kubectl apply --filename=mypod.yaml --record=true
[root@master k8s]# kubectl annotate pods mypod kubernetes.io/change-cause='my description'
pod/mypod annotated
[root@master k8s]# kubectl get pod mypod -o custom-columns=podName:.metadata.name,annotations:.metadata.annotations."kubernetes\.io/change-cause"
podName   annotations
mypod     my description

api-resources

# 显示服务器上所支持的 API 资源
# -o wide 可以用来查询资源权限
#-----------------------------------------#
[root@master k8s]# kubectl api-resources -o wide
NAME         SHORTNAMES   APIVERSION       NAMESPACED   KIND         VERBS
pods         po           v1               true         Pod          [get list patch ...]
namespaces   ns           v1               false        Namespace    [create get ...]

api-versions

# 显示服务端所支持的 API 版本
#-----------------------------------------#
[root@master k8s]# kubectl api-versions
admissionregistration.k8s.io/v1
apps/v1
... ...
v1

apply

# 读取资源文件,将新的配置应用到资源上
#-----------------------------------------#
[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

autoscale

# 创建一个HPA控制器,对资源对象进行自动扩缩
#-----------------------------------------#
[root@master k8s]# kubectl apply -f myDeploy.yaml
deployment.apps/myweb created
[root@master k8s]# kubectl autoscale deployment myweb --min=1 --max=10 --cpu-percent=80
horizontalpodautoscaler.autoscaling/myweb autoscaled
[root@master k8s]# kubectl get horizontalpodautoscalers.autoscaling 
NAME    REFERENCE          TARGETS   MINPODS   MAXPODS   REPLICAS   AGE
myweb   Deployment/myweb   10%/80%   1         10        1          27m
#-----------------------------------------#
---
apiVersion: autoscaling/v1
kind: HorizontalPodAutoscaler
metadata:name: myweb
spec:minReplicas: 1maxReplicas: 10scaleTargetRef:apiVersion: apps/v1kind: Deploymentname: mywebtargetCPUUtilizationPercentage: 80

certificate

# 修改证书资源
#-----------------------------------------#
[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/proxyTo further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.

completion

# 根据已经给出的 Shell 输出 <Tab> 补全代码
#-----------------------------------------#
[root@master k8s]# source <(kubectl completion bash|tee /etc/bash_completion.d/kubectl)

config

# 配置管理 kubeconfig 文件
# 创建普通认证用户中的 CN 代表用户名,O 代表组名称
#-----------------------------------------#
[root@master k8s]# openssl genrsa -out luck.key 2048
[root@master k8s]# openssl req -new -key luck.key -out luck.csr -subj "/CN=luck/O=tedu"
[root@master k8s]# mycsr=$(base64 luck.csr |tr -d '\n')
[root@master k8s]# cat <<EOF |kubectl apply -f -
---
apiVersion: certificates.k8s.io/v1
kind: CertificateSigningRequest
metadata:name: luck-token
spec:groups:- system:authenticatedrequest: ${mycsr}signerName: kubernetes.io/kube-apiserver-clientusages:- client auth
EOF
[root@master k8s]# kubectl get certificatesigningrequests.certificates.k8s.io
NAME         AGE   SIGNERNAME                            ... CONDITION
luck-token   12s   kubernetes.io/kube-apiserver-client   ... Pending
[root@master k8s]# kubectl certificate approve luck-token
[root@master k8s]# kubectl get certificatesigningrequests.certificates.k8s.io
NAME         AGE   SIGNERNAME                            ... CONDITION
luck-token   33s   kubernetes.io/kube-apiserver-client   ... Approved,Issued
[root@master k8s]# kubectl get certificatesigningrequests.certificates.k8s.io luck-token -o jsonpath='{.status.certificate}'| base64 -d >luck.crt
[root@master k8s]# kubectl config --kubeconfig=auth.conf set-cluster k8s-cluster --server=https://192.168.1.10:6443 --certificate-authority=/etc/kubernetes/pki/ca.crt --embed-certs=true
[root@master k8s]# kubectl config --kubeconfig=auth.conf set-credentials adminuser-luck --client-certificate=luck.crt --client-key=luck.key --embed-certs=true
[root@master k8s]# kubectl config --kubeconfig=auth.conf set-context node-cluster --cluster=k8s-cluster --user=adminuser-luck --namespace=default
[root@master k8s]# kubectl config --kubeconfig=auth.conf use-context node-cluster
[root@master k8s]# kubectl create clusterrolebinding luckrole --clusterrole=cluster-admin --user=luck
[root@master k8s]# kubectl config --kubeconfig=auth.conf get-clusters 
NAME
k8s-cluster
[root@master k8s]# kubectl config --kubeconfig=auth.conf get-users 
NAME
adminuser-luck
[root@master k8s]# kubectl config --kubeconfig=auth.conf get-contexts 
CURRENT   NAME           CLUSTER       AUTHINFO         NAMESPACE
*         node-cluster   k8s-cluster   adminuser-luck   default

convert

# 在不同的 API 版本之间转换配置文件
# 在高版本中已经删除了
#-----------------------------------------#
[root@master k8s]# kubectl convert -f myPod.yaml

cordon

# 标记节点为不可调度的
#-----------------------------------------#
[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

create

# 通过文件或标准输入来创建资源或用来生成资源文件
#-----------------------------------------#
[root@master k8s]# kubectl create namespace testapp
[root@master k8s]# kubectl create namespace testapp --dry-run=client -o yaml
apiVersion: v1
kind: Namespace
metadata:creationTimestamp: nullname: testapp
spec: {}
status: {}

debug

# 创建调试会话,使用附加容器引用目标资源
# 所有节点都需要打开临时容器特性
#-----------------------------------------#
[root@master k8s]# kubectl run myapp --image=registry:5000/k8s/pause:3.5 --restart=Never
[root@master k8s]# kubectl debug myapp -it --image=registry:5000/busybox:latest --share-processes --copy-to=debugger
/ # pstree -p
pause(1)
#-----------------------------------------#
[root@master k8s]# vim /etc/kubernetes/manifests/kube-apiserver.yaml- --feature-gates=EphemeralContainers=true
[root@master k8s]# vim /var/lib/kubelet/config.yaml
featureGates:EphemeralContainers: true
[root@master k8s]# systemctl restart kubelet
[root@master k8s]# kubectl run myapp --image=registry:5000/k8s/pause:3.5 --restart=Never
pod/myapp created
[root@master k8s]# kubectl debug -it myapp --image=registry:5000/busybox:latest --target=myapp
~ # pstree -p 0
?(0)-+-pause(1)`-sh(7)---pstree(27)
~ # ls /proc/1/root/
dev    etc    pause  proc   sys    var
~ # 

delete

# 通过文件名或资源和名字删除资源
#-----------------------------------------#
[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.

describe

# 显示某个资源或某组资源的详细信息
#-----------------------------------------#
[root@master k8s]# kubectl describe pod mypod 
Name:         mypod
Namespace:    default
Priority:     0
Node:         node-0001/192.168.1.11
...

diff(显示目前版本与将要应用的版本之间的差异)

# 显示目前版本与将要应用的版本之间的差异
#-----------------------------------------#
[root@master k8s]# kubectl diff -f deploy.yaml 
diff -u -N /tmp/LIVE-242154721/apps.v1.Deployment.default.myweb /tmp/MERGED-718616268/apps.v1.Deployment.default.myweb
--- /tmp/LIVE-242154721/apps.v1.Deployment.default.myweb    2021-11-07 15:52:02.711915439 +0800
+++ /tmp/MERGED-718616268/apps.v1.Deployment.default.myweb  2021-11-07 15:52:02.711915439 +0800
@@ -5,9 +5,9 @@deployment.kubernetes.io/revision: "1"
-    kubernetes.io/change-cause: httpd.v1
+    kubernetes.io/change-cause: httpd.v2creationTimestamp: "2021-11-07T07:51:49Z"
-  generation: 1
+  generation: 2managedFields:- apiVersion: apps/v1fieldsType: FieldsV1
...

drain(清空节点,节点资源被删除也不能被调度)

# 清空节点,节点资源被删除也不能被调度
#-----------------------------------------#
[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-statusPodSpec is a description of a pod.
...

expose

# 为资源创建 service
#-----------------------------------------#
[root@master k8s]# [root@master k8s]# kubectl expose deployment myweb --port=80 --protocol=TCP --target-port=80 --name=webservice --type ClusterIP
#-----------------------------------------#
---
apiVersion: v1
kind: Service
metadata:name: webservice
spec:ports:- protocol: TCPport: 80targetPort: 80selector:app: apachetype: ClusterIP
#-----------------------------------------#
[root@master k8s]# kubectl get service
NAME         TYPE        CLUSTER-IP      EXTERNAL-IP   PORT(S)   AGE
kubernetes   ClusterIP   10.254.0.1      <none>        443/TCP   36h
webservice   ClusterIP   10.254.17.185   <none>        80/TCP    2s
[root@master k8s]# curl http://10.254.17.185
hello world.

get

# 显示一个或者多个资源信息
#-----------------------------------------#
[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 podkubectl run nginx --image=nginx

kustomize

# Kustomize 是一个独立的工具,用来通过 kustomization 文件定制 Kubernetes 对象# 参考文档: https://cloud.tencent.com/developer/article/1745189#-----------------------------------------#[root@master k8s]# vim kustomization.yaml ---apiVersion: kustomize.config.k8s.io/v1beta1kind: KustomizationsecretGenerator:- name: mysecretfiles:- password.txt[root@master k8s]# vim password.txt username=adminpassword=secret[root@master k8s]# kubectl kustomize ./apiVersion: v1data:password.txt: dXNlcm5hbWU9YWRtaW4KcGFzc3dvcmQ9c2VjcmV0Cg==kind: Secretmetadata:name: mysecret-2kdd8ckcc7type: Opaque[root@master k8s]# kubectl apply -k ./secret/mysecret-2kdd8ckcc7 created[root@master k8s]# kubectl get secrets NAME                  TYPE                                  DATA   AGEdefault-token-m7vbm   kubernetes.io/service-account-token   3      73dmysecret-2kdd8ckcc7   Opaque                                1      4s[root@master k8s]# kubectl delete -k ./secret "mysecret-2kdd8ckcc7" deleted

label

# 更新资源的标签#-----------------------------------------#[root@master k8s]# kubectl get pods --show-labels NAME    READY   STATUS    RESTARTS   AGE     LABELSmypod   1/1     Running   0          7m22s   <none>[root@master k8s]# kubectl label pod mypod app=webapppod/mypod labeled[root@master k8s]# kubectl get pods --show-labels NAME    READY   STATUS    RESTARTS   AGE     LABELSmypod   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   LABELSmypod   1/1     Running   0          68m   <none>

logs

# 显示 pod 中某容器的日志#-----------------------------------------#[root@master k8s]# kubectl get podNAME                     READY   STATUS    RESTARTS   AGEmypod                    1/1     Running   0          5h4m[root@master k8s]# kubectl logs mypod -c linux10.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: v1kind: PersistentVolumemetadata:name: mypvspec:capacity:storage: 5GivolumeMode: FilesystemaccessModes:- ReadWriteOncepersistentVolumeReclaimPolicy: RecyclehostPath:path: /var/webroottype: DirectoryOrCreate#-----------------------------------------#[root@master k8s]# kubectl get pvNAME   CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      AGEmypv   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 pvNAME   CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      AGEmypv   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 listThe following compatible plugins are available:/usr/local/bin/kubectl-gettaint[root@master k8s]# kubectl gettaintNodeName    Taintsmaster      [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 80Forwarding from 0.0.0.0:8080 -> 8080Forwarding from 0.0.0.0:80 -> 80#-----------------------------------------#[root@master local]# curl http://master:8080hello world.

proxy

# 运行一个 kubernetes API 服务器代理#-----------------------------------------#[root@master k8s]# kubectl proxy --port=80Starting to serve on 127.0.0.1:80#-----------------------------------------#[root@master k8s]# curl http://127.0.0.1/version{"major": "1","minor": "22","gitVersion": "v1.22.5","gitCommit": "c92036820499fedefec0f847e2054d824aea6cd1","gitTreeState": "clean","buildDate": "2021-10-27T18:35:25Z","goVersion": "go1.16.9","compiler": "gc","platform": "linux/amd64"}

replace

# 基于文件名或标准输入替换资源#-----------------------------------------#[root@master k8s]# kubectl replace --force -f mypod.yaml pod "mypod" deletedpod/mypod replaced

rollout

 

set

 

 
# 为资源对象设置功能特性
#-----------------------------------------#
[root@master k8s]# kubectl set env pods --all --list
# Pod mypod, container linux
[root@master k8s]# kubectl set env deployment/myweb myEnv=prod
deployment.apps/myweb env updated
[root@master k8s]# kubectl exec -i -t myweb-6c645646c9-pqjc7 -- sh -c 'echo ${myEnv}'
prod
[root@master k8s]# kubectl get deployments.apps myweb -o wide
NAME    READY   AGE   CONTAINERS   IMAGES                     SELECTOR
myweb   1/1     25s   httpd        registry:5000/myos:httpd   app=apache
[root@master k8s]# kubectl set image deployment/myweb httpd=registry:5000/myos:nginx
deployment.apps/myweb image updated
[root@master k8s]# kubectl get deployments.apps myweb -o wide
NAME    READY   AGE   CONTAINERS   IMAGES                     SELECTOR
myweb   1/1     45s   httpd        registry:5000/myos:nginx   app=apache

taint

 

 
# 在一个或者多个节点上更新污点配置
#-----------------------------------------#
[root@master k8s]# kubectl get nodes -o custom-columns=NodeName:.metadata.name,Taints:.spec.taints
NodeName    Taints
master      [map[effect:NoSchedule key:node-role.kubernetes.io/master]]
node-0001   <none>
[root@master k8s]# kubectl taint node node-0001 k=v:PreferNoSchedule
node/node-0001 tainted
[root@master k8s]# kubectl get nodes -o custom-columns=NodeName:.metadata.name,Taints:.spec.taints
NodeName    Taints
master      [map[effect:NoSchedule key:node-role.kubernetes.io/master]]
node-0001   [map[effect:PreferNoSchedule key:k value:v]]
[root@master k8s]# kubectl taint node node-0001 k-
node/node-0001 untainted
[root@master k8s]# kubectl get nodes -o custom-columns=NodeName:.metadata.name,Taints:.spec.taints
NodeName    Taints
master      [map[effect:NoSchedule key:node-role.kubernetes.io/master]]
# 管理资源的上线#-----------------------------------------#[root@master k8s]# kubectl rollout history deployment deployment.apps/myweb REVISION  CHANGE-CAUSE1         httpd.v12         httpd.v2[root@master k8s]# kubectl rollout undo deployment myweb --to-revision=1deployment.apps/myweb rolled back[root@master k8s]# kubectl rollout history deployment deployment.apps/myweb REVISION  CHANGE-CAUSE2         httpd.v23         httpd.v1run# 在集群中使用指定镜像启动容器#-----------------------------------------#[root@master k8s]# kubectl run mypod --image=registry:5000/myos:httpd#-----------------------------------------#---apiVersion: v1kind: Podmetadata:labels:run: mypodname: mypodspec:containers:- image: registry:5000/myos:httpdname: mypodrestartPolicy: Alwaysscale# 为可扩充资源设置一个新副本数量#-----------------------------------------#[root@master k8s]# kubectl apply -f myDeploy.yamldeployment.apps/myweb created[root@master ~]# kubectl get deployments.apps NAME    READY   UP-TO-DATE   AVAILABLE   AGEmyweb   1/1     1            1           21m[root@master ~]# kubectl scale deployment myweb --replicas=3deployment.apps/myweb scaled[root@master ~]# kubectl get deployments.apps NAME    READY   UP-TO-DATE   AVAILABLE   AGEmyweb   3/3     3            3           21m

top

# 显示资源(CPU /内存/存储)使用率#-----------------------------------------#[root@master k8s]# kubectl top nodesNAME        CPU(cores)   CPU%   MEMORY(bytes)   MEMORY%   master      90m          4%     1210Mi          14%       node-0001   45m          2%     931Mi           11%       [root@master k8s]# kubectl top podsNAME                     CPU(cores)   MEMORY(bytes)   mypod                    5m           8Mi[root@master k8s]# 

uncordon

# 解除(cordon、drain)资源不可调度标记#-----------------------------------------#[root@master k8s]# kubectl get nodesNAME        STATUS                     ROLES    AGE   VERSIONmaster      Ready                      master   15h   v1.22.5node-0001   Ready,SchedulingDisabled   node     15h   v1.22.5[root@master k8s]# kubectl uncordon node-0001 node/node-0001 uncordoned[root@master k8s]# kubectl get nodesNAME        STATUS   ROLES    AGE   VERSIONmaster      Ready    master   15h   v1.22.5node-0001   Ready    node     15h   v1.22.5

version

# 显示客户端和服务器的版本信息
#-----------------------------------------#
[root@master k8s]# kubectl version -o yaml
clientVersion:buildDate: "2021-10-27T18:41:28Z"compiler: gcgitCommit: c92036820499fedefec0f847e2054d824aea6cd1gitTreeState: cleangitVersion: v1.22.5goVersion: go1.16.9major: "1"minor: "22"platform: linux/amd64
serverVersion:buildDate: "2021-10-27T18:35:25Z"compiler: gcgitCommit: c92036820499fedefec0f847e2054d824aea6cd1gitTreeState: cleangitVersion: v1.22.5goVersion: go1.16.9major: "1"minor: "22"platform: linux/amd64
wait# 等待一个或多个资源达到某种状态
#-----------------------------------------#
---
kind: Pod
apiVersion: v1
metadata:name: mypod
spec:terminationGracePeriodSeconds: 0initContainers:- name: myinitimage: registry:5000/busybox:latestimagePullPolicy: IfNotPresentcommand: ["sleep", "10"]containers:- name: linuximage: registry:5000/busybox:latestimagePullPolicy: IfNotPresentcommand: ["sh", "-c"]args:- |echo "hello world !!!" >/var/www/index.htmlhttpd -v -f -p 0.0.0.0:80 -h /var/wwwrestartPolicy: Always
#-----------------------------------------#
[root@master k8s]# kubectl replace --force -f mypod.yaml 
pod "mypod" deleted
pod/mypod replaced
[root@master k8s]# time kubectl wait --for=condition=Ready pod/mypod
pod/mypod condition metreal    0m10.335s
user    0m0.034s
sys 0m0.008s

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/720347.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

图像检测 - 模板匹配方法(算法详解)

1、介绍 在如今深度学习、神经网络遍地的世界,检测已经很常见了。在深度学习领域,关于目标检测也提出了很多很成熟的算法,例如双阶段的Fast-RCNN、单阶段的YOLO系列等等。 尤其是YOLO系列的不断更新迭代,目标检测的任务变得不再困难,可以做到实时检测的跟踪等等 但对于数…

新手想玩硬件,买单片机还是树莓派好?

新手想玩硬件&#xff0c;买单片机还是树莓派好&#xff1f; 在开始前我有一些资料&#xff0c;是我根据网友给的问题精心整理了一份「单片机的资料从专业入门到高级教程」&#xff0c; 点个关注在评论区回复“888”之后私信回复“888”&#xff0c;全部无偿共享给大家&#x…

Springboot+vue的船舶监造系统(有报告)。Javaee项目,springboot vue前后端分离项目。

演示视频&#xff1a; Springbootvue的船舶监造系统&#xff08;有报告&#xff09;。Javaee项目&#xff0c;springboot vue前后端分离项目。 项目介绍&#xff1a; 本文设计了一个基于Springbootvue的船舶监造系统&#xff0c;采用M&#xff08;model&#xff09;V&#xff…

二百二十六、Linux——shell脚本查看今天日期、昨天日期、30天前日期、1月前日期

一、目的 由于磁盘资源有限&#xff0c;因为对原始数据的保存有事件限制&#xff0c;因为对于超过一定期限的数据文件则需要删除&#xff0c;要实现定期删除则第一步就是查看日期时间 二、在Linux中创建shell脚本 #! /bin/bash source /etc/profile nowdatedate --date0 da…

Linux 学习笔记(11)

十一、 资源监控 1 、 free 内存监控 语 法&#xff1a; free [-bkmotV][-s < 间隔秒数 >] 补充说明&#xff1a; free 指令会显示内存的使用情况&#xff0c;包括实体内存&#xff0c;虚拟的交换文件内存&#xff0c;共享内存区段&#xff0c;以 及系统核心使用的…

[计算机网络]:流量控制

一、流量控制简介 一条TCP连接的每一侧主机都为其设置了接收缓存&#xff0c;当TCP成功连接后&#xff0c;它发送的数据会放入接受缓存中。相关联的进程会从缓存中读取数据。但是存在一个问题&#xff0c;当某应用程序读取数据速率太慢&#xff0c;而发送数据一方不停的发送数…

5. 【Codeforces Round 927 (Div. 3)】B.查亚日历

B . 查亚日历 B.查亚日历 B.查亚日历 每次测试时限&#xff1a; 2 秒 每次测试时限&#xff1a;2 秒 每次测试时限&#xff1a;2秒 每次测试的内存限制&#xff1a; 256 兆字节 每次测试的内存限制&#xff1a;256 兆字节 每次测试的内存限制&#xff1a;256兆字节 题目描述 查…

【数据结构】复杂度详解

目录 &#xff08;一&#xff09;算法的复杂度 &#xff08;二&#xff09;时间复杂度 &#xff08;1&#xff09;练笔解释&#xff1a; i&#xff0c;示例1 ii&#xff0c;示例2 iii&#xff0c;二分查找 iv&#xff0c;斐波那契 &#xff08;三&#xff09;空间复杂度…

英福康INFICON真空计MPG400MPG401使用说明PPT讲解课件

英福康INFICON真空计MPG400MPG401使用说明PPT讲解课件

Java解决杨辉三角

Java解决杨辉三角 01 题目 给定一个非负整数 *numRows&#xff0c;*生成「杨辉三角」的前 numRows 行。 在「杨辉三角」中&#xff0c;每个数是它左上方和右上方的数的和。 示例 1: 输入: numRows 5 输出: [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]示例 2: 输入: numRo…

浏览器常见进程和线程

文章目录 进程和线程的联系和区别早期浏览器Chrome 打开一个页面有多少进程&#xff1f;分别是哪些渲染进程中的线程说下浏览器的进程、线程模型&#xff0c;线程模型中的每个线程都是干嘛用的&#xff1f;你知道哪些进程间通信的方式&#xff1f;多标签之间怎么通信&#xff1…

LeetCode 3069.将元素分配到两个数组中 I

给你一个下标从 1 开始、包含 不同 整数的数组 nums &#xff0c;数组长度为 n 。 你需要通过 n 次操作&#xff0c;将 nums 中的所有元素分配到两个数组 arr1 和 arr2 中。在第一次操作中&#xff0c;将 nums[1] 追加到 arr1 。在第二次操作中&#xff0c;将 nums[2] 追加到 …

计网面试题整理下

1. HTTP常见的状态码有哪些&#xff1f; 常见状态码&#xff1a; 200&#xff1a;服务器已成功处理了请求。 通常&#xff0c;这表示服务器提供了请求的网页。301 &#xff1a; (永久移动) 请求的网页已永久移动到新位置。 服务器返回此响应(对 GET 或 HEAD 请求的响应)时&am…

python c++混合编程-cmake

利用cmake将c文件编译成.so库文件&#xff0c;通过import调用 简单调用高级用法-调用c项目 简单调用 创建trypybind.cpp文件 #include <pybind11/pybind11.h> #include <iostream> namespace py pybind11; using namespace std; //绑定一个函数 int main() { co…

前端面试 跨域理解

2 实现 2-1 JSONP 实现 2-2 nginx 配置 2-2 vue 开发中 webpack自带跨域 2 -3 下载CORS 插件 或 chrome浏览器配置跨域 2-4 通过iframe 如&#xff1a;aaa.com 中读取bbb.com的localStorage 1)在aaa.com的页面中&#xff0c;在页面中嵌入一个src为bbb.com的iframe&#x…

vscode ctrl+左键不能转到定义修理

找到C_Cpp: Intelli Sense Engine&#xff0c;改成disable&#xff0c;再改成默认就可以了原来是当前的工作目录不包括函数定义的文件&#xff0c;调整一下工作目录即可。或者&#xff0c; "includePath": [ "${workspaceFolder}/**", …

云原生环境中的自动化测试成功案例分析

在云原生环境中,DevOps通过结合云原生技术和持续集成/持续部署(CI/CD)流程,实现了软件的快速交付和质量保证。自动化测试是DevOps实践中的重要组成部分,它能够提高测试的效率和覆盖率,从而加速软件的交付周期并确保软件质量[3][5][13]。 成功案例之一是视野数科利用SAE和…

在全志V853平台上成功部署深度学习步态识别算法

北理工通信课题组辛喆同学在本科毕业设计《基于嵌入式系统的步态识别的研究》中&#xff0c;成功将深度步态识别算法GaitSet移植到全志V853开发板上。本研究在CASIA-B数据集上进行测试&#xff0c;正常行走状态下该系统的步态识别准确率达到了94.9%&#xff0c;背包行走和穿外套…

C++基于多设计模式下的同步异步日志系统day5

C基于多设计模式下的同步&异步日志系统day5 &#x1f4df;作者主页&#xff1a;慢热的陕西人 &#x1f334;专栏链接&#xff1a;C基于多设计模式下的同步&异步日志系统 &#x1f4e3;欢迎各位大佬&#x1f44d;点赞&#x1f525;关注&#x1f693;收藏&#xff0c;&am…

scau:程序设计与算法基础 18104 练习使用多case解题

18104 练习使用多case解题 时间限制:1000MS 代码长度限制:10KB 提交次数:0 通过次数:0 题型: 编程题 语言: G;GCC Description 多CASE的问题在般有3种情形&#xff1a;&#xff08;1&#xff09;有一个数字开始表明CASE数目&#xff1b;&#xff08;2&#xff09;以特殊标…