pkg/features/kube_features.go (15 lines of code) (raw):

/* Copyright 2023 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package features import ( "k8s.io/apimachinery/pkg/util/runtime" utilfeature "k8s.io/apiserver/pkg/util/feature" "k8s.io/component-base/featuregate" ) const ( // owner: @kerthcet // kep: <link to kep> // alpha: v0.3.1 // // TODO: This is for reference. Remove it once we have real feature gates. FeatureGateForTest featuregate.Feature = "FeatureGateForTest" ) func init() { runtime.Must(utilfeature.DefaultMutableFeatureGate.Add(defaultFeatureGates)) } // defaultFeatureGates consists of all known Kueue-specific feature keys. // To add a new feature, define a key for it above and add it here. The features will be // available throughout Kueue binaries. // // Entries are separated from each other with blank lines to avoid sweeping gofmt changes // when adding or removing one entry. var defaultFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{ FeatureGateForTest: {Default: false, PreRelease: featuregate.Alpha}, }