Merge pull request #114997 from Richabanker/metrics-slis-beta

Enable ComponentSLI as beta feature
This commit is contained in:
Kubernetes Prow Robot
2023-01-27 10:04:25 -08:00
committed by GitHub
7 changed files with 83 additions and 36 deletions

View File

@@ -170,6 +170,7 @@ func TestNewWithDelegate(t *testing.T) {
"/livez/poststarthook/storage-object-count-tracker-hook",
"/livez/poststarthook/wrapping-post-start-hook",
"/metrics",
"/metrics/slis",
"/readyz",
"/readyz/delegate-health",
"/readyz/informer-sync",

View File

@@ -29,7 +29,7 @@ const (
func featureGates() map[featuregate.Feature]featuregate.FeatureSpec {
return map[featuregate.Feature]featuregate.FeatureSpec{
ComponentSLIs: {Default: false, PreRelease: featuregate.Alpha},
ComponentSLIs: {Default: true, PreRelease: featuregate.Beta},
}
}