[bitnami/opensearch] add docs to clarify parameter behavior. (#36134)

* add docs to clarify parameter behaviour.

Signed-off-by: Maksym Sahan <megausermind@gmail.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: Maksym Sahan <megausermind@gmail.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Maksym Sahan
2025-08-19 14:29:26 +03:00
committed by GitHub
parent 03026b65c3
commit 4f5a86f73f
3 changed files with 18 additions and 3 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 2.0.8 (2025-08-12)
## 2.0.9 (2025-08-19)
* [bitnami/opensearch] Add ability to unset OPENSEARCH_SECURITY_ADMIN_DN variable to fix issue/35666 ([#35746](https://github.com/bitnami/charts/pull/35746))
* [bitnami/opensearch] add docs to clarify parameter behavior. ([#36134](https://github.com/bitnami/charts/pull/36134))
## <small>2.0.8 (2025-08-12)</small>
* [bitnami/opensearch] Add ability to unset OPENSEARCH_SECURITY_ADMIN_DN variable to fix issue/35666 ( ([a7b9ee7](https://github.com/bitnami/charts/commit/a7b9ee7071ce33ca4a6fd9a72e54a4037399382b)), closes [#35746](https://github.com/bitnami/charts/issues/35746)
## <small>2.0.7 (2025-08-07)</small>

View File

@@ -33,4 +33,4 @@ maintainers:
name: opensearch
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/opensearch
version: 2.0.8
version: 2.0.9

View File

@@ -351,6 +351,17 @@ security:
##
nodesDN: ""
## @param security.tls.adminDN A comma separated list of DN for admins
## Note that this parameter has lower priority than extraConfig.plugins.security.authcz.admin_dn and will be overridden if both parameters are set.
## See https://github.com/bitnami/charts/issues/35666 for details. (valid for images newer than bitnami/opensearch:3.1.0-debian-12-r2)
##
## Also, due to specifics of the config bootstrap script implementation, spaces will be treated as separators.
## For example, "CN=admin,O=Some Organisation,L=SomeCity,C=SomeCountry" will become:
## admin_dn:
## - CN=admin,O=Some
## - Organisation,L=SomeCity,C=SomeCountry
##
## To avoid this, consider using extraConfig.plugins.security.authcz.admin_dn instead.
##
##
adminDN: "CN=admin;CN=admin"