GitOps Glossary {{version}}
Defines 8 GitOps-specific terms with precise, principle-linked explanations for consistent team vocabulary.
What this file does
Defines 8 GitOps-specific terms with precise, principle-linked explanations for consistent team vocabulary.
When to use it
- Onboarding new team members to GitOps terminology
- Resolving ambiguity in pull vs push or drift definitions
- Aligning documentation across multiple GitOps projects
- Referencing when writing GitOps principles or architecture docs
GitOps Glossary {{version}}
This glossary accompanies the GitOps Principles, and other supporting documents in this repository.
-
Continuous
"Continuous" is intended to match the industry standard term: reconciliation continues to happen, not that it must be instantaneous.
-
Declarative Description
A configuration that describes the desired operating state of a system without specifying procedures for how that state will be achieved. This separates configuration (the desired state) from the implementation (commands, API calls, scripts etc.) used to achieve that state.
-
Desired State
The aggregate of all configuration data that is sufficient to recreate the system so that instances of the system are behaviourally indistinguishable. This configuration data generally does not include persistent application data, eg. database contents, though often does include credentials for accessing that data, or configuration for data recovery tools running on that system.
-
Drift
When a system's actual state has moved or is in the process of moving away from the desired state, this is often referred to as drift.
-
Pull
Principle 3 (Pulled Automatically) specifies the desired state must be "pulled" rather than "pushed", primarily because the software agents must be able to access the desired state from the state store at any time, not only when there is an intentional change in the state store triggering a push event. This is a prerequisite for reconciliation to happen continuously, as specified in principle 4 (Continuously Reconciled). Note that – in contrast to traditional CI/CD, where automation is generally driven by pre-set triggers – in GitOps, reconciliation is triggered whenever there is a divergence. Divergence could be due to the actual state unintentionally drifting from the desired state declarations – not only due to a new desired state declaration version having been changed intentionally.
-
Reconciliation
The process of ensuring the actual state of a system matches its desired state. Contrary to traditional CI/CD where automation is generally driven by pre-set triggers, in GitOps reconciliation is triggered whenever there is a divergence. Divergence could be due to the actual state unintentionally drifting from the desired state declarations, or a new desired state declaration version having been changed intentionally. Actions are taken based on policies around feedback from the system and previous reconciliation attempts, in order to reduce deviation over time.
-
Software System
A software system managed by GitOps includes:
- One or more runtime environments consisting of resources under management
- The management agents within each runtime
- Policies for controlling access and management of repositories, deployments, runtimes
-
State Store
A system for storing immutable versions of desired state declarations. This state store should provide access control and auditing on the changes to the Desired State. Git, from which GitOps derives its name, is the canonical example used as this state store but any other system that meets these criteria may be used. In all cases, these state stores must be properly configured and precautions must be taken to comply with requirements set out in the GitOps Principles.
-
Feedback
Open GitOps follows control-theory and operates in a closed-loop. In control theory, feedback represents how previous attempts to apply a desired state have affected the actual state. For example if the desired state requires more resources than exist in a system, the software agent may make attempts to add resources, to automatically rollback to a previous version, or to send alerts to human operators.
What's inside
8 glossary entries, each with a definition and cross-references to GitOps Principles
Change this for your project
- Replace
./PRINCIPLES.mdand./GLOSSARY.md#feedbackwith your own file paths - Replace
{{version}}in the title with your actual version string
Where it goes
Keep it in your repository where the agent or team that needs it will read it.
Worth borrowing
- Links each term back to numbered principles for traceability
- Distinguishes GitOps reconciliation from traditional CI/CD triggers
- Defines 'Software System' to include agents and policies, not just runtime
Related Documents
Glossary for *Artificial Intelligence: A Modern Approach*
Lists and defines hundreds of AI terms from the textbook *Artificial Intelligence: A Modern Approach*, organized alphabetically with cross-references.
ISTQB GLOSSARY V4
Defines 100+ ISTQB glossary terms for the Certified Tester Foundation Level v4 syllabus, organized by chapter.
GLOSSARY
Defines over 40 TypeScript compiler terms, from parser internals to type system concepts like control flow and mapped types.
Guia de Estilo Universal
Defines universal style rules for translating React documentation, covering heading IDs, code blocks, external links, and terminology.