diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3cf585a..6a7615f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,6 +6,6 @@ repos: hooks: - id: trailing-whitespace - id: end-of-file-fixer - exclude: ^README.md$ + exclude: README.md$ - id: check-yaml - id: check-added-large-files diff --git a/charts/ansible-semaphore/README.md b/charts/ansible-semaphore/README.md index 4ade501..be1c0f3 100644 --- a/charts/ansible-semaphore/README.md +++ b/charts/ansible-semaphore/README.md @@ -47,6 +47,11 @@ The following table lists the configurable parameters of the Ansible-semaphore c | `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` | | `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` | | `non_admin_can_create_project` | Allow non-admin users to create new projects. | `false` | + + + + + diff --git a/charts/ansible-semaphore/values.yaml b/charts/ansible-semaphore/values.yaml index 163e715..cf0a222 100644 --- a/charts/ansible-semaphore/values.yaml +++ b/charts/ansible-semaphore/values.yaml @@ -40,6 +40,6 @@ config: 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. 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. non_admin_can_create_project: false # Allow non-admin users to create new projects.