Skip to content

Commit 52abb16

Browse files
author
Matthew Fisher
authored
Merge pull request #714 from bacongobbler/fix-ldap
fix(tuning-component-settings): move LDAP settings under Controller
2 parents 8442128 + e6c9e23 commit 52abb16

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

src/managing-workflow/tuning-component-settings.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,23 @@ DEIS_DEPLOY_REJECT_IF_PROCFILE_MISSING | rejects a deploy if the previo
5151
DEIS_DEPLOY_PROCFILE_MISSING_REMOVE | when turned on (default) any missing process type in a Procfile compared to the previous deploy is removed. When set to false will allow an empty Procfile to go through without removing missing process types, note that new images, configs and so on will get updated on all proc types. (default: "true", allowed values: "true", "false")
5252
KUBERNETES_NAMESPACE_DEFAULT_QUOTA_SPEC | set resource quota to application namespace by setting [ResourceQuota](http://kubernetes.io/docs/admin/resourcequota/) spec, for example: `{"spec":{"hard":{"pods":"10"}}}`, restrict app owner to spawn more then 10 pods (default: "", no quota will be applied to namespace)
5353

54+
### LDAP authentication settings
55+
56+
Configuration options for LDAP authentication are detailed [here](https://pythonhosted.org/django-auth-ldap/reference.html).
57+
58+
The following environment variables are available for enabling LDAP
59+
authentication of user accounts in the [Controller][] component:
60+
61+
Setting | Description
62+
-------------------| ---------------------------------
63+
LDAP_ENDPOINT | The URI of the LDAP server. If not specified, LDAP authentication is not enabled (default: "", example: ```ldap://hostname```).
64+
LDAP_BIND_DN | The distinguished name to use when binding to the LDAP server (default: "")
65+
LDAP_BIND_PASSWORD | The password to use with LDAP_BIND_DN (default: "")
66+
LDAP_USER_BASEDN | The distinguished name of the search base for user names (default: "")
67+
LDAP_USER_FILTER | The name of the login field in the users search base (default: "username")
68+
LDAP_GROUP_BASEDN | The distinguished name of the search base for user's groups names (default: "")
69+
LDAP_GROUP_FILTER | The filter for user's groups (default: "", example: ```objectClass=person```)
70+
5471
### Global and per application settings
5572

5673
Setting | Description
@@ -126,23 +143,6 @@ VERSIONS_API_URL | The versions API URL (default: "<https://versions-staging.de
126143
DOCTOR_API_URL | The doctor API URL (default: "<https://doctor-staging.deis.com>")
127144
API_VERSION | The version number Workflow Manager sends to the versions API (default: "v2")
128145

129-
### LDAP authentication settings
130-
131-
Configuration options for LDAP authentication are detailed [here](https://pythonhosted.org/django-auth-ldap/reference.html).
132-
133-
The following environment variables are available for enabling LDAP
134-
authentication of user accounts in the [Controller][] component:
135-
136-
Setting | Description
137-
-------------------| ---------------------------------
138-
LDAP_ENDPOINT | The URI of the LDAP server. If not specified, LDAP authentication is not enabled (default: "", example: ```ldap://hostname```).
139-
LDAP_BIND_DN | The distinguished name to use when binding to the LDAP server (default: "")
140-
LDAP_BIND_PASSWORD | The password to use with LDAP_BIND_DN (default: "")
141-
LDAP_USER_BASEDN | The distinguished name of the search base for user names (default: "")
142-
LDAP_USER_FILTER | The name of the login field in the users search base (default: "username")
143-
LDAP_GROUP_BASEDN | The distinguished name of the search base for user's groups names (default: "")
144-
LDAP_GROUP_FILTER | The filter for user's groups (default: "", example: ```objectClass=person```)
145-
146146
[Deploying Apps]: ../applications/deploying-apps.md
147147
[builder]: ../understanding-workflow/components.md#builder
148148
[controller]: ../understanding-workflow/components.md#controller

0 commit comments

Comments
 (0)