Skip to content

Commit

Permalink
Fix ldap config missing argument bug (#1064)
Browse files Browse the repository at this point in the history
  • Loading branch information
KuroXII authored Oct 24, 2024
1 parent bea8f93 commit 4016f6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions charts/nexus3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

## [UNRELEASED]

### Fixed

- Fix ldap config missing argument

## [v5.1.0] - 2024-10-14

### Changed
Expand Down
2 changes: 1 addition & 1 deletion charts/nexus3/templates/configmap-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 4016f6e

Please sign in to comment.