-
Notifications
You must be signed in to change notification settings - Fork 1.9k
ROX-34999: add documentation for central.rolloutStrategy #118387
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
base: rhacs-docs-main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -114,6 +114,11 @@ for the config-controller component. This parameter is mainly used for infrastru | |
| |`central.imagePullSecrets` | ||
| |Use this parameter to specify the image pull secrets for the Central image. | ||
|
|
||
| |`central.rolloutStrategy` | ||
| | Specifies the deployment rollout strategy for Central. Set to `RollingUpdate` to reduce downtime during upgrades and restarts. | ||
| The default value is `Recreate`. A RollingUpdate will start a new central Pod, while the old keeps running until the new Pod is ready. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changes: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oops, forgot that the backtick charaters would be interpreted. Surround RollingUpdate with backtick (`) characters. |
||
| The cluster needs to provide sufficient resources to accomodate the transition phase. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. change: |
||
|
|
||
| | `central.db.passwordSecret.name` | ||
| | Specify a secret that has the database password in the `password` data item. Only use this parameter if you want to specify a connection string manually. If omitted, the operator auto-generates a password and stores it in the `password` item in the `central-db-password` secret. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change:
Specify the ...