prole/k8s/openbao/kerberos-configmap.yaml
chrisfu 40ea30e4c3 feat(auth): init scripts and k3s/k8s auth manifests for knoe-auth
init_knoe_auth.sh: provisions KDC secrets via 1Password, applies GKE manifests
init_knoe_users.sh: creates Kerberos principals for initial contributors
kerberos-configmap.yaml: krb5.conf for OpenBao Kerberos auth (KNOE.DEV realm)
prole-auth-deployment.yaml: k3s auth + kdc sidecar deployment for homelab
prole-kdc-configmap.yaml: k3s KDC config for homelab

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-27 14:47:27 -07:00

22 lines
392 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: knoe-krb5-conf
namespace: knoe-system
data:
krb5.conf: |
[libdefaults]
default_realm = PROLE.ORG
dns_lookup_realm = true
dns_lookup_kdc = true
[realms]
PROLE.ORG = {
kdc = 10.0.0.3
admin_server = 10.0.0.3
}
[domain_realm]
.prole.org = PROLE.ORG
prole.org = PROLE.ORG