Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/central-configuration-options-operator.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change:
Specify the ...

The default value is `Recreate`. A RollingUpdate will start a new central Pod, while the old keeps running until the new Pod is ready.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changes:
A RollingUpdate value will start a new Central pod and keep the old pod running until the new pod is ready.

@jlprevatt jlprevatt Aug 19, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The 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.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change:
The cluster must ...


| `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.

Expand Down