Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(tuning-component-settings): move LDAP settings under Controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fisher committed Jan 24, 2017
1 parent a5f92eb commit e6c9e23
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/managing-workflow/tuning-component-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,23 @@ DEIS_DEPLOY_REJECT_IF_PROCFILE_MISSING | rejects a deploy if the previo
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")
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)

### LDAP authentication settings

Configuration options for LDAP authentication are detailed [here](https://pythonhosted.org/django-auth-ldap/reference.html).

The following environment variables are available for enabling LDAP
authentication of user accounts in the [Controller][] component:

Setting | Description
-------------------| ---------------------------------
LDAP_ENDPOINT | The URI of the LDAP server. If not specified, LDAP authentication is not enabled (default: "", example: ```ldap://hostname```).
LDAP_BIND_DN | The distinguished name to use when binding to the LDAP server (default: "")
LDAP_BIND_PASSWORD | The password to use with LDAP_BIND_DN (default: "")
LDAP_USER_BASEDN | The distinguished name of the search base for user names (default: "")
LDAP_USER_FILTER | The name of the login field in the users search base (default: "username")
LDAP_GROUP_BASEDN | The distinguished name of the search base for user's groups names (default: "")
LDAP_GROUP_FILTER | The filter for user's groups (default: "", example: ```objectClass=person```)

### Global and per application settings

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

### LDAP authentication settings

Configuration options for LDAP authentication are detailed [here](https://pythonhosted.org/django-auth-ldap/reference.html).

The following environment variables are available for enabling LDAP
authentication of user accounts in the [Controller][] component:

Setting | Description
-------------------| ---------------------------------
LDAP_ENDPOINT | The URI of the LDAP server. If not specified, LDAP authentication is not enabled (default: "", example: ```ldap://hostname```).
LDAP_BIND_DN | The distinguished name to use when binding to the LDAP server (default: "")
LDAP_BIND_PASSWORD | The password to use with LDAP_BIND_DN (default: "")
LDAP_USER_BASEDN | The distinguished name of the search base for user names (default: "")
LDAP_USER_FILTER | The name of the login field in the users search base (default: "username")
LDAP_GROUP_BASEDN | The distinguished name of the search base for user's groups names (default: "")
LDAP_GROUP_FILTER | The filter for user's groups (default: "", example: ```objectClass=person```)

[Deploying Apps]: ../applications/deploying-apps.md
[builder]: ../understanding-workflow/components.md#builder
[controller]: ../understanding-workflow/components.md#controller
Expand Down

0 comments on commit e6c9e23

Please sign in to comment.