File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
kubernetes/operator/using-operator Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ a list of columns to display. The available columns are:
204
204
205
205
## How to Enable Feature Flags {#how-to-enable-feature-flags}
206
206
207
- After upgrading one node or the entire cluster, it will be possible
207
+ After upgrading all nodes in the cluster, it will be possible
208
208
to enable new feature flags. Note that it will be impossible to roll
209
209
back the version or add a cluster member using the old version once new
210
210
feature flags are enabled.
Original file line number Diff line number Diff line change @@ -642,6 +642,26 @@ spec:
642
642
disableNonTLSListeners: true
643
643
` ` `
644
644
645
+ # ## Automatically Enabling Feature Flags (added in version 2.15.0) {#autoEnableAllFeatureFlags}
646
+
647
+ **Description:** When set to true, operator will run `rabbitmqctl enable_feature_flag all` whenever the cluster is updated.
648
+ This will automatically enable all [feature flags](/docs/feature-flags). Keep in mind that once enabled, feature flags cannot
649
+ be disabled. Leaving this option as `false` gives more control of when the feature flags get enabled,
650
+ but requires a [manual step after the upgrade](https://www.rabbitmq.com/docs/feature-flags#how-to-enable-feature-flags).
651
+
652
+ **Default Value:** false
653
+
654
+ **Example:**
655
+
656
+ ` ` ` yaml
657
+ apiVersion: rabbitmq.com/v1beta1
658
+ kind: RabbitmqCluster
659
+ metadata:
660
+ name: rabbitmqcluster-sample
661
+ spec:
662
+ autoEnableAllFeatureFlags: true
663
+ ` ` `
664
+
645
665
# ## Skip Post Deploy {#SkipPostDeploySteps}
646
666
647
667
**Description:** If unset, or set to false, operator will run `rabbitmq-queues rebalance all` whenever the cluster is updated.
You can’t perform that action at this time.
0 commit comments