mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-18 07:45:13 +00:00
Automatic merge from submit-queue Example of unversioned pkg uses correct Config struct Currently this Doc has incorrect example - https://godoc.org/k8s.io/kubernetes/pkg/client/unversioned So when developers use it they are confused why `client` pkg has no `Config` struct, actually this is a struct from `restclient` pkg. Also pkg name and variable name should be equal: `client, err := client.New(config)` Thanks, Alex