Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
eos
eos-charts
Commits
0812b428
Commit
0812b428
authored
Jun 09, 2021
by
Samuel Alfageme Sainz
Committed by
Enrico Bocchi
Apr 06, 2022
Browse files
Server README with instructions for LDAP
parent
f7f62a71
Pipeline
#3812731
failed with stage
in 1 minute and 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
server/README.md
0 → 100644
View file @
0812b428
# EOS Server
## Connecting to an existing LDAP service
```
bash
# Deploy the IDP included with oCIS
helm repo add samuel https://SamuAlfageme.github.io/cernboxcharts
helm repo update
helm upgrade
-i
ocis-idp samuel/ocis
# Enable ldapBindUsers and provide the LDAP settings:
cat
<<
EOF
> ldap-settings.yaml
mgm:
ldapBindUsers:
enable: true
nslcd:
config:
ldap_uri: ldap://ocis-idp.ocis.svc.cluster.local:9125
ldap_base: ou=users,dc=example,dc=org
ldap_binddn: cn=idp,ou=sysusers,dc=example,dc=org
ldap_bindpw: idp
ldap_user_search_base: dc=example,dc=org
ldap_group_search_base: ou=groups,dc=example,dc=org
ldap_filter_passwd: (objectClass=posixAccount)
ldap_filter_group: (objectClass=group)
EOF
helm upgrade
-i
eos eos/server
-f
ldap-settings.yaml
# Verify the name resolution is working:
kubectl
exec
-ti
eos-mgm-0
-c
eos-mgm
--
id
marie
```
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment