remove special clientrepo code from main repository gcp plugin

rename plugin/pkg/client/auth/plugins.go package name to auth

add the plugin import line in client-gen

update import_known_versions for release_1_5 clientset

change copy.sh
This commit is contained in:
Chao Xu
2016-09-22 13:18:07 -07:00
parent b95fa62fe1
commit e17e0b19ab
6 changed files with 23 additions and 26 deletions

View File

@@ -64,6 +64,8 @@ func (g *genClientset) Imports(c *generator.Context) (imports []string) {
}
imports = append(imports, "github.com/golang/glog")
imports = append(imports, "k8s.io/kubernetes/pkg/util/flowcontrol")
// import solely to initialize client auth plugins.
imports = append(imports, "_ \"k8s.io/kubernetes/plugin/pkg/client/auth\"")
return
}