Daemonset - CI/CD Glossary Definition
A DaemonSet is a Kubernetes object ensuring one copy of a pod runs on each matching node, ideal for node-level agents such as log collectors or CI runner daemons.
Related guides
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…