mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Merge pull request #115424 from songxiao-wang87/runwxs-test11
Make docs more accurate for the contention-profiling flag
This commit is contained in:
		
							
								
								
									
										8
									
								
								pkg/generated/openapi/zz_generated.openapi.go
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										8
									
								
								pkg/generated/openapi/zz_generated.openapi.go
									
									
									
										generated
									
									
									
								
							@@ -53564,7 +53564,7 @@ func schema_k8sio_kube_scheduler_config_v1_KubeSchedulerConfiguration(ref common
 | 
			
		||||
					},
 | 
			
		||||
					"enableContentionProfiling": {
 | 
			
		||||
						SchemaProps: spec.SchemaProps{
 | 
			
		||||
							Description: "enableContentionProfiling enables lock contention profiling, if enableProfiling is true.",
 | 
			
		||||
							Description: "enableContentionProfiling enables block profiling, if enableProfiling is true.",
 | 
			
		||||
							Type:        []string{"boolean"},
 | 
			
		||||
							Format:      "",
 | 
			
		||||
						},
 | 
			
		||||
@@ -54691,7 +54691,7 @@ func schema_k8sio_kube_scheduler_config_v1beta2_KubeSchedulerConfiguration(ref c
 | 
			
		||||
					},
 | 
			
		||||
					"enableContentionProfiling": {
 | 
			
		||||
						SchemaProps: spec.SchemaProps{
 | 
			
		||||
							Description: "enableContentionProfiling enables lock contention profiling, if enableProfiling is true.",
 | 
			
		||||
							Description: "enableContentionProfiling enables block profiling, if enableProfiling is true.",
 | 
			
		||||
							Type:        []string{"boolean"},
 | 
			
		||||
							Format:      "",
 | 
			
		||||
						},
 | 
			
		||||
@@ -55797,7 +55797,7 @@ func schema_k8sio_kube_scheduler_config_v1beta3_KubeSchedulerConfiguration(ref c
 | 
			
		||||
					},
 | 
			
		||||
					"enableContentionProfiling": {
 | 
			
		||||
						SchemaProps: spec.SchemaProps{
 | 
			
		||||
							Description: "enableContentionProfiling enables lock contention profiling, if enableProfiling is true.",
 | 
			
		||||
							Description: "enableContentionProfiling enables block profiling, if enableProfiling is true.",
 | 
			
		||||
							Type:        []string{"boolean"},
 | 
			
		||||
							Format:      "",
 | 
			
		||||
						},
 | 
			
		||||
@@ -57308,7 +57308,7 @@ func schema_k8sio_kubelet_config_v1beta1_KubeletConfiguration(ref common.Referen
 | 
			
		||||
					},
 | 
			
		||||
					"enableContentionProfiling": {
 | 
			
		||||
						SchemaProps: spec.SchemaProps{
 | 
			
		||||
							Description: "enableContentionProfiling enables lock contention profiling, if enableDebuggingHandlers is true. Default: false",
 | 
			
		||||
							Description: "enableContentionProfiling enables block profiling, if enableDebuggingHandlers is true. Default: false",
 | 
			
		||||
							Type:        []string{"boolean"},
 | 
			
		||||
							Format:      "",
 | 
			
		||||
						},
 | 
			
		||||
 
 | 
			
		||||
@@ -159,7 +159,7 @@ type KubeletConfiguration struct {
 | 
			
		||||
	// enableDebuggingHandlers enables server endpoints for log collection
 | 
			
		||||
	// and local running of containers and commands
 | 
			
		||||
	EnableDebuggingHandlers bool
 | 
			
		||||
	// enableContentionProfiling enables lock contention profiling, if enableDebuggingHandlers is true.
 | 
			
		||||
	// enableContentionProfiling enables block profiling, if enableDebuggingHandlers is true.
 | 
			
		||||
	EnableContentionProfiling bool
 | 
			
		||||
	// healthzPort is the port of the localhost healthz endpoint (set to 0 to disable)
 | 
			
		||||
	HealthzPort int32
 | 
			
		||||
 
 | 
			
		||||
@@ -74,7 +74,7 @@ type LeaderElectionConfiguration struct {
 | 
			
		||||
type DebuggingConfiguration struct {
 | 
			
		||||
	// enableProfiling enables profiling via web interface host:port/debug/pprof/
 | 
			
		||||
	EnableProfiling bool
 | 
			
		||||
	// enableContentionProfiling enables lock contention profiling, if
 | 
			
		||||
	// enableContentionProfiling enables block profiling, if
 | 
			
		||||
	// enableProfiling is true.
 | 
			
		||||
	EnableContentionProfiling bool
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -60,7 +60,7 @@ type LeaderElectionConfiguration struct {
 | 
			
		||||
type DebuggingConfiguration struct {
 | 
			
		||||
	// enableProfiling enables profiling via web interface host:port/debug/pprof/
 | 
			
		||||
	EnableProfiling *bool `json:"enableProfiling,omitempty"`
 | 
			
		||||
	// enableContentionProfiling enables lock contention profiling, if
 | 
			
		||||
	// enableContentionProfiling enables block profiling, if
 | 
			
		||||
	// enableProfiling is true.
 | 
			
		||||
	EnableContentionProfiling *bool `json:"enableContentionProfiling,omitempty"`
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -221,7 +221,7 @@ type KubeletConfiguration struct {
 | 
			
		||||
	// Default: true
 | 
			
		||||
	// +optional
 | 
			
		||||
	EnableDebuggingHandlers *bool `json:"enableDebuggingHandlers,omitempty"`
 | 
			
		||||
	// enableContentionProfiling enables lock contention profiling, if enableDebuggingHandlers is true.
 | 
			
		||||
	// enableContentionProfiling enables block profiling, if enableDebuggingHandlers is true.
 | 
			
		||||
	// Default: false
 | 
			
		||||
	// +optional
 | 
			
		||||
	EnableContentionProfiling bool `json:"enableContentionProfiling,omitempty"`
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user