Intro Kubernetes Deploy Strategy
Intro Kubernetes Deploy Strategy
Kubernetes Deploy Strategy
Deploy Strategy有以下四種
1.Recreate
傳統作法,類似還原再重新建立一次
2.Rolling update
預設作法,best practice (花費時間最久) N+1
Rolling update (O) => nginx:1.7.1 -> nginx:1.9.1
Rolling update (X) => Rollback(還原)
3.Blue/Green
4.Canary