Pod - CI/CD用語集の定義
podはKubernetesにおける最小のスケジュール可能な単位で、IP、ネットワークnamespace、volumeを共有し、常に単一のノード上に同居する1つ以上のcontainerです。
CIにおいて
Kubernetes上の一時的なrunnerは通常jobごとに1つのpodで、毎回新しく作成され後で削除されるため、クリーンで隔離されたbuildが得られます。
関連ガイド
Deployment - CI/CD Glossary DefinitionA Deployment is the Kubernetes controller for a stateless app, keeping a desired number of pod replicas runni…
Affinity - CI/CD Glossary DefinitionAffinity rules attract or repel pods relative to nodes or other pods, controlling placement - co-locating cac…
kubelet - CI/CD Glossary DefinitionThe kubelet is the agent on every Kubernetes node that starts and stops containers, reports node health, and…