pod管理及优化

一、k8s中的资源

1、资源介绍

root@k8s-master \~\]# kubectl --namespace timinglee get po No resources found in timinglee namespace. \[root@k8s-master \~\]# kubectl run testpod --image timinglee/nginx \[root@k8s-master \~\]# kubectl get pods -w NAME READY STATUS RESTARTS AGE testpod 0/1 ContainerCreating 0 19s \[root@k8s-master \~\]# kubectl delete pods testpod --force

2、资源管理方式

2.1 命令式对象管理

2.2 资源类型

k8s中所有的内容都抽象为资源

kubectl api-resources

常用资源类型
kubect常见命令操作

2.3 基本命令示例

root@k8s-master \~\]# kubectl get deployments.apps lee NAME READY UP-TO-DATE AVAILABLE AGE lee 2/2 2 2 7m10s \[root@k8s-master \~\]# kubectl edit deployments.apps lee deployment.apps/lee edited ![](https://i-blog.csdnimg.cn/direct/c8f385520f8348fb81443508bc18d215.png) > \[root@k8s-master \~\]# kubectl get deployments.apps lee > > NAME READY UP-TO-DATE AVAILABLE AGE > > lee 4/4 4 4 8m44s > > #####打补丁 > > \[root@k8s-master \~\]# kubectl patch deployments.apps lee -p '{"spec":{"replicas":2}}' > > deployment.apps/lee patched > > \[root@k8s-master \~\]# kubectl get deployments.apps lee > > NAME READY UP-TO-DATE AVAILABLE AGE > > lee 2/2 2 2 11m > > \[root@k8s-master \~\]# kubectl delete deployments.apps lee > > deployment.apps "lee" deleted > > \[root@k8s-master \~\]# kubectl get pods > > NAME READY STATUS RESTARTS AGE > > myapp1 1/1 Running 1 (16m ago) 18m ### 3、运行和调试命令 #### 运行pod **\[root@k8s-master \~\]# kubectl run testpod --image nginx** pod/testpod created \[root@k8s-master \~\]# kubectl get pods NAME READY STATUS RESTARTS AGE testpod 1/1 Running 0 5s \[root@k8s-master \~\]# kubectl get pods -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES testpod 1/1 Running 0 44s 10.244.1.3 k8s-node2.timinglee.org \ \ #### 端口暴露 ![](https://i-blog.csdnimg.cn/direct/ad6e999051634732aeff8268ea0928ac.png) ![](https://i-blog.csdnimg.cn/direct/4bc83d777a2e491bb1f69e56bb3de01f.png) #### ####编写控制器配置 \[root@k8s-master \~\]# kubectl edit service testpod service/testpod edited ![](https://i-blog.csdnimg.cn/direct/4daca645b0cc479b97b467d2696c05a1.png) ![](https://i-blog.csdnimg.cn/direct/70f522e47d914c11addb5515bc18ce72.png) ![](https://i-blog.csdnimg.cn/direct/f9ad15db33104802b7e84a1e4d509ce6.png) ![](https://i-blog.csdnimg.cn/direct/b129e1401cd94b8c8df17943d9550d25.png) #### ###利用补丁修改控制器配置 \[root@k8s-master \~\]# kubectl patch service testpod -p '{"spec":{"type":"ClusterIP"}}' service/testpod patched ![](https://i-blog.csdnimg.cn/direct/5f7e7f02a6cb4daa86445600e30eb509.png) #### ###删除 \[root@k8s-master \~\]# kubectl delete service testpod #### 查看资源详细信息 ![](https://i-blog.csdnimg.cn/direct/dd28062fe009497bb953f069bed3f267.png) #### 查看日志 #### ![](https://i-blog.csdnimg.cn/direct/48ce2b74fe1d4fe1ac9e21b9ec873237.png) 运行交互pod \[root@reg \~\]# docker push reg.timinglee.org/library/busybox:latest The push refers to repository \[reg.timinglee.org/library/busybox

d51af96cf93e: Layer already exists

latest: digest: sha256:28e01ab32c9dbcbaae96cf0d5b472f22e231d9e603811857b295e61197e40a9b size: 527

###ctrl+pq退出不停止pod

运行非交互pod

