9.4部署策略详解
部署策略
Rolling update
Recreate
蓝绿部署
金丝雀
Recreate
spec:
strategy:
type: RecreateRolling update
spec:
strategy:
rollingUpdate:
maxSuige: 25%
maxUnavailable: 25%
type: RollingUpdatekubectl rollout pause deploy web-rollingupdate # 暂停部署
kubectl rollout resume deploy web-rollingupdate # 恢复部署
kubectl rollout undo deploy web-rollingupdate # 回滚蓝绿部署
spec:
template:
metadata:
labels:
app: web-bluegren
version: v1.0金丝雀部署
spec:
ports:
- port: 80
protocol: TCP
targetPort:8080
selector:
app: web-bluegreen
type: ClusterIPLast updated
Was this helpful?