Merge pull request #103763 from chendave/runtime

Using full url format as runtime endpoint
This commit is contained in:
Kubernetes Prow Robot 2021-08-06 07:33:31 -07:00 committed by GitHub
commit 5dd4d3c7f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,7 +165,7 @@ func GetHollowKubeletConfig(opt *HollowKubletOptions) (*options.KubeletFlags, *k
f.RegisterNode = true
f.RegisterSchedulable = true
f.RegisterWithTaints = opt.RegisterWithTaints
f.RemoteImageEndpoint = "/run/containerd/containerd.sock"
f.RemoteImageEndpoint = "unix:///run/containerd/containerd.sock"
// Config struct
c, err := options.NewKubeletConfiguration()