Skip to content

Commit

Permalink
update feature gates to match desired values
Browse files Browse the repository at this point in the history
  • Loading branch information
deads2k committed Mar 8, 2019
1 parent c95c5aa commit 32e5296
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions config/v1/types_features.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,26 @@ type FeatureEnabledDisabled struct {
// example:
// if featureSet, ok := FeaturesSets["SomeNewFeature"]; ok { }
//
// If you put an item in either of these lists, put your area and name on it so we can find owners.
var FeatureSets = map[FeatureSet]*FeatureEnabledDisabled{
Default: &FeatureEnabledDisabled{
Enabled: []string{},
Disabled: []string{"PersistentLocalVolumes"},
Enabled: []string{
"ExperimentalCriticalPodAnnotation", // sig-pod, sjenning
"RotateKubeletServerCertificate", // sig-pod, sjenning
},
Disabled: []string{
"LocalStorageCapacityIsolation", // sig-pod, sjenning
"PersistentLocalVolumes", // sig-storage, hekumar@redhat.com
},
},
TechPreviewNoUpgrade: &FeatureEnabledDisabled{
Enabled: []string{},
Disabled: []string{},
Enabled: []string{
"ExperimentalCriticalPodAnnotation", // sig-pod, sjenning
"RotateKubeletServerCertificate", // sig-pod, sjenning
},
Disabled: []string{
"LocalStorageCapacityIsolation", // sig-pod, sjenning
"PersistentLocalVolumes", // sig-storage, hekumar@redhat.com
},
},
}

0 comments on commit 32e5296

Please sign in to comment.