mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-12-09 11:04:46 +00:00
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
/*
|
|
Copyright 2017 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 (
|
|
utilfeature "k8s.io/apiserver/pkg/util/feature"
|
|
)
|
|
|
|
const (
|
|
// SelfHosting is beta in v1.8
|
|
SelfHosting utilfeature.Feature = "SelfHosting"
|
|
|
|
// StoreCertsInSecrets is alpha in v1.8
|
|
StoreCertsInSecrets utilfeature.Feature = "StoreCertsInSecrets"
|
|
)
|
|
|
|
// FeatureList represents a list of feature gates
|
|
type FeatureList map[utilfeature.Feature]utilfeature.FeatureSpec
|
|
|
|
// Enabled indicates whether a feature name has been enabled
|
|
func Enabled(featureList map[string]bool, featureName utilfeature.Feature) bool {
|
|
return featureList[string(featureName)]
|
|
}
|
|
|
|
// Supports indicates whether a feature name is supported on the given
|
|
// feature set
|
|
func Supports(featureList FeatureList, featureName string) bool {
|
|
for k := range featureList {
|
|
if featureName == string(k) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Keys returns a slice of feature names for a given feature set
|
|
func Keys(featureList FeatureList) []string {
|
|
var list []string
|
|
for k := range featureList {
|
|
list = append(list, string(k))
|
|
}
|
|
return list
|
|
}
|
|
|
|
// InitFeatureGates are the default feature gates for the init command
|
|
var InitFeatureGates = FeatureList{
|
|
SelfHosting: {Default: false, PreRelease: utilfeature.Beta},
|
|
StoreCertsInSecrets: {Default: false, PreRelease: utilfeature.Alpha},
|
|
}
|