Rolling Update - CI/CD用語集の定義
rolling update は pod を段階的に置き換え、新しいものを立ち上げて古いものを少しずつ取り壊すため、サービスは全体を通じて利用可能なままになります。maxSurge と maxUnavailable がそのペースを制御します。
Rollback
rollout が失敗する readiness probe で停滞した場合、kubectl rollout undo が以前の ReplicaSet に戻します。CD pipeline は成功をゲートするために kubectl rollout status をよく実行します。
関連ガイド
Recreate Strategy - CI/CD Glossary DefinitionRecreate Strategy: The Recreate strategy terminates all old pods before creating new ones, accepting a brief…
Deployment Strategy - CI/CD Glossary DefinitionDeployment Strategy: A deployment strategy is how a new version replaces the old one. The two built-in Kubern…
ReplicaSet - CI/CD Glossary DefinitionReplicaSet: A ReplicaSet keeps a specified number of identical pod replicas running, replacing any that die.…