Merge pull request #112136 from pacoxu/migrate-runtime-endpoint-flags

kubelet: migrate container runtime endpoint flag to config
This commit is contained in:
Kubernetes Prow Robot
2023-01-03 09:29:31 -08:00
committed by GitHub
18 changed files with 79 additions and 31 deletions

View File

@@ -58632,7 +58632,23 @@ func schema_k8sio_kubelet_config_v1beta1_KubeletConfiguration(ref common.Referen
Format: "",
},
},
"containerRuntimeEndpoint": {
SchemaProps: spec.SchemaProps{
Description: "ContainerRuntimeEndpoint is the endpoint of container runtime. Unix Domain Sockets are supported on Linux, while npipe and tcp endpoints are supported on Windows. Examples:'unix:///path/to/runtime.sock', 'npipe:////./pipe/runtime'",
Default: "",
Type: []string{"string"},
Format: "",
},
},
"imageServiceEndpoint": {
SchemaProps: spec.SchemaProps{
Description: "ImageServiceEndpoint is the endpoint of container image service. Unix Domain Socket are supported on Linux, while npipe and tcp endpoints are supported on Windows. Examples:'unix:///path/to/runtime.sock', 'npipe:////./pipe/runtime'. If not specified, the value in containerRuntimeEndpoint is used.",
Type: []string{"string"},
Format: "",
},
},
},
Required: []string{"containerRuntimeEndpoint"},
},
},
Dependencies: []string{