root@k8s-master \~\]# kubectl run nginx --image nginx pod/nginx created #### ##进入已经运行的容器,且容器有交互环境 ![](https://i-blog.csdnimg.cn/direct/010c4cadefaf49d49403eef53889d627.png) #### ###在已经运行的pod中运行指定命令![](https://i-blog.csdnimg.cn/direct/2da51563a06b41a4afe04b3479387a33.png) #### ###日志文件到pod中![](https://i-blog.csdnimg.cn/direct/7ce400c274e44095b8b2f54deb2cc794.png) #### 复制pod文件到本机 \[root@k8s-master \~\]# kubectl cp nginx:/boot/ anaconda-ks.cfg tar: Removing leading \`/' from member names ### 4、高级命令示例 ![](https://i-blog.csdnimg.cn/direct/9aedfa9da5ff44fd8a18b7f5c4bf85e4.png) \[root@k8s-master \~\]# vim testpod1.yml ![](https://i-blog.csdnimg.cn/direct/6bb24d09b7e147529f06d79ea5576d4b.png) ![](https://i-blog.csdnimg.cn/direct/f5343ca0c6794f0d905044a597d2a22f.png)![](https://i-blog.csdnimg.cn/direct/081b58b1bbf6499dbf197f7953d37494.png) > \[root@k8s-master \~\]# docker tag timinglee/myapp:v1 reg.timinglee.org/library/myapp:v1 > > \[root@k8s-master \~\]# docker tag timinglee/myapp:v2 reg.timinglee.org/library/myapp:v2 > > \[root@k8s-master \~\]# docker tag busyboxplus:latest reg.timinglee.org/library/busyboxplus:latest > > \[root@k8s-master \~\]# docker push reg.timinglee.org/library/myapp:v1 > > \[root@k8s-master \~\]# docker push reg.timinglee.org/library/myapp:v2 > > \[root@k8s-master \~\]# docker push reg.timinglee.org/library/busyboxplus:latest \[root@k8s-master \~\]# kubectl get pods No resources found in default namespace. \[root@k8s-master \~\]# kubectl run testpod1 --image nginx --dry-run=client -o yaml \> testpod1.yml \[root@k8s-master \~\]# vim testpod1.yml ![](https://i-blog.csdnimg.cn/direct/7ee7cf9621fb47279bbdca51851f4d21.png) \[root@k8s-master \~\]# kubectl create -f testpod1.yml pod/myapp1 created \[root@k8s-master \~\]# vim testpod1.yml ![](https://i-blog.csdnimg.cn/direct/1cc324d15fcf4a5b9e04ef3859278d67.png) \[root@k8s-master \~\]# kubectl create -f testpod1.yml Error from server (AlreadyExists): error when creating "testpod1.yml": pods "myapp1" already exists ![](https://i-blog.csdnimg.cn/direct/6d47a0a6ea4f43699cf29359089d8394.png) #### **##################################** \[root@k8s-master \~\]# kubectl get pods NAME READY STATUS RESTARTS AGE myapp1 1/1 Running 1 (16m ago) 18m \[root@k8s-master \~\]# kubectl delete pods myapp1 pod "myapp1" deleted \[root@k8s-master \~\]# kubectl get pods No resources found in default namespace. #### ![](https://i-blog.csdnimg.cn/direct/1784da7516f04b85861aa9bcfe8bfffb.png) ####生成控制器 \[root@k8s-master \~\]# kubectl create deployment lee --image myapp:v1 --dry-run=client -o yaml \> deployment.yml \[root@k8s-master \~\]# vim deployment.yml ![](https://i-blog.csdnimg.cn/direct/845011ff8ceb451aa7eaae694873a41a.png) \[root@k8s-master \~\]# vim deployment.yml ![](https://i-blog.csdnimg.cn/direct/85e513fb5a4848508ff071f8400a6f9f.png) \[root@k8s-master \~\]# kubectl apply -f deployment.yml deployment.apps/lee created \[root@k8s-master \~\]# kubectl get deployments.apps lee NAME READY UP-TO-DATE AVAILABLE AGE lee 2/2 2 2 12s 查看详细信息 ![](https://i-blog.csdnimg.cn/direct/816ed327660d4a008dc38dd6fac16508.png) #### 删除 \[root@k8s-master \~\]# kubectl delete -f deployment.yml deployment.apps "lee" deleted \[root@k8s-master \~\]# kubectl get deployments.apps No resources found in default namespace. ### 资源标签 \[root@k8s-master \~\]# kubectl apply -f deployment.yml deployment.apps/lee created \[root@k8s-master \~\]# kubectl get pods --show-labels NAME READY STATUS RESTARTS AGE LABELS lee-579c757b65-8lvlh 1/1 Running 0 20s app=lee,pod-template-hash=579c757b65 lee-579c757b65-ptmkt 1/1 Running 0 20s app=lee,pod-template-hash=579c757b65 \[root@k8s-master \~\]# watch -n 1 kubectl get pods --show-labels ![](https://i-blog.csdnimg.cn/direct/d8faedda66844e65a703543fca07b2a8.png) ![](https://i-blog.csdnimg.cn/direct/cbb49567893d4f0c9030fad5eca60605.png) ![](https://i-blog.csdnimg.cn/direct/1cbd09877821474a8116e5a343bc2ede.png) ![](https://i-blog.csdnimg.cn/direct/1a9a6cc5e1c347419487b9633cfbc8ef.png)![](https://i-blog.csdnimg.cn/direct/877cb55da33b4b28a9b6ead3edf315b7.png) ## 二、什么是pod * Pod是可以创建和管理Kubernetes计算的最小可部署单元 * 一个Pod代表着集群中运行的一个进程,每个pod都有一个唯一的ip * 一个pod类似一个豌豆荚,包含一个或多个容器(通常是docker) * 多个容器间共享IPC、Network和UTC namespace ### 1、创建自主式pod (生产不推荐) #### 优点: **灵活性高:** * 可以精确控制 Pod 的各种配置参数,包括容器的镜像、资源限制、环境变量、命令和参数等,满足特定的应用需求。 **学习和调试方便:** * 对于学习 Kubernetes 的原理和机制非常有帮助,通过手动创建 Pod 可以深入了解 Pod 的结构和配置方式。在调试问题时,可以更直接地观察和调整Pod的设置。 **适用于特殊场景:** * 在一些特殊情况下,如进行一次性任务、快速验证概念或在资源受限的环境中进行特定配置时,手动创建 Pod 可能是一种有效的方式 #### 缺点: **管理复杂:** * 如果需要管理大量的 Pod,手动创建和维护会变得非常繁琐和耗时。难以实现自动化的扩缩容、故障恢复等操作。 **缺乏高级功能:** * 无法自动享受 Kubernetes 提供的高级功能,如自动部署、滚动更新、服务发现等。这可能导致应用的部署和管理效率低下。 **可维护性差:** * 手动创建的 Pod 在更新应用版本或修改配置时需要手动干预,容易出现错误,并且难以保证一致性。相比之下,通过声明式配置或使用 Kubernetes 的部署工具可以更方便地进行应用的维护和更新。 ![](https://i-blog.csdnimg.cn/direct/33bcbe00104d43d1b4fb13d42196d676.png)![](https://i-blog.csdnimg.cn/direct/4c4c8bd72d0d4444814cac55be2f553a.png) ### 2、利用控制器管理pod (推荐) #### 高可用性和可靠性: * 自动故障恢复:如果一个Pod 失败或被删除,控制器会自动创建新的 Pod 来维持期望的副本数量。确保应用始终处于可用状态,减少因单个Pod故障导致的服务中断。 * 健康检查和自愈;可以配置控制器对 Pod 进行健康检查(如存活探针和就绪探针)。如果 Pod 不健康,控制器会采取适当的行动,如重启Pod 或删除并重新创建它,以保证应用的正常运行。 #### 可扩展性: * 轻松扩缩容:可以通过简单的命令或配置更改来增加或减少 Pod 的数量,以满足不同的工作负载需求。例如,在高流量期间可以快速扩展以处理更多请求,在低流量期间可以缩容以节省资源。 * 水平自动扩缩容(HPA):可以基于自定义指标(如CPU利用率、内存使用情况或应用特定的指标)自动调整Pod的数量,实现动态的资源分配和成本优化, #### 版本管理和更新: * 滚动更新:对于 Deployment 等控制器,可以执行滚动更新来逐步替换旧版本的 Pod 为新版本确保应用在更新过程中始终保持可用。可以控制更新的速率和策略,以减少对用户的影响。 * 回滚:如果更新出现问题,可以轻松回滚到上一个稳定版本,保证应用的稳定性和可靠性 #### 声明式配置: * 简洁的配置方式:使用YAML 或JSON格式的声明式配置文件来定义应用的部署需求。这种方式使得配置易于理解、维护和版本控制,同时也方便团队协作。 * 期望状态管理;只需要定义应用的期望状态(如副本数量、容器镜像等),控制器会自动调整实际状态与期望状态保持一致。无需手动管理每个Pod的创建和删除,提高了管理效率。 #### 服务发现和负载均衡: * 自动注册和发现:Kubernetes中的服务(Service)可以自动发现由控制器管理的Pod,并将流量路由到它们。这使得应用的服务发现和负载均衡变得简单和可靠,无需手动配置负载均衡器 * 流量分发:可以根据不同的策略(如轮询、随机等)将请求分发到不同的Pod,提高应用的性能和可用性。 #### 多环境一致性: * 一致的部署方式:在不同的环境(如开发、测试、生产)中,可以使用相同的控制器和配置来部署应用,确保应用在不同环境中的行为一致。这有助于减少部署差异和错误,提高开发和运维效率。 ![](https://i-blog.csdnimg.cn/direct/20a8e720d88e44a985f46b6370bf9b37.png)![](https://i-blog.csdnimg.cn/direct/ca9d7a61ce0145cc89adecfd495f5cb8.png) ### 实验 \[root@k8s-master \~\]# vim testpod1.yml ![](https://i-blog.csdnimg.cn/direct/56495adfd7d34badaf52f4f086bd0f4b.png) ![](https://i-blog.csdnimg.cn/direct/ab8a32b447994a0ab6e987ff956b442a.png) \[root@k8s-master \~\]# kubectl logs pods/myapp1 web2 ####web2的80端口被web1占用 ![](https://i-blog.csdnimg.cn/direct/a3565030f7f74d76b34baf3e9e2965cc.png)\[root@k8s-master \~\]# kubectl delete -f testpod1.yml pod "myapp1" deleted \[root@k8s-master \~\]# vim testpod1.yml ![](https://i-blog.csdnimg.cn/direct/a654efc9e4ef4bf192b63ea1cf1f82c0.png) ![](https://i-blog.csdnimg.cn/direct/3c877673b75542d2b70843f6dc4863e0.png)![](https://i-blog.csdnimg.cn/direct/55ae37a7600b4e5182eae8796882b808.png) \[root@k8s-master \~\]# kubectl delete -f testpod1.yml pod "myapp1" deleted ![](https://i-blog.csdnimg.cn/direct/4964e4ab417747d8b4a0f52bd854e8ee.png) ![](https://i-blog.csdnimg.cn/direct/6583521c03e549ccbfcc80786f463baa.png) ![](https://i-blog.csdnimg.cn/direct/50cd0759f58b40cea9ed22772e7d483f.png) #### 自动注册和发现 \[root@k8s-master \~\]# vim deployment.yml ![](https://i-blog.csdnimg.cn/direct/579cdc979a9b4e3b9ef4ae252fb4c492.png) \[root@k8s-master \~\]# kubectl apply -f deployment.yml deployment.apps/lee created \[root@k8s-master \~\]# kubectl get deployments.apps NAME READY UP-TO-DATE AVAILABLE AGE lee 2/2 2 2 16s ![](https://i-blog.csdnimg.cn/direct/22c71509ce6c47d6bd37a82ec817897c.png) ![](https://i-blog.csdnimg.cn/direct/8839f98a16ec41d39f5c380f1c4a9664.png)![](https://i-blog.csdnimg.cn/direct/31be90dbd8084e938a895a278d70f31e.png) ![](https://i-blog.csdnimg.cn/direct/497c85a93e87439e972ad56847c754a1.png) > 扩容 > > \[root@k8s-master \~\]# kubectl scale deployment lee --replicas 4 > > deployment.apps/lee scaled > > \[root@k8s-master \~\]# kubectl get deployments.apps > > NAME READY UP-TO-DATE AVAILABLE AGE > > lee 4/4 4 4 11m > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-jpb6g > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-hstck > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-j98ss > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-jpb6g > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-hstck > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-5mp22 > > \[root@k8s-master \~\]# curl 10.99.148.75/hostname.html > > lee-579c757b65-5mp22 > ![](https://i-blog.csdnimg.cn/direct/4018fa807e8d4c18af66347d9b312528.png) > > \[root@k8s-master \~\]# kubectl delete service lee > > service "lee" deleted > > \[root@k8s-master \~\]# kubectl delete -f deployment.yml > > deployment.apps "lee" deleted > 建立pod > > ![](https://i-blog.csdnimg.cn/direct/38f2d15528444cc4b8f105a2e84bc0e2.png) ![](https://i-blog.csdnimg.cn/direct/52e913e859694880a9c08f1c48835074.png) > > ![](https://i-blog.csdnimg.cn/direct/f9cae687aaa946edaf66c3d8f8231d0b.png) ### 3、k8s中pod更新及回滚 ![](https://i-blog.csdnimg.cn/direct/6f5abe64ddcb4d3f8c54278c3b97609b.png) ![](https://i-blog.csdnimg.cn/direct/ce879b910aa8431eb7bbcadf816c163b.png) \[root@k8s-master \~\]# curl 10.244.1.19 Hello MyApp \| Version: v1 \| \Pod Name\ ![](https://i-blog.csdnimg.cn/direct/5d8d2979e46d4e209e4c17025d8b0760.png)![](https://i-blog.csdnimg.cn/direct/abe6be443b044e7797b775e53a750a62.png) #### 更新版本 \[root@k8s-master \~\]# kubectl rollout history deployment timinglee deployment.apps/timinglee REVISION CHANGE-CAUSE 1 \ ![](https://i-blog.csdnimg.cn/direct/a588923c49fa40ee9279d34b3812c609.png) ![](https://i-blog.csdnimg.cn/direct/fc186c6e556c4c548afaa96c0f244337.png)\[root@k8s-master \~\]# curl 10.108.221.114 Hello MyApp \| Version: v2 \| \Pod Name\ #### 回滚 \[root@k8s-master \~\]# kubectl rollout undo deployment timinglee --to-revision 1 deployment.apps/timinglee rolled back \[root@k8s-master \~\]# curl 10.108.221.114 Hello MyApp \| Version: v1 \| \Pod Name\ \[root@k8s-master \~\]# curl 10.108.221.114 Hello MyApp \| Version: v1 \| \Pod Name\ ### 4、利用yaml文件部署应用 #### 4.1用yaml文件部署应用有以下优点 **声明式配置:** * 清晰表达期望状态:以声明式的方式描述应用的部署需求,包括副本数量、容器配置、网络设置等。这使得配置易于理解和维护,并且可以方便地查看应用的预期状态 * 可重复性和版本控制:配置文件可以被版本控制,确保在不同环境中的部署一致性。可以轻松回滚到以前的版本或在不同环境中重复使用相同的配置, * 团队协作:便于团队成员之间共要和协作,大家可以对配置文件进行审查和修改,提高部署的可靠性和稳定性。 * **灵活性和可扩展性:** * 丰富的配置选项:可以通过 YAML 文件详细地配置各种 Kubernetes 资源,如 Deployment、Service、ConfigMap、Secret等。可以根据应用的特定需求进行高度定制化。 * 组合和扩展:可以将多个资源的配置组合在一个或多个 YAML文件中,实现复杂的应用部署架构同时,可以轻松地添加新的资源或修改现有资源以满足不断变化的需求。 **与工具集成:** * 与CI/CD 流程集成:可以将 YAML 配置文件与持续集成和持续部署(CIVCD)工具集成,实现自动化的应用部署。例如,可以在代码提交后自动触发部署流程,使用配置文件来部署应用到不同的环境。 * 命令行工具支持:Kubernetes 的命令行工具 kubect\] 对 YAML 配置文件有很好的支持,可以方便地应用、更新和删除配置。同时,还可以使用其他工具来验证和分析 YAML 配置文件,确保其正确性和安全性。 #### 4.2 资源清单参数 ![](https://i-blog.csdnimg.cn/direct/0baf9767fc844dc892562774b5d10f71.png)![](https://i-blog.csdnimg.cn/direct/0ee7bc4d0adc4367bff2df763df325d7.png) ![](https://i-blog.csdnimg.cn/direct/f9a2caa050a84eebbd616f72eef76a79.png) ![](https://i-blog.csdnimg.cn/direct/7b94296e647e4241a174ff57ce370404.png) ![](https://i-blog.csdnimg.cn/direct/b0924e4ad8a948b2a31dfac935641a45.png) ![](https://i-blog.csdnimg.cn/direct/849b84e2e63449b6bc7577e69cc3c376.png) ##### 实验 ![](https://i-blog.csdnimg.cn/direct/39f49b690b624c74b4f3e7ad0e3daa07.png) ![](https://i-blog.csdnimg.cn/direct/d8235455f5d74d85af3e3da0469e6381.png) \[root@k8s-master pod\]# kubectl run lee --image myapp:v1 --dry-run=client -o yaml \> lee.yml \[root@k8s-master pod\]# vim lee.yml ![](https://i-blog.csdnimg.cn/direct/15a9ee343f624d83a31c9917f39214e8.png) \[root@k8s-master pod\]# kubectl apply -f lee.yml pod/lee created \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE lee 1/1 Running 0 5s timinglee-c56f584cf-6jxb7 1/1 Running 0 23m timinglee-c56f584cf-mwrx8 1/1 Running 0 23m \[root@k8s-master pod\]# kubectl create namespace leespace namespace/leespace created \[root@k8s-master pod\]# kubectl get namespaces NAME STATUS AGE default Active 11h kube-flannel Active 11h kube-node-lease Active 11h kube-public Active 11h kube-system Active 11h leespace Active 15s \[root@k8s-master pod\]# vim lee.yml ![](https://i-blog.csdnimg.cn/direct/dcde4a0434344ad69611b2cb4fdd3b89.png) \[root@k8s-master pod\]# kubectl apply -f lee.yml pod/lee created \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE lee 1/1 Running 0 12m timinglee-c56f584cf-6jxb7 1/1 Running 0 35m timinglee-c56f584cf-mwrx8 1/1 Running 0 35m \[root@k8s-master pod\]# kubectl delete pods lee pod "lee" deleted \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee-c56f584cf-6jxb7 1/1 Running 0 37m timinglee-c56f584cf-mwrx8 1/1 Running 0 37m \[root@k8s-master pod\]# kubectl -n leespace get pods NAME READY STATUS RESTARTS AGE lee 1/1 Running 0 2m2s \[root@k8s-master pod\]# kubectl delete -f lee.yml pod "lee" deleted ![](https://i-blog.csdnimg.cn/direct/21fafe07b2e74065ba9668045f6390b8.png) #### 4.3 获取资源帮助 ![](https://i-blog.csdnimg.cn/direct/3ab842c420b5416ea3913c9510df2c2d.png) #### 4.4 编写示例 k8s中pod的yml写法及资源详解 ##### 运行一个简单的单个容器pod \[root@k8s-master yaml\]# kubectl run timinglee --image myapp:v1 --dry-run=client -o yaml \> pod.yml \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/7951299cb01b440d954653a7556b7fe1.png) ##### 运行多个容器pod-------共享一个网络站 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/ae83539132a542619aeaa14caed0b161.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl get pods timinglee NAME READY STATUS RESTARTS AGE timinglee 2/2 Running 0 36s \[root@k8s-master yaml\]# kubectl describe pods timinglee ![](https://i-blog.csdnimg.cn/direct/bc521d3ea3634ad68de53c7f94459639.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml --force \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/e60ec08e13224ddea636cb16f48b233e.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl get pods timinglee NAME READY STATUS RESTARTS AGE timinglee 2/3 Error 1 (4s ago) 10s \[root@k8s-master yaml\]# kubectl describe pods timinglee ![](https://i-blog.csdnimg.cn/direct/a8f14cc28464496b845588116e6224e2.png) ![](https://i-blog.csdnimg.cn/direct/3f74e5b340164e1e9ffcec8e15187cca.png) ![](https://i-blog.csdnimg.cn/direct/33c43ba5b98544bd81d28926f8811234.png) ![](https://i-blog.csdnimg.cn/direct/abbf0fe3aaff4051867ff7098d02252c.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted ##### 理解pod间的网络整合 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/45df337984e74ba4a49cc21897c53909.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl exec pods/timinglee -c busyboxplus -it -- /bin/sh / # curl localhost Hello MyApp \| Version: v1 \| \Pod Name\ \[root@k8s-master yaml\]# kubectl delete -f pod.yml --force ##### 端口映射 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/f2fcf166f8ea46d387095228beaf0824.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created ![](https://i-blog.csdnimg.cn/direct/c227b79112ff42908ed5f60e0a549910.png) 若端口没有暴露,则不能访问 \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/625c7a2780e44ea5bfddfa7035a7f9d2.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created ![](https://i-blog.csdnimg.cn/direct/b0d295de12514d1fbfe57c2aa968e4ff.png) ##### ![](https://i-blog.csdnimg.cn/direct/65e542eac25b487a9336da96ce3a67e4.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted ##### 如何设定环境变量 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/b022339dff26430e8bc24bca2c1fce02.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 1/1 Running 0 62s timinglee-c56f584cf-6jxb7 1/1 Running 0 11h timinglee-c56f584cf-mwrx8 1/1 Running 0 11h \[root@k8s-master yaml\]# kubectl logs pods/timinglee busybox timinglee \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted ##### 资源限制 ![](https://i-blog.csdnimg.cn/direct/e2e1871af32f4cb4bc550b7bbf85df3d.png)![](https://i-blog.csdnimg.cn/direct/3b13fb48f0224c9c852efd98d785b678.png) \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/c3ef6fecc9c3442c8a67fa6e23dfa0ab.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl get pods timinglee NAME READY STATUS RESTARTS AGE timinglee 1/1 Running 0 22s \[root@k8s-master yaml\]# kubectl describe pods timinglee ![](https://i-blog.csdnimg.cn/direct/ef1fa6ab9ba945d896acce38044e1254.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted 资源敏感型 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/8dfdd360232b496c86f915a65bb4980e.png) \[root@k8s-master yaml\]# kubectl describe pods timinglee ![](https://i-blog.csdnimg.cn/direct/ded369e279274dd0a5599f98c25e467a.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted ##### 容器启动管理 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/f88d45596ee7490fb8f79ac352f1537f.png) ![](https://i-blog.csdnimg.cn/direct/fc97a7a8142d4f4e9eecead3d2890807.png) ![](https://i-blog.csdnimg.cn/direct/c49e6a3cd0604bb4a14fa7411c414dd0.png) \[root@k8s-master yaml\]# kubectl describe pods timinglee ![](https://i-blog.csdnimg.cn/direct/ca0907d86f164297b8886f3f38727d2d.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/e6785ec9a300441f90b7e792624230ff.png) ![](https://i-blog.csdnimg.cn/direct/88254299ba874266aa59280f96ced4d8.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/644d287a35894a6c91d5ffe98e46a1c5.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created ![](https://i-blog.csdnimg.cn/direct/2c0e66af8335432f857866bcbf41a3cf.png) ####异常 \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/ca7263d2e32048d3ae8dbab9ce841cfa.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 0/1 Error 0 2s timinglee-c56f584cf-6jxb7 1/1 Running 0 12h timinglee-c56f584cf-mwrx8 1/1 Running 0 12h \[root@k8s-master yaml\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 0/1 CrashLoopBackOff 2 (12s ago) 30s timinglee-c56f584cf-6jxb7 1/1 Running 0 12h timinglee-c56f584cf-mwrx8 1/1 Running 0 12h \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted ##### 选择运行节点 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/1bfa3aeb0c524f8b89ef9b973879351c.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created ![](https://i-blog.csdnimg.cn/direct/b360d8a80750467ab27c5da3b69b7d37.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted ##### 共享宿主机网络 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/5c10f8e67ea448b18d38360054f66f57.png) ![](https://i-blog.csdnimg.cn/direct/5066b545fac94518840605a66e6fb5e7.png) \[root@k8s-master yaml\]# kubectl delete -f pod.yml pod "timinglee" deleted 宿主机网络 \[root@k8s-master yaml\]# vim pod.yml ![](https://i-blog.csdnimg.cn/direct/4b138c04449f4130aefc6fc0e6eeb6a2.png) \[root@k8s-master yaml\]# kubectl apply -f pod.yml pod/timinglee created \[root@k8s-master yaml\]# kubectl exec pods/timinglee -c busybox -it -- /bin/sh / # / # ifconfig ![](https://i-blog.csdnimg.cn/direct/59c5dbf5bd5d4c14a3045f2a71c33367.png) ## ![](https://i-blog.csdnimg.cn/direct/8e763477d26043829ddd5db02194ce8f.png)三、pod的生命周期 ![](https://i-blog.csdnimg.cn/direct/7bb828d968f143b0bfed84d43401d6d2.png) ### 1、INIT容器的功能 * Init容器可以包含一些安装过程中应用容器中不存在的实用工具或个性化代码。 * Init容器可以安全地运行这些工具,避免这些工具导致应用镜像的安全性降低。 * 应用镜像的创建者和部署者可以各自独立工作,而没有必要联合构建一个单独的应用镜像。 * Init 容器能以不同于Pod内应用容器的文件系统视图运行。因此,Init容器可具有访问 Secrets 的权限,而应用容器不能够访问。 * 由于 Init 容器必须在应用容器启动之前运行完成,因此 Init 容器提供了一种机制来阻塞或延迟应用容器的启动,直到满足了一组先决条件。一旦前置条件满足,Pod内的所有的应用容器会并行启动。 ### 2、INIT容器示例 ![](https://i-blog.csdnimg.cn/direct/38877363dc72419d9522d207fc7c213b.png) \[root@k8s-master pod\]# kubectl run timinglee --image myapp:v1 --dry-run=client -o yaml \> timinglee.yml \[root@k8s-master pod\]# vim timinglee.yml ![](https://i-blog.csdnimg.cn/direct/b7916e24dc7f4fe08e5c0bfdd6342e98.png) \[root@k8s-master pod\]# kubectl apply -f timinglee.yml pod/timinglee created \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 1/1 Running 0 43s timinglee-c56f584cf-6jxb7 1/1 Running 0 12h timinglee-c56f584cf-mwrx8 1/1 Running 0 12h \[root@k8s-master pod\]# kubectl delete -f timinglee.yml --force \[root@k8s-master pod\]# vim timinglee.yml ![](https://i-blog.csdnimg.cn/direct/f0507371154e4b3396e75ad1d82d6415.png) ![](https://i-blog.csdnimg.cn/direct/076454f36b7d46cf9d4e2e4ad3629e02.png) ![](https://i-blog.csdnimg.cn/direct/7af1e5de8b054410b3274829ab08bc50.png) \[root@k8s-master pod\]# kubectl delete -f timinglee.yml pod "timinglee" deleted ### 3、 探针 #### 探针是由kubelet对容器执行的定期诊断 * ExecAction:在容器内执行指定命令。如果命令退出时返回码为0则认为诊断成功 * TCPSocketAction:对指定端口上的容器的 IP 地址进行 TCP 检查。如果端口打开,则诊断被认为是成功的。 * HTTPGetAction:对指定的端口和路径上的容器的 IP 地址执行 HTTP Get 请求。如果响应的状态码大于等于200 且小于 400,则诊断被认为是成功的。 每次探测都将获得以下三种结果之一 * 成功:容器通过了诊断, * 失败:容器未通过诊断。 * 未知:一断失败, 因此不会采取任何行动 #### Kubelet 可以选择是否执行在容器上运行的三种探针执行和做出反应 * livenessProbe:指示容器是否正在运行,如果存活探测失败,则 kubelet 会杀死容器,并且容器将受到其 重启策略 的影响。如果容器不提供存活探针,则默认状态为 Success, * readinessProbe:指示容器是否准备好服务请求。如果就绪探测失败,端点控制器将从与 Pod 匹配的所有 Service 的端点中删除该 Pod 的IP 地址。初始延迟之前的就绪状态默认为 Failure。如果容器不提供就绪探针,则默认状态为 Success. * startupProbe:指示容器中的应用是否已经启动。如果提供了启动探测(startup probe),则禁用所有其他探测,直到它成功为止。如果启动探测失败,kubelet 将杀死容器,容器服从其重启策略进行重启。如果容器没有提供启动探测,则默认状态为成功Success。 #### ReadinessProbe 与 LivenessProbe 的区别 * ReadinessProbe当检测失败后,将Pod的IP:Port从对应的EndPoint列表中删除。 * LivenessProbe 当检测失败后,将杀死容器并根据 Pod 的重启策略来决定作出对应的措施StartupProbe与 #### ReadinessProbe、LivenessProbe的区别 * 如果三个探针同时存在,先执行 StartupProbe 探针,其他两个探针将会被暂时禁用,直到 pod 满足 StartupProbe 探针配置的条件,其他2个探针启动,如果不满足按照规则重启容器。 * 另外两种探针在容器启动后,会按照配置,直到容器消亡才停止探测,而 StartupProbe 探针只是在容器启动后按照配置满足一次后,不在进行后续的探测。 #### 3.1 探针实例 ##### 3.1.1存活探针示例: \[root@k8s-master pod\]# ls lee.yml timinglee.yml \[root@k8s-master pod\]# vim timinglee.yml ![](https://i-blog.csdnimg.cn/direct/54567e4d6828458d87631c49289c8cf2.png) \[root@k8s-master pod\]# kubectl apply -f timinglee.yml pod/timinglee created \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 1/1 Running 2 (2s ago) 12s timinglee-c56f584cf-6jxb7 1/1 Running 0 13h timinglee-c56f584cf-mwrx8 1/1 Running 0 13h \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 0/1 CrashLoopBackOff 4 (3s ago) 44s timinglee-c56f584cf-6jxb7 1/1 Running 0 13h timinglee-c56f584cf-mwrx8 1/1 Running 0 13h \[root@k8s-master pod\]# kubectl describe pods ![](https://i-blog.csdnimg.cn/direct/83a5ad2f59f84b499e400928fbd44598.png) \[root@k8s-master pod\]# kubectl delete -f timinglee.yml pod "timinglee" deleted \[root@k8s-master pod\]# vim timinglee.yml ![](https://i-blog.csdnimg.cn/direct/61f00bcebdbf4adab38cf1df17683778.png) \[root@k8s-master pod\]# kubectl apply -f timinglee.yml pod/timinglee created \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 1/1 Running 0 13s timinglee-c56f584cf-6jxb7 1/1 Running 0 13h timinglee-c56f584cf-mwrx8 1/1 Running 0 13h \[root@k8s-master pod\]# kubectl describe pods ![](https://i-blog.csdnimg.cn/direct/2b52292bb64e4e34ab1326b58ec08af2.png) \[root@k8s-master pod\]# kubectl delete -f timinglee.yml pod "timinglee" deleted ##### 3.1.2就绪探针示例: \[root@k8s-master pod\]# vim timinglee.yml ![](https://i-blog.csdnimg.cn/direct/fb3ea395c3f14577b5901ea5837e6a05.png) \[root@k8s-master pod\]# kubectl apply -f timinglee.yml pod/timinglee created \[root@k8s-master pod\]# kubectl get pods NAME READY STATUS RESTARTS AGE timinglee 0/1 Running 0 12s timinglee-c56f584cf-6jxb7 1/1 Running 0 13h timinglee-c56f584cf-mwrx8 1/1 Running 0 13h \[root@k8s-master pod\]# kubectl describe pods ![](https://i-blog.csdnimg.cn/direct/8094169c634d42169429ac629c24d68c.png) ![](https://i-blog.csdnimg.cn/direct/a007e5551eb64c44a382c0d37a620248.png) \[root@k8s-master pod\]# kubectl exec pods/timinglee -c timinglee -- /bin/sh -c "echo hello test \> /usr/share/nginx/html/test.html" ![](https://i-blog.csdnimg.cn/direct/fe9a148eea7a442f95316000330fc949.png)![](https://i-blog.csdnimg.cn/direct/5e5cb7216d5249779b05adc876b6bd32.png) \[root@k8s-master pod\]# curl 10.244.1.34 Hello MyApp \| Version: v1 \| \Pod Name\ \[root@k8s-master pod\]# curl 10.244.1.34/test.html hello test ![](https://i-blog.csdnimg.cn/direct/cb3ef3dc14ef4e2e94d58446c5157156.png) ![](https://i-blog.csdnimg.cn/direct/e139e5ef7beb4866887cb7d7888d14c9.png)

相关推荐
sauTCc5 小时前
Docker初探
docker
云上艺旅5 小时前
K8S学习之基础七十四:部署在线书店bookinfo
学习·云原生·容器·kubernetes
c无序5 小时前
【Docker-7】Docker是什么+Docker版本+Docker架构+Docker生态
docker·容器·架构
FixBug_Nick5 小时前
使用Docker安装及使用最新版本的Jenkins
docker·容器·jenkins
ghostwritten7 小时前
Run Milvus in Kubernetes with Milvus Operator
容器·kubernetes·milvus
Zero_to_zero12347 小时前
解决docker的ubuntu系统中文乱码问题
ubuntu·docker·容器
@郭小茶7 小时前
docker-compose方式部署docker项目
运维·docker·容器
duration~9 小时前
K8S自定义CRD
容器·贪心算法·kubernetes
程序员 小柴10 小时前
docker的与使用
java·docker·eureka
ghostwritten10 小时前
Docker Registry Clean
运维·docker·容器