You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/manage/pages/cluster-maintenance/config-cluster.adoc
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,11 @@ You can set cluster configuration properties using the `rpk` command-line tool o
28
28
--
29
29
Use `rpk cluster config` to set cluster properties.
30
30
31
-
For example, to enable data transforms, set xref:reference:properties/cluster-properties.adoc#data_transforms_enabled[`data_transforms_enabled`] to `true`:
31
+
For example, to enable audit logging, set xref:reference:properties/cluster-properties.adoc#audit_enabled[`audit_enabled`] to `true`:
32
32
33
33
[source,bash]
34
34
----
35
-
rpk cluster config set data_transforms_enabled true
35
+
rpk cluster config set audit_enabled true
36
36
----
37
37
38
38
To set a cluster property with a secret, you must use the following notation:
@@ -55,7 +55,7 @@ Use the Cloud API to set cluster properties:
55
55
56
56
* Update a cluster by making a xref:api:ROOT:cloud-controlplane-api.adoc#patch-/v1/clusters/-cluster.id-[`PATCH /v1/clusters/{cluster.id}`] request, passing the cluster ID as a parameter. Include the properties to update in the request body.
57
57
58
-
For example, to set xref:reference:properties/cluster-properties.adoc#data_transforms_enabled[`data_transforms_enabled`] to `true`:
58
+
For example, to set xref:reference:properties/cluster-properties.adoc#audit_enabled[`audit_enabled`] to `true`:
59
59
60
60
[source,bash]
61
61
----
@@ -69,12 +69,12 @@ export RP_CLOUD_TOKEN=`curl -X POST "https://auth.prd.cloud.redpanda.com/oauth/t
69
69
-d "client_id=<client-id>" \
70
70
-d "client_secret=<client-secret>"`
71
71
72
-
# Update your cluster configuration to enable data transforms.
72
+
# Update your cluster configuration to enable audit logging.
The xref:api:ROOT:cloud-controlplane-api.adoc#patch-/v1/clusters/-cluster.id-[`PATCH /clusters/{cluster.id}`] request returns the ID of a long-running operation. You can check the status of the operation by polling the xref:api:ROOT:cloud-controlplane-api.adoc#get-/v1/operations/-id-[`GET /operations/\{id}`] endpoint.
@@ -111,11 +111,11 @@ You can see the value of a cluster configuration property using `rpk` or the Clo
111
111
--
112
112
Use `rpk cluster config get` to view the current cluster property value.
113
113
114
-
For example, to view the current value of xref:reference:properties/cluster-properties.adoc#data_transforms_enabled[`data_transforms_enabled`], run:
114
+
For example, to view the current value of xref:reference:properties/cluster-properties.adoc#audit_enabled[`audit_enabled`], run:
115
115
116
116
[source,bash]
117
117
----
118
-
rpk cluster config get data_transforms_enabled
118
+
rpk cluster config get audit_enabled
119
119
----
120
120
121
121
@@ -125,7 +125,7 @@ Cloud API::
125
125
--
126
126
Use the Cloud API to get the current configuration property values for a cluster.
127
127
128
-
Make a xref:api:ROOT:cloud-controlplane-api.adoc#get-/v1/clusters/-id-[`GET /clusters/{cluster.id}`] request, passing the cluster ID as a parameter. The response body contains the current `computed_properties` values. For example, to get the current value of xref:reference:properties/cluster-properties.adoc#data_transforms_enabled[`data_transforms_enabled`]:
128
+
Make a xref:api:ROOT:cloud-controlplane-api.adoc#get-/v1/clusters/-id-[`GET /clusters/{cluster.id}`] request, passing the cluster ID as a parameter. The response body contains the current `computed_properties` values. For example, to get the current value of xref:reference:properties/cluster-properties.adoc#audit_enabled[`audit_enabled`]:
0 commit comments