Compare commits

..

8 Commits

Author SHA1 Message Date
Gitea Actions Bot e0c08adb87 Auto-update README with current k8s applications
Terraform / Terraform (pull_request) Failing after 15s
Generated by CI/CD workflow on 2026-03-11 16:13:09

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-11 16:13:09 +00:00
ab 9bac1c6e4a authentik: explicitly clear redis host to force postgres cache
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 16:12:19 +00:00
ab feced4994a authentik: fix worker readiness probe (worker has no HTTP listener)
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 16:04:19 +00:00
ab 38ec48cb3b authentik: disable bundled redis (not needed since 2025.10)
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 10s
2026-03-11 15:58:42 +00:00
ab f7cf170c9e Fix authentik
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-11 15:35:31 +00:00
ab 789834a151 Fix authentik
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-11 15:34:04 +00:00
ab 1949da9f71 Update k8s/core/authentik/kustomization.yaml
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-11 15:20:13 +00:00
ab 8636d4cd6b Update k8s/core/authentik/kustomization.yaml
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 15:14:18 +00:00
3 changed files with 26 additions and 3 deletions
+1 -1
View File
@@ -18,4 +18,4 @@ spec:
prune: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
+1 -1
View File
@@ -10,7 +10,7 @@ resources:
helmCharts:
- name: authentik
repo: https://charts.goauthentik.io
version: 2026.2.0
version: 2025.10.1
releaseName: authentik
namespace: authentik
valuesFile: values.yaml
+24 -1
View File
@@ -11,6 +11,8 @@ authentik:
name: "authentik"
host: "psql.psql.svc"
port: 5432
redis:
host: ""
worker:
envFrom:
- secretRef:
@@ -23,6 +25,27 @@ worker:
volumeMounts:
- name: dshm
mountPath: /dev/shm
livenessProbe:
exec:
command: ["/bin/sh", "-c", "kill -0 1"]
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 3
readinessProbe:
exec:
command: ["/bin/sh", "-c", "kill -0 1"]
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 3
startupProbe:
exec:
command: ["/bin/sh", "-c", "kill -0 1"]
initialDelaySeconds: 30
periodSeconds: 10
failureThreshold: 60
timeoutSeconds: 3
server:
envFrom:
- secretRef:
@@ -53,5 +76,5 @@ server:
hosts:
- '*.hexor.cy'
redis:
enabled: true
enabled: false