当前位置: 首页 > 工具软件 > deployment > 使用案例 >

K8s deployment的理解

白子昂
2023-12-01

Deployment 提供了一种对 Pod 和 ReplicaSet 的管理方式,每一个 Deployment 都对应集群中的一次部署,是非常常见的 Kubernetes 对象。
概述
作为最常用的 Kubernetes 对象,Deployment 经常会用来创建 ReplicaSet 和 Pod,还支持常见的更新、扩容和缩容运维等操作
参考:
https://draveness.me/kubernetes-deployment

deployment的常用操作命令

通过kubectl创建deployment
# kubectl create -f deployment.yaml --record
–record参数,使用此参数将记录后续创建对象的操作,方便管理与问题追溯

查看deployment具体信息
# kubectl describe deployment frontend

通过deployment修改Pod副本数量(需要修改yaml文件的spec.replicas字段到目标值,然后替换旧的yaml文件)
# kubectl edit deployment hello-deployment

使用rollout history命令,查看Deployment的历史信息
kubectl rollout history deployment hello-deployment

使用Deployment可以回滚到上一版本,但要加上–revision参数,指定版本号
kubectl rollout history deployment hello-deployment --revision=2

使用rollout undo回滚到上一版本
kubectl rollout undo deployment hello-deployment 

使用–to-revision可以回滚到指定版本
kubectl rollout undo deployment hello-deployment --to-revision=2

 类似资料: