From 4664d0d5296bde9e271d2d3c25ce6c87fcbf3ccd Mon Sep 17 00:00:00 2001 From: epollia <35440159+epollia@users.noreply.github.com> Date: Mon, 8 Apr 2024 19:04:23 +0700 Subject: [PATCH] fix authReassignRoles values (#226) Co-authored-by: Shchukin Konstantin --- charts/openmetadata/templates/secrets.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/openmetadata/templates/secrets.yaml b/charts/openmetadata/templates/secrets.yaml index 0ce1614..f91a1e3 100644 --- a/charts/openmetadata/templates/secrets.yaml +++ b/charts/openmetadata/templates/secrets.yaml @@ -232,7 +232,7 @@ data: AUTHENTICATION_USER_GROUP_ATTR_VALUE: {{ .ldapConfiguration.groupAttributeValue | quote | b64enc }} AUTHENTICATION_USER_GROUP_MEMBER_ATTR: {{ .ldapConfiguration.groupMemberAttributeName | quote | b64enc }} AUTH_ROLES_MAPPING: {{ .ldapConfiguration.authRolesMapping | quote | b64enc }} - AUTH_REASSIGN_ROLES: {{ include "OpenMetadata.commaJoinedQuotedEncodedList" (dict "value" .authReassignRoles) }} + AUTH_REASSIGN_ROLES: {{ include "OpenMetadata.commaJoinedQuotedEncodedList" (dict "value" .ldapConfiguration.authReassignRoles) }} AUTHENTICATION_USER_MAIL_ATTR: {{ .ldapConfiguration.mailAttributeName | quote | b64enc }} AUTHENTICATION_LDAP_POOL_SIZE: {{ .ldapConfiguration.maxPoolSize | quote | b64enc }} AUTHENTICATION_LDAP_SSL_ENABLED: {{ .ldapConfiguration.sslEnabled | quote | b64enc }} @@ -306,4 +306,4 @@ data: {{- with .Values.openmetadata.config }} LOG_LEVEL: {{ .logLevel | b64enc }} OPENMETADATA_CLUSTER_NAME: {{ .clusterName | b64enc }} -{{ end }} \ No newline at end of file +{{ end }}