Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Added support for sigs.k8s.io about api #361

Merged
Changes from 1 commit
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: 5 additions & 0 deletions feature/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ const (
// itself to avoid impact to users.
ClusterClaim featuregate.Feature = "ClusterClaim"

// ClusterProperty is a feature gate on hub controller and spoke-agent. When it is enabled on the
// spoke agent, it will use the claim controller to manage the managed cluster property
ClusterProperty featuregate.Feature = "ClusterProperty"

// AddonManagement is a feature gate on hub controller and spoke-agent. When it is enabled on the
//spoke agent, it will start a new controllers to manage the managed cluster addons
// registration and maintains the status of managed cluster addons through watching their leases.
Expand Down Expand Up @@ -90,6 +94,7 @@ const (
// add it here.
var DefaultSpokeRegistrationFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
ClusterClaim: {Default: true, PreRelease: featuregate.Beta},
ClusterProperty: {Default: true, PreRelease: featuregate.Beta},
AddonManagement: {Default: true, PreRelease: featuregate.Beta},
V1beta1CSRAPICompatibility: {Default: false, PreRelease: featuregate.Alpha},
MultipleHubs: {Default: false, PreRelease: featuregate.Alpha},
Expand Down