Skip to content

Commit 6d38280

Browse files
authored
Fix field names
1 parent cfad1de commit 6d38280

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ spec:
242242
config:
243243
extraClusterConfiguration:
244244
iceberg_rest_catalog_client_secret:
245-
secretRef:
245+
secretKeyRef:
246246
name: iceberg-config
247247
key: iceberg_rest_catalog_client_secret
248248
----
@@ -265,7 +265,7 @@ Helm::
265265
config:
266266
extraClusterConfiguration:
267267
iceberg_rest_catalog_client_secret:
268-
secretRef:
268+
secretKeyRef:
269269
name: iceberg-config
270270
key: iceberg_rest_catalog_client_secret
271271
----
@@ -283,19 +283,19 @@ helm upgrade --install redpanda redpanda/redpanda \
283283
helm upgrade --install redpanda redpanda/redpanda \
284284
--namespace <namespace> \
285285
--create-namespace \
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
286+
--set config.extraClusterConfiguration.iceberg_rest_catalog_client_secret.secretKeyRef.name=iceberg-config \
287+
--set config.extraClusterConfiguration.iceberg_rest_catalog_client_secret.secretKeyRef.key=iceberg_rest_catalog_client_secret
288288
----
289289

290290
====
291291
--
292292
======
293293

294-
This method supports both `secretRef` and `configMapRef`:
294+
This method supports both `secretKeyRef` and `configMapKeyRef`:
295295

296-
- Use `secretRef` for sensitive data like access keys or credentials.
296+
- Use `secretKeyRef` for sensitive data like access keys or credentials.
297297

298-
- Use `configMapRef` for shared, non-sensitive values such as URIs or feature flags.
298+
- Use `configMapKeyRef` for shared, non-sensitive values such as URIs or feature flags.
299299

300300
You can apply this approach to any Redpanda configuration key, making your deployments more secure, modular, and easier to manage at scale.
301301

0 commit comments

Comments
 (0)