"github.com/k8snetworkplumbingwg/network-attachment-definition-client/pkg/client/clientset/versioned/typed/k8s.cni.cncf.io/v1"
in kubernetes (this is for some internal development, kubernetes guys wont like it :) )
if you look at line number 239:44 error, there is type conflict but it is actually pointing to same struct.
Expecting is
"k8s.io/kubernetes/vendor/github.com/k8snetworkplumbingwg/network-attachment-definition-client/vendor/k8s.io/client-go/rest".Config"
but provided "k8s.io/kubernetes/vendor/k8s.io/client-go/rest".Config"
But if you look at what is after "vendor", both are same i.e. "k8s.io/client-go/rest".Config"
How can I solve this problem. I any help or pointers will be helpful(any directions to read).
-Nobin