Pod - CI/CD用語集の定義
Pod は Kubernetes における最小のデプロイ単位で、ネットワーク namespace、IP、ストレージボリュームを共有する 1 つ以上のコンテナからなり、1 つの node 上でまとめてスケジューリングされます。
Pod は Kubernetes における最小のデプロイ単位で、ネットワーク namespace、IP、ストレージボリュームを共有する 1 つ以上のコンテナからなり、1 つの node 上でまとめてスケジューリングされます。
Pod は Kubernetes における最小のデプロイ単位で、ネットワーク namespace、IP、ストレージボリュームを共有する 1 つ以上のコンテナからなり、1 つの node 上でまとめてスケジューリングされます。
実際の運用
Pod を直接作成することはめったにありません。Deployment や StatefulSet などの controller が Pod を作成・管理し、Pod が失敗したときに再作成されるようにします。
関連ガイド
Init Container - CI/CD Glossary DefinitionInit Container: An init container is a container in a Kubernetes Pod that runs to completion before the app c…
Ephemeral Container - CI/CD Glossary DefinitionEphemeral Container: An ephemeral container is a temporary container added to a running Kubernetes Pod for de…
Image Pull Policy - CI/CD Glossary DefinitionImage Pull Policy: An image pull policy controls when a runtime fetches an image versus using a cached copy.…
Container Runtime - CI/CD Glossary DefinitionContainer Runtime: A container runtime is the software that creates and runs containers from images, managing…