diff --git a/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go b/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go index b7bc7a5706..10a949d04c 100644 --- a/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go +++ b/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go @@ -59,6 +59,9 @@ const ( // Stable channel group is the default channel group for stable releases. Stable ChannelGroupType = "stable" + // Fast channel group is the early release channel for generally available releases. + Fast ChannelGroupType = "fast" + // Candidate channel group is for testing candidate builds. Candidate ChannelGroupType = "candidate" @@ -107,7 +110,7 @@ type RosaControlPlaneSpec struct { //nolint: maligned // OpenShift version channel group, default is stable. // - // +kubebuilder:validation:Enum=stable;candidate;nightly + // +kubebuilder:validation:Enum=stable;fast;candidate;nightly // +kubebuilder:default=stable ChannelGroup ChannelGroupType `json:"channelGroup"`