Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feudalAdapterLDF
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
m-team
feudal
feudalAdapterLDF
Commits
eaf3a94c
Commit
eaf3a94c
authored
3 years ago
by
Marcus
Browse files
Options
Downloads
Patches
Plain Diff
update from template
parent
fc3ff636
No related branches found
No related tags found
2 merge requests
!82
Add tests for name_generators
,
!81
Add tests for name generator
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/feudal_adapter.conf
+36
-8
36 additions, 8 deletions
tests/feudal_adapter.conf
with
36 additions
and
8 deletions
tests/feudal_adapter.conf
+
36
−
8
View file @
eaf3a94c
...
...
@@ -242,6 +242,17 @@ ssh_host_alternative = hdf-ssh.data.kit.edu
[
backend
.
ldap
]
# Configuration for the ldap backend
# The ldap backend can function in 3 different modes:
# - read_only (default): there is read only access to the LDAP, therefore the local accounts
# need to already be created in the LDAP and mapped to the federated accounts;
# read the docs for more on how to map local <-> federated accounts.
# - pre_created: the local accounts already exist in the LDAP, but they are not mapped;
# the feudal adapter should have write access to the LDAP to modify entries in
# order to add the mapping to the federated OIDC account.
# - full_access: the feudal adapter has full access to the LDAP and can add/delete/update
# entries contianing local accounts and mappings.
mode
=
read_only
# host where ldap server is running, default: localhost
host
=
ldap_server
...
...
@@ -249,10 +260,11 @@ host = ldap_server
port
=
1389
# OPTIONAL: admin credentials to authenticate to the ldap
# NEEDED for modifying the LDAP
# when not provided, anonymous bind is used
# admin user should be fully qualified
user
=
cn
=
admin
,
dc
=
cesga
,
dc
=
es
password
=
adminpassword
# admin_
user = cn=admin,dc=cesga,dc=es
# admin_
password = adminpassword
# set to true if tls is enabled; default: False
# not supported yet
...
...
@@ -260,18 +272,34 @@ tls = False
# ldap base for user namespace; default: ou=users,dc=example
# can include any number of ou / o / dc entries separated by commas
base
=
dc
=
cesga
,
dc
=
es
user_
base
=
ou
=
usershpc
,
ou
=
users
,
dc
=
cesga
,
dc
=
es
# attributes containing uids for mapping a user; defaults: gecos & uid
# user entry attributes containing uids for mapping a user; defaults: gecos & uid
# users have to be have (at least) the following objectClass: inetOrgPerson, posixAccount
attribute_oidc_uid
=
labeledURI
attribute_local_uid
=
uid
### shell -- default: /bin/sh
# The unix shell to use
shell
= /
bin
/
bash
# ldap base for group namespace; default: ou=groups,dc=example
# can include any number of ou / o / dc entries separated by commas
group_base
=
ou
=
groupshpc
,
ou
=
groups
,
dc
=
cesga
,
dc
=
es
#### Options only needed for full_access mode when accounts need to be created
## shell -- default: /bin/sh
## The unix shell to use
# shell = /bin/bash
## base directory for home directories -- default /home
home_base
= /
home
/
curso
/
# home_base = /home/curso/
## UID range -- default 1000 -> 60000
# uid_min = 1000
# uid_max = 60000
## GID range -- default 1000 -> 60000
# gid_min = 1000
# gid_max = 60000
[
backend
.
ldap
.
login_info
]
# Static information displayed to the user when deployed to a service.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment