Pod - CI/CD用語集の定義
pod は Kubernetes における最小のデプロイ可能な単位です。ネットワーク namespace、IP アドレス、ストレージボリュームを共有し、常に一緒にスケジュールされる1つ以上の container です。
podとしてのrunner
Actions Runner Controller などのツールは、各 self-hosted CI runner を一時的な pod として実行します。この pod は1つの job のために作成され、その後削除されるため、すべての build がクリーンな環境を得られます。
関連ガイド
Container Orchestration - CI/CD Glossary DefinitionContainer Orchestration: Container orchestration automates deploying, scaling, networking, and healing of con…
Cluster (Kubernetes) - CI/CD Glossary DefinitionCluster (Kubernetes): A cluster is a set of machines (nodes) managed together by a control plane that schedul…
Ephemeral Runner - CI/CD Glossary DefinitionEphemeral Runner: An **ephemeral runner** is created fresh for one job and destroyed after, giving clean, rep…