ReplicaSet - CI/CD用語集の定義
ReplicaSet は、指定された数の同一の pod レプリカを実行し続け、死んだものを置き換えます。直接作成することはめったにありません。Deployment が ReplicaSet を管理し、rollout ごとに新しいものを作成します。
rollout では
rolling update 中、Deployment は新しい ReplicaSet をスケールアップしながら古いものをスケールダウンします。失敗した rollout は、古い ReplicaSet をスケールアップし直すことで元に戻せます。
関連ガイド
Deployment Strategy - CI/CD Glossary DefinitionDeployment Strategy: A deployment strategy is how a new version replaces the old one. The two built-in Kubern…
Rolling Update - CI/CD Glossary DefinitionRolling Update: A rolling update replaces pods incrementally, bringing up new ones and tearing down old ones…
Recreate Strategy - CI/CD Glossary DefinitionRecreate Strategy: The Recreate strategy terminates all old pods before creating new ones, accepting a brief…