From c51952b024451ee90fc3603fae24f39472b1b197 Mon Sep 17 00:00:00 2001 From: Jens L Date: Thu, 17 Aug 2023 22:51:08 +0100 Subject: [PATCH] [breaking] bump postgres dependency from 11.x to 15.x (#191) * bump postgres dependency * revert actual chart bump it just shuffles the configuration around a bunch, which would make upgrading even more painful --- .vscode/tasks.json | 15 +++++++++++++++ charts/authentik/README.md | 6 ++++-- charts/authentik/values.yaml | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..c600ddfe --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,15 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "docs", + "type": "shell", + "command": "helm-docs", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} diff --git a/charts/authentik/README.md b/charts/authentik/README.md index f89714dd..754ba0c7 100644 --- a/charts/authentik/README.md +++ b/charts/authentik/README.md @@ -55,7 +55,7 @@ redis: | Repository | Name | Version | |------------|------|---------| -| https://charts.goauthentik.io | serviceAccount(authentik-remote-cluster) | 1.1.2 | +| https://charts.goauthentik.io | serviceAccount(authentik-remote-cluster) | 1.2.2 | | https://charts.goauthentik.io | postgresql | 10.16.2 | | https://charts.goauthentik.io | redis | 15.7.6 | @@ -130,7 +130,7 @@ redis: | nodeSelector | object | `{}` | nodeSelector applied to the deployments | | podAnnotations | object | `{}` | Annotations to add to the server and worker pods | | postgresql.enabled | bool | `false` | enable the bundled bitnami postgresql chart | -| postgresql.image.tag | string | `"11.19.0-debian-11-r4"` | | +| postgresql.image.tag | string | `"15.4.0-debian-11-r0"` | | | postgresql.postgresqlDatabase | string | `"authentik"` | | | postgresql.postgresqlMaxConnections | int | `500` | | | postgresql.postgresqlUsername | string | `"authentik"` | | @@ -162,6 +162,8 @@ redis: | service.type | string | `"ClusterIP"` | | | serviceAccount.annotations | object | `{}` | | | serviceAccount.create | bool | `true` | Service account is needed for managed outposts | +| serviceAccount.fullnameOverride | string | `"authentik"` | | +| serviceAccount.nameOverride | string | `"authentik"` | | | serviceAccount.serviceAccountSecret.enabled | bool | `false` | As we use the authentik-remote-cluster chart as subchart, and that chart creates a service account secret by default which we don't need here, disable its creation | | startupProbe.enabled | bool | `true` | enables or disables the livenessProbe | | startupProbe.failureThreshold | int | `60` | | diff --git a/charts/authentik/values.yaml b/charts/authentik/values.yaml index 1fc28b83..ef27752e 100644 --- a/charts/authentik/values.yaml +++ b/charts/authentik/values.yaml @@ -241,7 +241,7 @@ postgresql: # accessModes: # - ReadWriteOnce image: - tag: 11.19.0-debian-11-r4 + tag: 15.4.0-debian-11-r0 redis: # -- enable the bundled bitnami redis chart enabled: false