Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[breaking] bump postgres dependency from 11.x to 15.x #191

Merged
merged 2 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "docs",
"type": "shell",
"command": "helm-docs",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
2 changes: 1 addition & 1 deletion charts/authentik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ maintainers:
url: https://goauthentik.io
dependencies:
- name: postgresql
version: 10.16.2
version: 12.8.2
repository: https://charts.goauthentik.io
condition: postgresql.enabled
- name: redis
Expand Down
8 changes: 5 additions & 3 deletions charts/authentik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ redis:

| Repository | Name | Version |
|------------|------|---------|
| https://charts.goauthentik.io | serviceAccount(authentik-remote-cluster) | 1.1.2 |
| https://charts.goauthentik.io | postgresql | 10.16.2 |
| https://charts.goauthentik.io | serviceAccount(authentik-remote-cluster) | 1.2.2 |
| https://charts.goauthentik.io | postgresql | 12.8.2 |
| https://charts.goauthentik.io | redis | 15.7.6 |

## Values
Expand Down Expand Up @@ -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"` | |
Expand Down Expand Up @@ -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` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/authentik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading