How can I use a normal context to configure the kubernetes client-go?
package kube
import (
\"fmt\"
\"k8s.io/client-go/kubernetes\"
Found the problem. The implementation of github.com/imdario/mergo
changed in a newer version and breaks the actual behavior of generating the client config. So just only use revision 6633656539c1639d9d78127b7d47c622b5d7b6dc
like in the official kubernetes cient-go repository.
https://github.com/kubernetes/client-go/issues/415