Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion controlplane/rosa/api/v1beta2/rosacontrolplane_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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"`

Expand Down
Loading