Feature Flag - CI/CD Glossary Definition
A feature flag is a runtime toggle that enables or disables a code path without a new deploy, decoupling release from deploy and enabling instant rollback of a feature.
Related guides
Trunk-Based Development - CI/CD Glossary DefinitionTrunk-based development keeps everyone committing to one shared branch in small, frequent increments behind f…
Canary Deployment - CI/CD Glossary DefinitionA canary deployment ships a new version to a small slice of traffic first, watching its health before rolling…
Rollback - CI/CD Glossary DefinitionA rollback reverts a deployment to the previous known-good version after a release goes wrong. Fast, reliable…