Daemonset - CI/CD用語集の定義
DaemonSet は、一致する各 node で pod のコピーを 1 つ実行することを保証する Kubernetes オブジェクトで、log collector や CI runner の daemon といった node レベルの agent に最適です。
関連ガイド
StatefulSet - CI/CD Glossary DefinitionA StatefulSet manages pods that need stable identities and persistent storage, like databases - each gets a f…
Init Container - CI/CD Glossary DefinitionAn init container runs to completion before a pod’s main containers start, preparing state - fetching config,…
Sidecar - CI/CD Glossary DefinitionA sidecar is a helper container running alongside the main one in a pod, sharing its lifecycle to add capabil…