.
This commit is contained in:
parent
744d8a7bca
commit
516e41e57c
@ -6,6 +6,6 @@ repos:
|
|||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
exclude: ^README.md$
|
exclude: README.md$
|
||||||
- id: check-yaml
|
- id: check-yaml
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
|
@ -47,6 +47,11 @@ The following table lists the configurable parameters of the Ansible-semaphore c
|
|||||||
| `config.ldap_searchdn` | | `null` |
|
| `config.ldap_searchdn` | | `null` |
|
||||||
| `config.concurrency_mode` | Can be unset/empty or project or node. When set to project, tasks will run in parallel if and only if they do not share the same project id, with no regard to the nodes/hosts that are affected. When set to node, a task will run in parallel if and only if the hosts affected by tasks already running does not intersect with the hosts that would be affected by the task in question. If concurrency_mode is not specified or left empty, no task will start before the previous one has finished. | `null` |
|
| `config.concurrency_mode` | Can be unset/empty or project or node. When set to project, tasks will run in parallel if and only if they do not share the same project id, with no regard to the nodes/hosts that are affected. When set to node, a task will run in parallel if and only if the hosts affected by tasks already running does not intersect with the hosts that would be affected by the task in question. If concurrency_mode is not specified or left empty, no task will start before the previous one has finished. | `null` |
|
||||||
| `max_parallel_tasks` | | `null` |
|
| `max_parallel_tasks` | | `null` |
|
||||||
| `oidc_providers` | | `"OpenID provider settings. You can provide multiple OpenID providers. More about OpenID configuration read in [OpenID](https://docs.semaphoreui.com/administration-guide/openid/)."` |
|
| `oidc_providers` | OpenID provider settings. You can provide multiple OpenID providers. More about OpenID configuration read in [OpenID](https://docs.semaphoreui.com/administration-guide/openid/). | `null` |
|
||||||
| `password_login_disable` | Disable login with using password. Only LDAP and OpenID. | `false` |
|
| `password_login_disable` | Disable login with using password. Only LDAP and OpenID. | `false` |
|
||||||
| `non_admin_can_create_project` | Allow non-admin users to create new projects. | `false` |
|
| `non_admin_can_create_project` | Allow non-admin users to create new projects. | `false` |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -40,6 +40,6 @@ config:
|
|||||||
ldap_searchdn:
|
ldap_searchdn:
|
||||||
concurrency_mode: # Can be unset/empty or project or node. When set to project, tasks will run in parallel if and only if they do not share the same project id, with no regard to the nodes/hosts that are affected. When set to node, a task will run in parallel if and only if the hosts affected by tasks already running does not intersect with the hosts that would be affected by the task in question. If concurrency_mode is not specified or left empty, no task will start before the previous one has finished.
|
concurrency_mode: # Can be unset/empty or project or node. When set to project, tasks will run in parallel if and only if they do not share the same project id, with no regard to the nodes/hosts that are affected. When set to node, a task will run in parallel if and only if the hosts affected by tasks already running does not intersect with the hosts that would be affected by the task in question. If concurrency_mode is not specified or left empty, no task will start before the previous one has finished.
|
||||||
max_parallel_tasks:
|
max_parallel_tasks:
|
||||||
oidc_providers: OpenID provider settings. You can provide multiple OpenID providers. More about OpenID configuration read in [OpenID](https://docs.semaphoreui.com/administration-guide/openid/).
|
oidc_providers: # OpenID provider settings. You can provide multiple OpenID providers. More about OpenID configuration read in [OpenID](https://docs.semaphoreui.com/administration-guide/openid/).
|
||||||
password_login_disable: false # Disable login with using password. Only LDAP and OpenID.
|
password_login_disable: false # Disable login with using password. Only LDAP and OpenID.
|
||||||
non_admin_can_create_project: false # Allow non-admin users to create new projects.
|
non_admin_can_create_project: false # Allow non-admin users to create new projects.
|
||||||
|
Loading…
Reference in New Issue
Block a user