2026-02-20 12:55:59 -08:00
|
|
|
---
|
|
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: Deployment
|
|
|
|
|
metadata:
|
|
|
|
|
name: authentik-worker
|
|
|
|
|
namespace: authentik
|
|
|
|
|
spec:
|
|
|
|
|
replicas: 1
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: authentik
|
|
|
|
|
component: worker
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
app: authentik
|
|
|
|
|
component: worker
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
|
|
|
|
- name: worker
|
2026-03-06 08:15:06 -08:00
|
|
|
image: registry.ops.eblu.me/blumeops/authentik:kustomized
|
2026-02-20 12:55:59 -08:00
|
|
|
args: ["worker"]
|
|
|
|
|
env:
|
|
|
|
|
- name: AUTHENTIK_SECRET_KEY
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: secret-key
|
|
|
|
|
- name: AUTHENTIK_POSTGRESQL__HOST
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: postgresql-host
|
|
|
|
|
- name: AUTHENTIK_POSTGRESQL__PORT
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: postgresql-port
|
|
|
|
|
- name: AUTHENTIK_POSTGRESQL__NAME
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: postgresql-name
|
|
|
|
|
- name: AUTHENTIK_POSTGRESQL__USER
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: postgresql-user
|
|
|
|
|
- name: AUTHENTIK_POSTGRESQL__PASSWORD
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: postgresql-password
|
|
|
|
|
- name: AUTHENTIK_REDIS__HOST
|
|
|
|
|
value: authentik-redis
|
2026-03-23 21:05:16 -07:00
|
|
|
- name: AUTHENTIK_WORKER_CONCURRENCY
|
|
|
|
|
value: "2"
|
2026-02-20 12:55:59 -08:00
|
|
|
- name: AUTHENTIK_GRAFANA_CLIENT_SECRET
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: grafana-client-secret
|
2026-02-20 17:39:50 -08:00
|
|
|
- name: AUTHENTIK_FORGEJO_CLIENT_SECRET
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: forgejo-client-secret
|
2026-02-21 08:45:06 -08:00
|
|
|
- name: AUTHENTIK_ZOT_CLIENT_SECRET
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: zot-client-secret
|
2026-02-21 20:05:44 -08:00
|
|
|
- name: AUTHENTIK_JELLYFIN_CLIENT_SECRET
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: jellyfin-client-secret
|
2026-03-16 21:59:10 -07:00
|
|
|
- name: AUTHENTIK_MEALIE_CLIENT_SECRET
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: mealie-client-secret
|
2026-04-08 17:54:12 -07:00
|
|
|
- name: AUTHENTIK_PAPERLESS_CLIENT_SECRET
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: authentik-config
|
|
|
|
|
key: paperless-client-secret
|
2026-02-20 12:55:59 -08:00
|
|
|
volumeMounts:
|
|
|
|
|
- name: blueprints
|
|
|
|
|
mountPath: /blueprints/custom
|
|
|
|
|
readOnly: true
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
2026-04-07 15:39:29 -07:00
|
|
|
memory: "512Mi"
|
2026-02-20 12:55:59 -08:00
|
|
|
cpu: "100m"
|
|
|
|
|
limits:
|
2026-04-07 15:39:29 -07:00
|
|
|
memory: "2Gi"
|
2026-02-20 12:55:59 -08:00
|
|
|
cpu: "1000m"
|
|
|
|
|
volumes:
|
|
|
|
|
- name: blueprints
|
|
|
|
|
configMap:
|
|
|
|
|
name: authentik-blueprints
|