Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bullet formatting on Progressive Rollouts.md #11777

Merged
merged 2 commits into from
Dec 21, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/operator-manual/applicationset/Progressive-Rollouts.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ The Progressive Rollouts feature set is intended to be light and flexible. The f

## Enabling Progressive Rollouts
As an experimental feature, progressive rollouts must be explicitly enabled, in one of these ways.
1. Pass `--enable-progressive-rollouts` to the ApplicationSet controller args.
1. Set `ARGOCD_APPLICATIONSET_ENABLE_PROGRESSIVE_ROLLOUTS=true` in the ApplicationSet controller environment variables.
1. Set `applicationsetcontroller.enable.progressive.rollouts: true` in the ArgoCD ConfigMap.

* Pass `--enable-progressive-rollouts` to the ApplicationSet controller args.
* Set `ARGOCD_APPLICATIONSET_ENABLE_PROGRESSIVE_ROLLOUTS=true` in the ApplicationSet controller environment variables.
* Set `applicationsetcontroller.enable.progressive.rollouts: true` in the ArgoCD ConfigMap.

## Strategies

Expand Down Expand Up @@ -46,6 +47,7 @@ When the ApplicationSet changes, the changes will be applied to each group of Ap
The following example illustrates how to stage a progressive rollout over Applications with explicitly configured environment labels.

Once a change is pushed, the following will happen in order.

* All `env-dev` Applications will be updated simultaneously.
* The rollout will wait for all `env-qa` Applications to be manually synced via the `argocd` CLI or by clicking the Sync button in the UI.
* 10% of all `env-prod` Applications will be updated at a time until all `env-prod` Applications have been updated.
Expand Down