diff --git a/charts/authentik/README.md b/charts/authentik/README.md index e12158ce..3baff21e 100644 --- a/charts/authentik/README.md +++ b/charts/authentik/README.md @@ -105,8 +105,8 @@ The secret `authentik-postgres-credentials` must have `username` and `password` | authentik.email.password | string | `""` | SMTP credentials, when left empty, no authentication will be done | | authentik.email.port | int | `587` | SMTP server port | | authentik.email.timeout | int | `30` | Connection timeout | -| authentik.email.use_ssl | bool | `false` | Enable either use_tls or use_ssl, they can't be enabled at the same time. | -| authentik.email.use_tls | bool | `false` | Enable either use_tls or use_ssl, they can't be enabled at the same time. | +| authentik.email.use_ssl | bool | `false` | Use SSL. Enable either use_tls or use_ssl, they can't be enabled at the same time. | +| authentik.email.use_tls | bool | `false` | Use StartTLS. Enable either use_tls or use_ssl, they can't be enabled at the same time. | | authentik.email.username | string | `""` | SMTP credentials, when left empty, no authentication will be done | | authentik.error_reporting.enabled | bool | `false` | This sends anonymous usage-data, stack traces on errors and performance data to sentry.beryju.org, and is fully opt-in | | authentik.error_reporting.environment | string | `"k8s"` | This is a string that is sent to sentry with your error reports | diff --git a/charts/authentik/values.yaml b/charts/authentik/values.yaml index 960730c4..908b9104 100644 --- a/charts/authentik/values.yaml +++ b/charts/authentik/values.yaml @@ -166,9 +166,9 @@ authentik: username: "" # -- SMTP credentials, when left empty, no authentication will be done password: "" - # -- Enable either use_tls or use_ssl, they can't be enabled at the same time. + # -- Use StartTLS. Enable either use_tls or use_ssl, they can't be enabled at the same time. use_tls: false - # -- Enable either use_tls or use_ssl, they can't be enabled at the same time. + # -- Use SSL. Enable either use_tls or use_ssl, they can't be enabled at the same time. use_ssl: false # -- Connection timeout timeout: 30