apiVersion: apps/v1 kind: Deployment metadata: name: authentik-ldap namespace: authentik spec: replicas: 1 selector: matchLabels: app: authentik-ldap template: metadata: labels: app: authentik-ldap spec: containers: - name: ldap image: ghcr.io/goauthentik/ldap:2026.8.0 ports: - containerPort: 3389 name: ldap - containerPort: 6636 name: ldaps - containerPort: 9300 name: metrics envFrom: - secretRef: name: authentik-ldap-secrets livenessProbe: httpGet: path: /outpost.goauthentik.io/ping port: 9300 initialDelaySeconds: 10 periodSeconds: 30 readinessProbe: httpGet: path: /outpost.goauthentik.io/ping port: 9300 initialDelaySeconds: 5 periodSeconds: 10 resources: requests: cpu: 50m memory: 128Mi limits: memory: 256Mi