na1/go/pkg/mod/k8s.io/[email protected]+incompatible/rest/request.go:598:31: not enough arguments in call to watch.NewStreamWatcher
have (*versioned.Decoder)
want (watch.Decoder, watch.Reporter)
require {
k8s.io/api v0.0.0-20190813180838-e711354a0280
k8s.io/apimachinery v0.0.0-20190813060636-0c17871ad6fd
k8s.io/client-go v11.0.0+incompatible
)
any idea on this issue, started happening from today
I followed this - https://github.com/kubernetes/client-go/blob/master/INSTALL.md but I still see this issue. This was working earlier.
That likely means you have other dependencies that are pulling in newer versions of some libraries causing a mismatch
I'd suggest updating your requires statements to matching levels, like the following:
require (
k8s.io/api kubernetes-1.15.3
k8s.io/apimachinery kubernetes-1.15.3
k8s.io/client-go kubernetes-1.15.3
)
Most helpful comment
That likely means you have other dependencies that are pulling in newer versions of some libraries causing a mismatch
I'd suggest updating your requires statements to matching levels, like the following: