After installing Vault in my K8s cluster, i did initialize and unseal the vault
now my pod is running and everything seems to be ok and i have a root token so i can login with
i want to enable ldap and let my users connect with their signums
following this page https://www.vaultproject.io/docs/auth/ldap to configure
i did write the ldap config
/vault $ vault read auth/ldap/config
Key Value
binddn CN=<>,OU=CA,OU=SvcAccount,OU=P001,OU=ID,OU=Data,DC=<>,DC=<>
case_sensitive_names false
certificate n/a
deny_null_bind true
discoverdn false
groupattr cn
groupdn OU=groups,dc=<>,dc=<>
groupfilter (|(memberUid={{.Username}})(member={{.UserDN}})(uniqueMember={{.UserDN}}))
insecure_tls false
starttls true
tls_max_version tls12
tls_min_version tls11
token_bound_cidrs
token_explicit_max_ttl 0s
token_max_ttl 0s
token_no_default_policy false
token_num_uses 0
token_period 0s
token_policies
token_ttl 0s
token_type default
upndomain <>
url ldaps://<>:3269
use_pre111_group_cn_behavior false
use_token_groups false
userattr cn
userdn OU=CA,OU=SvcAccount,OU=P001,OU=ID,OU=Data,DC=<>,DC=<>
trying to login it cannot connect and getting this error
error connecting to host “ldaps://ldap-ip:3269”: LDAP Result Code 200 “Network Error”: read tcp CLUSTER_INTERNAL_IP:39378->LDAP_IP:3269: read: connection reset by peer
i dont have ldap-certificate and not sure if is mandatory to have
i used to connect to this ldap server using ssl
but apparently vault uses TLS to connect
any idea?