Skip to content

Commit c8e4007

Browse files
authored
Merge pull request #34809 from jboxman/bz-1939314
BZ#1939314: The FeatureGate API is not namespaced
2 parents 109f2a1 + e841f8d commit c8e4007

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

modules/nodes-cluster-enabling-features-about.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[id="nodes-cluster-enabling-features-about_{context}"]
66
= Understanding feature gates
77

8-
You can use the `FeatureGate` custom resource (CR) to enable specific feature sets in your cluster. A feature set is a collection of {product-title} features that are not enabled by default.
8+
You can use the `FeatureGate` custom resource (CR) to enable specific feature sets in your cluster. A feature set is a collection of {product-title} features that are not enabled by default.
99

1010
For example, the `TechPreviewNoUpgrade` feature set allows you to enable a subset of the current Technology Preview features on test clusters, where you can fully test them, while leaving the features disabled on production clusters.
1111

modules/nodes-cluster-enabling-features-cli.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ You can use the OpenShift CLI (`oc`) to enable feature sets for all of the nodes
1515

1616
To enable feature sets:
1717

18-
. Edit the `FeatureGate` CR, named `cluster`, in the `openshift-config` project:
18+
. Edit the `FeatureGate` CR named `cluster`:
1919
+
2020
[source,terminal]
2121
----
22-
$ oc edit featuregate cluster -n openshift-config
22+
$ oc edit featuregate cluster
2323
----
2424
+
2525
.Sample FeatureGate custom resource
@@ -29,7 +29,6 @@ apiVersion: config.openshift.io/v1
2929
kind: FeatureGate
3030
metadata:
3131
name: cluster <1>
32-
...
3332
spec:
3433
featureSet: TechPreviewNoUpgrade <2>
3534
----

0 commit comments

Comments
 (0)