k8s-cluster
k8s-cluster copied to clipboard
feat(helm): update chart authentik ( 2024.2.3 → 2024.4.1 )
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| authentik (source) | minor | 2024.2.3 -> 2024.4.1 |
[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
goauthentik/helm (authentik)
v2024.4.1
authentik is an open-source Identity Provider focused on flexibility and versatility
What's Changed
- bump to 2024.4.1 by @BeryJu in https://github.com/goauthentik/helm/pull/264
Full Changelog: https://github.com/goauthentik/helm/compare/authentik-2024.4.0...authentik-2024.4.1
v2024.4.0
authentik is an open-source Identity Provider focused on flexibility and versatility
What's Changed
- Fix secret key name by @sherif-fanous in https://github.com/goauthentik/helm/pull/260
- Bump helm/kind-action from 1.9.0 to 1.10.0 by @dependabot in https://github.com/goauthentik/helm/pull/261
- feat(charts/authentik): add probes to worker deployment by @channel-42 in https://github.com/goauthentik/helm/pull/255
- bump to 2024.4 by @BeryJu in https://github.com/goauthentik/helm/pull/262
New Contributors
- @channel-42 made their first contribution in https://github.com/goauthentik/helm/pull/255
Full Changelog: https://github.com/goauthentik/helm/compare/authentik-2024.2.3...authentik-2024.4.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Renovate Bot.
--- k8s/nebula/apps/security/authentik/app Kustomization: flux-system/authentik HelmRelease: security/authentik
+++ k8s/nebula/apps/security/authentik/app Kustomization: flux-system/authentik HelmRelease: security/authentik
@@ -13,13 +13,13 @@
chart: authentik
interval: 5m
sourceRef:
kind: HelmRepository
name: authentik-charts
namespace: flux-system
- version: 2024.2.3
+ version: 2024.4.2
dependsOn:
- name: redis
namespace: databases
install:
remediation:
retries: 5
--- HelmRelease: security/authentik Deployment: security/authentik-server
+++ HelmRelease: security/authentik Deployment: security/authentik-server
@@ -23,13 +23,13 @@
app.kubernetes.io/name: authentik
app.kubernetes.io/instance: authentik
app.kubernetes.io/component: server
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: authentik
annotations:
- checksum/secret: 6213658584b603f4d8279fca1f3f2e5cc3ceee78e45aa7672019ffc01bdd92ab
+ checksum/secret: d0ebf7b1d19be9fb70c1e404d1994ba48ae9c3f289e26102d75e8a82121b56d0
spec:
terminationGracePeriodSeconds: 30
containers:
- name: server
image: ghcr.io/goauthentik/server:2024.4.1
imagePullPolicy: IfNotPresent
--- HelmRelease: security/authentik Deployment: security/authentik-worker
+++ HelmRelease: security/authentik Deployment: security/authentik-worker
@@ -23,13 +23,13 @@
app.kubernetes.io/name: authentik
app.kubernetes.io/instance: authentik
app.kubernetes.io/component: worker
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: authentik
annotations:
- checksum/secret: 6213658584b603f4d8279fca1f3f2e5cc3ceee78e45aa7672019ffc01bdd92ab
+ checksum/secret: d0ebf7b1d19be9fb70c1e404d1994ba48ae9c3f289e26102d75e8a82121b56d0
spec:
serviceAccountName: authentik
terminationGracePeriodSeconds: 30
containers:
- name: worker
image: ghcr.io/goauthentik/server:2024.4.1
@@ -37,12 +37,42 @@
args:
- worker
env: null
envFrom:
- secretRef:
name: authentik
+ livenessProbe:
+ exec:
+ command:
+ - ak
+ - healthcheck
+ failureThreshold: 3
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ successThreshold: 1
+ timeoutSeconds: 1
+ readinessProbe:
+ exec:
+ command:
+ - ak
+ - healthcheck
+ failureThreshold: 3
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ successThreshold: 1
+ timeoutSeconds: 1
+ startupProbe:
+ exec:
+ command:
+ - ak
+ - healthcheck
+ failureThreshold: 60
+ initialDelaySeconds: 30
+ periodSeconds: 10
+ successThreshold: 1
+ timeoutSeconds: 1
resources:
limits:
memory: 1Gi
requests:
cpu: 50m
memory: 512Mi