From 2590f2ee101841998dd47ce312c0aec3dc9dd76a Mon Sep 17 00:00:00 2001 From: jr0dd <285797+jr0dd@users.noreply.github.com> Date: Thu, 2 Sep 2021 20:58:11 -0400 Subject: [PATCH 1/2] add bool for s3 backup insecure_skip_verify --- charts/authentik/Chart.yaml | 2 +- charts/authentik/README.md | 1 + charts/authentik/values.yaml | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) 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` From 440d681827ee49c2335104090db3d7af156d7882 Mon Sep 17 00:00:00 2001 From: jr0dd <285797+jr0dd@users.noreply.github.com> Date: Fri, 3 Sep 2021 08:06:52 -0400 Subject: [PATCH 2/2] add bool for s3 backup insecure_skip_verify --- README.md | 1 + 1 file changed, 1 insertion(+) 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 |