Package apigroup tracks which Calico API group the operator should configure
on the workloads it manages. The value is set once at startup (or when a
datastore migration completes) and read by the component handler to inject
the CALICO_API_GROUP env var into all workload containers.
APIGroup identifies which Calico CRD API group to use.
const (
// Unknown means the API group hasn't been determined yet. Unknown APIGroup = iota// V1 uses crd.projectcalico.org/v1 (legacy, via aggregated API server). V1
// V3 uses projectcalico.org/v3 (native CRDs, no API server). V3
)