Files
open-cluster-management/pkg/features/feature.go
2023-08-21 00:03:58 -02:30

17 lines
422 B
Go

// Copyright (c) Red Hat, Inc.
// Copyright Contributors to the Open Cluster Management project
package features
import (
"k8s.io/component-base/featuregate"
)
var (
// HubMutableFeatureGate of multiple mutable feature-gate for hub
HubMutableFeatureGate = featuregate.NewFeatureGate()
// SpokeMutableFeatureGate of multiple mutable feature-gates for agent
SpokeMutableFeatureGate = featuregate.NewFeatureGate()
)