From 4016f6e2bee54fa05f3933b929bfb0b6cf5d2d4b Mon Sep 17 00:00:00 2001 From: Kuro Date: Thu, 24 Oct 2024 19:03:41 +0800 Subject: [PATCH] Fix ldap config missing argument bug (#1064) --- charts/nexus3/CHANGELOG.md | 4 ++++ charts/nexus3/templates/configmap-config.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/nexus3/CHANGELOG.md b/charts/nexus3/CHANGELOG.md index 4b774187..0c3d730e 100644 --- a/charts/nexus3/CHANGELOG.md +++ b/charts/nexus3/CHANGELOG.md @@ -14,6 +14,10 @@ ## [UNRELEASED] +### Fixed + +- Fix ldap config missing argument + ## [v5.1.0] - 2024-10-14 ### Changed diff --git a/charts/nexus3/templates/configmap-config.yaml b/charts/nexus3/templates/configmap-config.yaml index b6b94f00..4f8ee1aa 100644 --- a/charts/nexus3/templates/configmap-config.yaml +++ b/charts/nexus3/templates/configmap-config.yaml @@ -30,7 +30,7 @@ data: {{- if .Values.config.ldap.enabled }} ldap.json: | {{- with omit .Values.config.ldap "enabled" "authPassword" }} - {{- toJson | nindent 4 }} + {{- toJson . | nindent 4 }} {{- end }} {{- end }} {{- range $index, $blobStore := .Values.config.blobStores }}