Automated Change Deployment

Learn how automated agents apply changes to GitOps managed systems.

Applying changes through automation

In GitOps, changes made to the system's desired state in Git are automatically applied to the system by automated agents. When correctly implementing a GitOps approach, automated agents become the only tool capable of changing the system. This principle simplifies the end-to-end workflow to introduce new changes that execute the following three steps in order:

  1. Changes are committed to Git that update the system's desired state.

  2. Automated agents running inside the system pull the desired state from Git.

  3. Automated agents apply changes to the system to match the desired state.

For development and operations teams, making a change to ...