Hey fellow Kubernetes peeps, I need your help understanding something
I've been running k3s with OIDC against Keycloak, using groups in keycloak for ClusterRoleBindings.
This has worked great so far with this config:
kube-apiserver-arg:
- "oidc-issuer-url=https://our-keycloak-instance/realms/our-realm"
- "oidc-client-id=id-of-the-client"
- "oidc-groups-claim=groups"
- "oidc-groups-prefix=keycloak-groups:"
- "oidc-username-prefix=keycloak:"
- "oidc-username-claim=email"
1/?