Skip to content

Commit 5630edd

Browse files
committed
Rename extraClusterConfig to extraClusterConfiguration (#1195)
1 parent 7397df2 commit 5630edd

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

modules/get-started/pages/release-notes/helm-charts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ TIP: For a supported and scalable Kafka Connect alternative, consider using Redp
4646

4747
=== Reference Kubernetes Secrets and ConfigMaps for Redpanda cluster configuration
4848

49-
You can now set any Redpanda cluster configuration property using the new `extraClusterConfig` field. This allows you to reference values from Kubernetes Secrets or ConfigMaps. For example, use this field to inject sensitive credentials or reuse shared configurations across features like Tiered Storage, Iceberg, and disaster recovery.
49+
You can now set any Redpanda cluster configuration property using the new `extraClusterConfiguration` field. This allows you to reference values from Kubernetes Secrets or ConfigMaps. For example, use this field to inject sensitive credentials or reuse shared configurations across features like Tiered Storage, Iceberg, and disaster recovery.
5050

5151
This enhancement improves:
5252

modules/get-started/pages/release-notes/operator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ TIP: For a supported and scalable Kafka Connect alternative, consider using Redp
7474

7575
=== Reference Kubernetes Secrets and ConfigMaps for Redpanda cluster configuration
7676

77-
You can now set any Redpanda cluster configuration property using the new `extraClusterConfig` field. This allows you to reference values from Kubernetes Secrets or ConfigMaps. For example, use this field to inject sensitive credentials or reuse shared configurations across features like Tiered Storage, Iceberg, and disaster recovery.
77+
You can now set any Redpanda cluster configuration property using the new `extraClusterConfiguration` field. This allows you to reference values from Kubernetes Secrets or ConfigMaps. For example, use this field to inject sensitive credentials or reuse shared configurations across features like Tiered Storage, Iceberg, and disaster recovery.
7878

7979
This enhancement improves:
8080

modules/manage/pages/kubernetes/k-configure-helm-chart.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ helm upgrade --install redpanda redpanda/redpanda \
213213
[[extra-cluster-config]]
214214
== Set Redpanda cluster properties from Kubernetes Secrets or ConfigMaps
215215

216-
Starting in v25.1.1 of the Redpanda Operator and Redpanda Helm chart, you can set **any Redpanda cluster configuration property** by referencing Kubernetes Secrets or ConfigMaps using the `config.extraClusterConfig` field.
216+
Starting in v25.1.1 of the Redpanda Operator and Redpanda Helm chart, you can set **any Redpanda cluster configuration property** by referencing Kubernetes Secrets or ConfigMaps using the `config.extraClusterConfiguration` field.
217217

218218
This feature provides a more secure, maintainable, and declarative way to manage sensitive or shared configuration values across your Redpanda deployment.
219219

@@ -240,7 +240,7 @@ metadata:
240240
spec:
241241
clusterSpec:
242242
config:
243-
extraClusterConfig:
243+
extraClusterConfiguration:
244244
iceberg_rest_catalog_client_secret:
245245
secretRef:
246246
name: iceberg-config
@@ -263,7 +263,7 @@ Helm::
263263
[,yaml]
264264
----
265265
config:
266-
extraClusterConfig:
266+
extraClusterConfiguration:
267267
iceberg_rest_catalog_client_secret:
268268
secretRef:
269269
name: iceberg-config
@@ -283,8 +283,8 @@ helm upgrade --install redpanda redpanda/redpanda \
283283
helm upgrade --install redpanda redpanda/redpanda \
284284
--namespace <namespace> \
285285
--create-namespace \
286-
--set config.extraClusterConfig.iceberg_rest_catalog_client_secret.secretRef.name=iceberg-config \
287-
--set config.extraClusterConfig.iceberg_rest_catalog_client_secret.secretRef.key=iceberg_rest_catalog_client_secret
286+
--set config.extraClusterConfiguration.iceberg_rest_catalog_client_secret.secretRef.name=iceberg-config \
287+
--set config.extraClusterConfiguration.iceberg_rest_catalog_client_secret.secretRef.key=iceberg_rest_catalog_client_secret
288288
----
289289

290290
====
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[TIP]
22
====
3-
Starting in Redpanda Operator v25.1.1, you can configure object storage settings using `extraClusterConfig`. This lets you securely reference sensitive values from Kubernetes Secrets or ConfigMaps, and reuse values like your bucket name across multiple features, such as Tiered Storage, Iceberg, and topic recovery.
3+
Starting in Redpanda Operator v25.1.1, you can configure object storage settings using `config.extraClusterConfiguration`. This lets you securely reference sensitive values from Kubernetes Secrets or ConfigMaps, and reuse values like your bucket name across multiple features, such as Tiered Storage, Iceberg, and topic recovery.
44
55
See xref:manage:kubernetes/k-configure-helm-chart.adoc#extra-cluster-config[Set Redpanda cluster properties from Kubernetes Secrets or ConfigMaps].
66
====

0 commit comments

Comments
 (0)