Skip to content

Commit ce0bb07

Browse files
committed
add APIServerTracing feature gate
1 parent 6e9dee4 commit ce0bb07

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pkg/features/kube_features.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,12 @@ const (
649649
// Add support for the HPA to scale based on metrics from individual containers
650650
// in target pods
651651
HPAContainerMetrics featuregate.Feature = "HPAContainerMetrics"
652+
653+
// owner: @dashpole
654+
// alpha: v1.20
655+
//
656+
// Add support for distributed tracing in the API Server
657+
APIServerTracing featuregate.Feature = "APIServerTracing"
652658
)
653659

654660
func init() {
@@ -747,6 +753,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
747753
WinDSR: {Default: false, PreRelease: featuregate.Alpha},
748754
DisableAcceleratorUsageMetrics: {Default: true, PreRelease: featuregate.Beta},
749755
HPAContainerMetrics: {Default: false, PreRelease: featuregate.Alpha},
756+
APIServerTracing: {Default: false, PreRelease: featuregate.Alpha},
750757

751758
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
752759
// unintentionally on either side:

0 commit comments

Comments
 (0)