Informer cache sync timed out due to transient 429 from API server. REST loader does one GET + retry, polls every 30s. Zero new deps. go.mod back to 1.25.4, CI back to golang:1.25-bookworm.
14 lines
395 B
Go
14 lines
395 B
Go
// Package v1 contains API Schema definitions for the gateway v1 API group.
|
|
// These types document the CRD shape; the gateway itself uses the dynamic
|
|
// REST loader (no typed client, no scheme registration).
|
|
//
|
|
// +kubebuilder:object:generate=true
|
|
// +groupName=gateway.riotpiao.com
|
|
package v1
|
|
|
|
// GroupVersion constants for the CRD.
|
|
const (
|
|
Group = "gateway.riotpiao.com"
|
|
Version = "v1"
|
|
)
|