diff --git a/README.md b/README.md index a0439eed..fedea75f 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,7 @@ redis: | authentik.postgresql.s3_backup.access_key | string | `""` | optional S3 backup, access key | | authentik.postgresql.s3_backup.bucket | string | `""` | optional S3 backup, bucket | | authentik.postgresql.s3_backup.host | string | `""` | optional S3 backup, host, including protocol (https://minio.domain.tld) | +| authentik.postgresql.s3_backup.insecure_skip_verify | bool | `false` | optional S3 backup, set to `true` to disable SSL certificate verification | | authentik.postgresql.s3_backup.location | string | `"/"` | optional S3 backup, location in the bucket | | authentik.postgresql.s3_backup.region | string | `""` | optional S3 backup, region | | authentik.postgresql.s3_backup.secret_key | string | `""` | optional S3 backup, secret key | diff --git a/charts/authentik/Chart.yaml b/charts/authentik/Chart.yaml index 3f7eb85a..6181dbce 100644 --- a/charts/authentik/Chart.yaml +++ b/charts/authentik/Chart.yaml @@ -16,7 +16,7 @@ keywords: - ldap - idp - sp -version: 2.2.0 +version: 2.2.1 appVersion: 2021.8.4 icon: https://raw.githubusercontent.com/BeryJu/authentik/master/web/icons/icon.svg maintainers: diff --git a/charts/authentik/README.md b/charts/authentik/README.md index a0439eed..fedea75f 100644 --- a/charts/authentik/README.md +++ b/charts/authentik/README.md @@ -87,6 +87,7 @@ redis: | authentik.postgresql.s3_backup.access_key | string | `""` | optional S3 backup, access key | | authentik.postgresql.s3_backup.bucket | string | `""` | optional S3 backup, bucket | | authentik.postgresql.s3_backup.host | string | `""` | optional S3 backup, host, including protocol (https://minio.domain.tld) | +| authentik.postgresql.s3_backup.insecure_skip_verify | bool | `false` | optional S3 backup, set to `true` to disable SSL certificate verification | | authentik.postgresql.s3_backup.location | string | `"/"` | optional S3 backup, location in the bucket | | authentik.postgresql.s3_backup.region | string | `""` | optional S3 backup, region | | authentik.postgresql.s3_backup.secret_key | string | `""` | optional S3 backup, secret key | diff --git a/charts/authentik/values.yaml b/charts/authentik/values.yaml index e960a4bc..23a5738d 100644 --- a/charts/authentik/values.yaml +++ b/charts/authentik/values.yaml @@ -91,6 +91,8 @@ authentik: # -- optional S3 backup, location in the bucket # @default -- `"/"` location: "" + # -- optional S3 backup, set to `true` to disable SSL certificate verification + insecure_skip_verify: false redis: # -- set the redis hostname to talk to # @default -- `{{ .Release.Name }}-redis-master`