HIP-408: IAM CRD. Status Active. Hanzo's own standard โ read this before implementing against it.
The IAM CRD is the facade Kind for the Hanzo identity service (hanzoai/iam). It is structurally a Service and delegates to the Service reconciler. The Kind exists so kubectl get iam yields the canonical identity workload directly rather than searching among generic services. See HIP-026 for the IAM design.
hanzo.ai/v1, plural iams, shortname iam.
Same shape as Service (HIP-400). Conventionally:
image.repository: ghcr.io/hanzoai/iamports: containerPort: 8000registry-signing-key secret for registry token issuanceiam-secrets via envFromapiVersion: hanzo.ai/v1
kind: IAM
metadata:
name: iam
namespace: hanzo
spec:
image:
repository: ghcr.io/hanzoai/iam
tag: 2.381.0
replicas: 2
ports:
- name: http
containerPort: 8000
servicePort: 80
envFrom:
- secretRef:
name: iam-secrets
readinessProbe:
path: /api/health
port: 8000
Deployment, Service, optional Ingress (in practice Ingress is managed separately because IAM serves multi-tenant hostnames โ hanzo.id, lux.id, zoo.id, pars.id, id.hanzo.ai, id.lux.network, id.pars.network, id.ad.nexus).
~/work/hanzo/operator/src/controllers/service.rs (via IAM facade in crd.rs).
Implemented in hanzoai/operator v0.3.0+. CR iam active in cluster.