├── vendor ├── k8s.io │ ├── client-go │ │ ├── vendor │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── sys │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── asm.s │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── race0.go │ │ │ │ │ │ └── env_unix.go │ │ │ │ │ ├── AUTHORS │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ │ ├── net │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── AUTHORS │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ │ ├── crypto │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ └── ssh │ │ │ │ │ │ └── terminal │ │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ │ └── util_linux.go │ │ │ │ │ ├── oauth2 │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── google │ │ │ │ │ │ ├── appengineflex_hook.go │ │ │ │ │ │ └── appengine_hook.go │ │ │ │ │ └── client_appengine.go │ │ │ │ │ └── text │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── language │ │ │ │ │ ├── go1_2.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── Makefile │ │ │ │ │ └── gen_common.go │ │ │ │ │ └── width │ │ │ │ │ └── kind_string.go │ │ │ ├── github.com │ │ │ │ ├── spf13 │ │ │ │ │ └── pflag │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── go-openapi │ │ │ │ │ ├── swag │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ │ └── net.go │ │ │ │ │ ├── jsonpointer │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .pullapprove.yml │ │ │ │ │ ├── jsonreference │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .pullapprove.yml │ │ │ │ │ └── spec │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ │ └── README.md │ │ │ │ ├── dgrijalva │ │ │ │ │ └── jwt-go │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── doc.go │ │ │ │ ├── emicklei │ │ │ │ │ ├── go-restful │ │ │ │ │ │ ├── Srcfile │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── coverage.sh │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── bench_test.sh │ │ │ │ │ └── go-restful-swagger12 │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── swagger_builder.go │ │ │ │ ├── imdario │ │ │ │ │ └── mergo │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── ugorji │ │ │ │ │ └── go │ │ │ │ │ │ └── codec │ │ │ │ │ │ ├── prebuild.go │ │ │ │ │ │ ├── gen_17.go │ │ │ │ │ │ ├── gen_16.go │ │ │ │ │ │ ├── gen_15.go │ │ │ │ │ │ ├── decode_go14.go │ │ │ │ │ │ └── decode_go.go │ │ │ │ ├── PuerkitoBio │ │ │ │ │ ├── purell │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ └── urlesc │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── README.md │ │ │ │ ├── coreos │ │ │ │ │ ├── go-oidc │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── client.go │ │ │ │ │ │ ├── key │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── jose │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── sig.go │ │ │ │ │ │ ├── oidc │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ │ └── NOTICE │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── httputil │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cookie.go │ │ │ │ │ │ └── json.go │ │ │ │ │ │ ├── timeutil │ │ │ │ │ │ └── backoff.go │ │ │ │ │ │ └── health │ │ │ │ │ │ └── README.md │ │ │ │ ├── ghodss │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── googleapis │ │ │ │ │ └── gnostic │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ └── README.md │ │ │ │ │ │ └── extensions │ │ │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ │ │ └── README.md │ │ │ │ ├── howeyc │ │ │ │ │ └── gopass │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── terminal.go │ │ │ │ ├── golang │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ ├── docker │ │ │ │ │ └── spdystream │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ ├── Azure │ │ │ │ │ └── go-autorest │ │ │ │ │ │ └── autorest │ │ │ │ │ │ ├── date │ │ │ │ │ │ └── utility.go │ │ │ │ │ │ ├── azure │ │ │ │ │ │ └── config.go │ │ │ │ │ │ └── version.go │ │ │ │ ├── hashicorp │ │ │ │ │ └── golang-lru │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── README.md │ │ │ │ ├── stretchr │ │ │ │ │ └── testify │ │ │ │ │ │ └── assert │ │ │ │ │ │ └── errors.go │ │ │ │ ├── jonboulle │ │ │ │ │ └── clockwork │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── mailru │ │ │ │ │ └── easyjson │ │ │ │ │ │ └── jlexer │ │ │ │ │ │ └── error.go │ │ │ │ └── gogo │ │ │ │ │ └── protobuf │ │ │ │ │ └── AUTHORS │ │ │ └── cloud.google.com │ │ │ │ └── go │ │ │ │ └── AUTHORS │ │ ├── pkg │ │ │ ├── version │ │ │ │ ├── .gitattributes │ │ │ │ └── BUILD │ │ │ └── api │ │ │ │ └── v1 │ │ │ │ └── ref │ │ │ │ └── BUILD │ │ ├── kubernetes-sha │ │ ├── plugin │ │ │ └── pkg │ │ │ │ ├── client │ │ │ │ └── auth │ │ │ │ │ ├── oidc │ │ │ │ │ └── OWNERS │ │ │ │ │ ├── gcp │ │ │ │ │ └── OWNERS │ │ │ │ │ └── BUILD │ │ │ │ └── auth │ │ │ │ └── authenticator │ │ │ │ └── token │ │ │ │ └── oidc │ │ │ │ └── testing │ │ │ │ └── BUILD │ │ ├── .travis.yml │ │ ├── tools │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── BUILD │ │ │ ├── record │ │ │ │ └── OWNERS │ │ │ ├── auth │ │ │ │ └── BUILD │ │ │ └── cache │ │ │ │ └── OWNERS │ │ ├── transport │ │ │ └── OWNERS │ │ ├── Godeps │ │ │ └── Readme │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── util │ │ │ ├── exec │ │ │ │ └── BUILD │ │ │ ├── homedir │ │ │ │ └── BUILD │ │ │ ├── cert │ │ │ │ ├── testdata │ │ │ │ │ └── dontUseThisKey.pem │ │ │ │ ├── triple │ │ │ │ │ └── BUILD │ │ │ │ └── BUILD │ │ │ ├── integer │ │ │ │ └── BUILD │ │ │ └── testing │ │ │ │ └── BUILD │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── template │ │ │ │ └── BUILD │ │ ├── rest │ │ │ └── OWNERS │ │ ├── informers │ │ │ ├── core │ │ │ │ └── BUILD │ │ │ ├── apps │ │ │ │ └── BUILD │ │ │ ├── networking │ │ │ │ └── BUILD │ │ │ ├── policy │ │ │ │ └── BUILD │ │ │ ├── extensions │ │ │ │ └── BUILD │ │ │ ├── settings │ │ │ │ └── BUILD │ │ │ ├── certificates │ │ │ │ └── BUILD │ │ │ ├── admissionregistration │ │ │ │ └── BUILD │ │ │ ├── internalinterfaces │ │ │ │ └── BUILD │ │ │ ├── batch │ │ │ │ └── BUILD │ │ │ ├── rbac │ │ │ │ └── BUILD │ │ │ ├── storage │ │ │ │ └── BUILD │ │ │ └── autoscaling │ │ │ │ └── BUILD │ │ ├── examples │ │ │ └── workqueue │ │ │ │ └── README.md │ │ ├── kubernetes │ │ │ └── typed │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── authentication │ │ │ │ └── v1 │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── certificates │ │ │ │ └── v1beta1 │ │ │ │ └── generated_expansion.go │ │ └── listers │ │ │ └── batch │ │ │ └── v2alpha1 │ │ │ └── BUILD │ ├── api │ │ ├── kubernetes-sha │ │ ├── vendor │ │ │ ├── github.com │ │ │ │ ├── go-openapi │ │ │ │ │ ├── swag │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ │ └── net.go │ │ │ │ │ ├── jsonpointer │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .pullapprove.yml │ │ │ │ │ ├── jsonreference │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .pullapprove.yml │ │ │ │ │ └── spec │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ │ └── README.md │ │ │ │ ├── spf13 │ │ │ │ │ └── pflag │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── emicklei │ │ │ │ │ └── go-restful │ │ │ │ │ │ ├── Srcfile │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── coverage.sh │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── bench_test.sh │ │ │ │ ├── ugorji │ │ │ │ │ └── go │ │ │ │ │ │ └── codec │ │ │ │ │ │ ├── prebuild.go │ │ │ │ │ │ ├── gen_17.go │ │ │ │ │ │ ├── gen_16.go │ │ │ │ │ │ ├── gen_15.go │ │ │ │ │ │ ├── decode_go14.go │ │ │ │ │ │ └── decode_go.go │ │ │ │ ├── PuerkitoBio │ │ │ │ │ ├── purell │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ └── urlesc │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── README.md │ │ │ │ ├── mailru │ │ │ │ │ └── easyjson │ │ │ │ │ │ └── jlexer │ │ │ │ │ │ └── error.go │ │ │ │ └── gogo │ │ │ │ │ └── protobuf │ │ │ │ │ └── AUTHORS │ │ │ └── golang.org │ │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── not_go18.go │ │ │ │ ├── AUTHORS │ │ │ │ └── CONTRIBUTORS │ │ │ │ └── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── language │ │ │ │ ├── go1_2.go │ │ │ │ ├── common.go │ │ │ │ ├── Makefile │ │ │ │ └── gen_common.go │ │ │ │ └── width │ │ │ │ └── kind_string.go │ │ ├── README.md │ │ └── Godeps │ │ │ └── Readme │ ├── apiextensions-apiserver │ │ ├── vendor │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── sys │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── asm.s │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── race0.go │ │ │ │ │ │ └── env_unix.go │ │ │ │ │ ├── AUTHORS │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ │ ├── net │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── AUTHORS │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ │ ├── crypto │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ └── ssh │ │ │ │ │ │ └── terminal │ │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ │ └── util_linux.go │ │ │ │ │ └── text │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── language │ │ │ │ │ ├── go1_2.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── Makefile │ │ │ │ │ └── gen_common.go │ │ │ │ │ └── width │ │ │ │ │ └── kind_string.go │ │ │ ├── github.com │ │ │ │ ├── NYTimes │ │ │ │ │ └── gziphandler │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── LICENSE.md │ │ │ │ ├── go-openapi │ │ │ │ │ ├── swag │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ │ └── net.go │ │ │ │ │ ├── jsonpointer │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .pullapprove.yml │ │ │ │ │ ├── jsonreference │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .pullapprove.yml │ │ │ │ │ └── spec │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ │ └── README.md │ │ │ │ ├── spf13 │ │ │ │ │ ├── pflag │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ └── cobra │ │ │ │ │ │ ├── command_notwin.go │ │ │ │ │ │ ├── .mailmap │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── command_win.go │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── emicklei │ │ │ │ │ ├── go-restful │ │ │ │ │ │ ├── Srcfile │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── coverage.sh │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── bench_test.sh │ │ │ │ │ └── go-restful-swagger12 │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── pborman │ │ │ │ │ └── uuid │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ └── doc.go │ │ │ │ ├── imdario │ │ │ │ │ └── mergo │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── prometheus │ │ │ │ │ ├── procfs │ │ │ │ │ │ ├── MAINTAINERS.md │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── NOTICE │ │ │ │ │ ├── client_golang │ │ │ │ │ │ └── prometheus │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── client_model │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ └── AUTHORS.md │ │ │ │ │ └── common │ │ │ │ │ │ └── NOTICE │ │ │ │ ├── ugorji │ │ │ │ │ └── go │ │ │ │ │ │ └── codec │ │ │ │ │ │ ├── prebuild.go │ │ │ │ │ │ ├── gen_17.go │ │ │ │ │ │ ├── gen_16.go │ │ │ │ │ │ ├── gen_15.go │ │ │ │ │ │ ├── decode_go14.go │ │ │ │ │ │ └── decode_go.go │ │ │ │ ├── PuerkitoBio │ │ │ │ │ ├── purell │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ └── urlesc │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── README.md │ │ │ │ ├── ghodss │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── grpc-ecosystem │ │ │ │ │ ├── grpc-gateway │ │ │ │ │ │ ├── utilities │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ └── runtime │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── stream_chunk.proto │ │ │ │ │ └── go-grpc-prometheus │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── test_all.sh │ │ │ │ ├── googleapis │ │ │ │ │ └── gnostic │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ └── README.md │ │ │ │ │ │ └── extensions │ │ │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ │ │ └── README.md │ │ │ │ ├── howeyc │ │ │ │ │ └── gopass │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── terminal.go │ │ │ │ ├── coreos │ │ │ │ │ ├── etcd │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ └── client │ │ │ │ │ │ │ └── cancelreq.go │ │ │ │ │ └── pkg │ │ │ │ │ │ └── NOTICE │ │ │ │ ├── pkg │ │ │ │ │ └── errors │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── golang │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ └── CONTRIBUTORS │ │ │ │ ├── evanphx │ │ │ │ │ └── json-patch │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── hashicorp │ │ │ │ │ └── golang-lru │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── README.md │ │ │ │ ├── stretchr │ │ │ │ │ └── testify │ │ │ │ │ │ └── assert │ │ │ │ │ │ └── errors.go │ │ │ │ ├── mailru │ │ │ │ │ └── easyjson │ │ │ │ │ │ └── jlexer │ │ │ │ │ │ └── error.go │ │ │ │ ├── elazarl │ │ │ │ │ └── go-bindata-assetfs │ │ │ │ │ │ └── doc.go │ │ │ │ ├── inconshreveable │ │ │ │ │ └── mousetrap │ │ │ │ │ │ ├── trap_others.go │ │ │ │ │ │ └── LICENSE │ │ │ │ └── gogo │ │ │ │ │ └── protobuf │ │ │ │ │ └── AUTHORS │ │ │ ├── k8s.io │ │ │ │ └── apiserver │ │ │ │ │ ├── pkg │ │ │ │ │ ├── server │ │ │ │ │ │ ├── mux │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── routes │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ └── swagger │ │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── openapi │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── healthz │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ └── httplog │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── openapi │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ └── filters │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── authorizerfactory │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ └── authorizer │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── etcd3 │ │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ ├── storagebackend │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ ├── etcd │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── value │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ ├── names │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ └── errors │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ ├── util │ │ │ │ │ │ ├── trie │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ ├── trace │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ ├── logs │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ └── flushwriter │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ ├── authenticator │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ │ └── serviceaccount │ │ │ │ │ │ │ └── BUILD │ │ │ │ │ ├── features │ │ │ │ │ │ └── BUILD │ │ │ │ │ └── registry │ │ │ │ │ │ ├── generic │ │ │ │ │ │ └── OWNERS │ │ │ │ │ │ └── rest │ │ │ │ │ │ └── OWNERS │ │ │ │ │ └── plugin │ │ │ │ │ └── pkg │ │ │ │ │ └── audit │ │ │ │ │ └── log │ │ │ │ │ └── BUILD │ │ │ ├── google.golang.org │ │ │ │ └── grpc │ │ │ │ │ ├── doc.go │ │ │ │ │ └── codes │ │ │ │ │ └── code_string.go │ │ │ ├── gopkg.in │ │ │ │ └── natefinch │ │ │ │ │ └── lumberjack.v2 │ │ │ │ │ ├── chown.go │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── chown_linux.go │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ └── Makefile │ │ ├── kubernetes-sha │ │ ├── OWNERS │ │ ├── artifacts │ │ │ ├── example │ │ │ │ ├── sa.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── apiservice.yaml │ │ │ │ ├── auth-delegator.yaml │ │ │ │ └── auth-reader.yaml │ │ │ └── customresource-01 │ │ │ │ ├── noxu.yaml │ │ │ │ ├── noxu-apiservice.yaml │ │ │ │ └── noxu-resource-definition.yaml │ │ ├── Godeps │ │ │ └── Readme │ │ └── pkg │ │ │ └── client │ │ │ └── informers │ │ │ ├── externalversions │ │ │ ├── apiextensions │ │ │ │ └── BUILD │ │ │ └── internalinterfaces │ │ │ │ └── BUILD │ │ │ └── internalversion │ │ │ ├── apiextensions │ │ │ └── BUILD │ │ │ └── internalinterfaces │ │ │ └── BUILD │ └── apimachinery │ │ ├── kubernetes-sha │ │ ├── vendor │ │ ├── github.com │ │ │ ├── go-openapi │ │ │ │ ├── swag │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ └── net.go │ │ │ │ ├── jsonpointer │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── .pullapprove.yml │ │ │ │ ├── jsonreference │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── .pullapprove.yml │ │ │ │ └── spec │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .pullapprove.yml │ │ │ │ │ └── README.md │ │ │ ├── spf13 │ │ │ │ └── pflag │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── .travis.yml │ │ │ ├── elazarl │ │ │ │ └── goproxy │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── all.bash │ │ │ ├── emicklei │ │ │ │ └── go-restful │ │ │ │ │ ├── Srcfile │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── Makefile │ │ │ │ │ └── bench_test.sh │ │ │ ├── pborman │ │ │ │ └── uuid │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ └── doc.go │ │ │ ├── PuerkitoBio │ │ │ │ ├── purell │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── .travis.yml │ │ │ │ └── urlesc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── README.md │ │ │ ├── ugorji │ │ │ │ └── go │ │ │ │ │ └── codec │ │ │ │ │ ├── prebuild.go │ │ │ │ │ ├── gen_17.go │ │ │ │ │ ├── gen_16.go │ │ │ │ │ ├── gen_15.go │ │ │ │ │ ├── decode_go14.go │ │ │ │ │ └── decode_go.go │ │ │ ├── ghodss │ │ │ │ └── yaml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .gitignore │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ └── CONTRIBUTORS │ │ │ ├── docker │ │ │ │ └── spdystream │ │ │ │ │ ├── utils.go │ │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── evanphx │ │ │ │ └── json-patch │ │ │ │ │ └── .travis.yml │ │ │ ├── hashicorp │ │ │ │ └── golang-lru │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── README.md │ │ │ ├── mailru │ │ │ │ └── easyjson │ │ │ │ │ └── jlexer │ │ │ │ │ └── error.go │ │ │ └── gogo │ │ │ │ └── protobuf │ │ │ │ └── AUTHORS │ │ └── golang.org │ │ │ └── x │ │ │ ├── net │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ └── Makefile │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ │ │ └── text │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── language │ │ │ ├── go1_2.go │ │ │ ├── common.go │ │ │ ├── Makefile │ │ │ └── gen_common.go │ │ │ └── width │ │ │ └── kind_string.go │ │ ├── pkg │ │ ├── util │ │ │ ├── mergepatch │ │ │ │ └── OWNERS │ │ │ ├── strategicpatch │ │ │ │ └── OWNERS │ │ │ ├── sets │ │ │ │ └── types │ │ │ │ │ └── BUILD │ │ │ ├── remotecommand │ │ │ │ └── BUILD │ │ │ ├── uuid │ │ │ │ └── BUILD │ │ │ ├── clock │ │ │ │ └── BUILD │ │ │ ├── json │ │ │ │ └── BUILD │ │ │ ├── rand │ │ │ │ └── BUILD │ │ │ ├── framer │ │ │ │ └── BUILD │ │ │ ├── validation │ │ │ │ └── BUILD │ │ │ ├── errors │ │ │ │ └── BUILD │ │ │ ├── httpstream │ │ │ │ └── BUILD │ │ │ ├── runtime │ │ │ │ └── BUILD │ │ │ ├── yaml │ │ │ │ └── BUILD │ │ │ └── diff │ │ │ │ └── BUILD │ │ ├── OWNERS │ │ ├── api │ │ │ ├── resource │ │ │ │ └── OWNERS │ │ │ ├── meta │ │ │ │ └── OWNERS │ │ │ ├── errors │ │ │ │ └── OWNERS │ │ │ └── validation │ │ │ │ └── path │ │ │ │ └── BUILD │ │ ├── selection │ │ │ └── BUILD │ │ ├── version │ │ │ └── BUILD │ │ ├── types │ │ │ └── BUILD │ │ ├── runtime │ │ │ ├── serializer │ │ │ │ ├── recognizer │ │ │ │ │ └── BUILD │ │ │ │ └── yaml │ │ │ │ │ └── BUILD │ │ │ └── schema │ │ │ │ └── BUILD │ │ ├── openapi │ │ │ └── BUILD │ │ └── apis │ │ │ └── meta │ │ │ └── v1 │ │ │ └── OWNERS │ │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── json │ │ │ ├── OWNERS │ │ │ └── BUILD │ │ │ ├── netutil │ │ │ └── BUILD │ │ │ └── reflect │ │ │ └── BUILD │ │ ├── Godeps │ │ └── Readme │ │ └── OWNERS └── github.com │ └── google │ └── gofuzz │ └── .travis.yml ├── Dockerfile └── kubernetes ├── sslconfig-obj.yaml └── crd-deployment.yaml /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/kubernetes-sha: -------------------------------------------------------------------------------- 1 | 403b30f6e9619366072b1cb5b302e9ebc240d095 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes-sha: -------------------------------------------------------------------------------- 1 | 756a814042801e8cba8273ba7f1e16e87b060079 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/kubernetes-sha: -------------------------------------------------------------------------------- 1 | 4e276d49b97f13ddc82c0535e8030327c60eeee6 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/elazarl/goproxy/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/kubernetes-sha: -------------------------------------------------------------------------------- 1 | 36271f985d41fd3d0e9cd59e6f23105cf96283bb 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Paul Borman 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: go get -t 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Paul Borman 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/endpoints/request/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: go get -t 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/endpoints/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mbohlool 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/client/auth/oidc/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - ericchiang 3 | reviewers: 4 | - ericchiang 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful-swagger12/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | - dims 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/mergepatch/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - pwittrock 3 | reviewers: 4 | - mengqiy 5 | - apelisse 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/strategicpatch/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - pwittrock 3 | reviewers: 4 | - mengqiy 5 | - apelisse 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/emicklei/go-restful-swagger12/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/endpoints/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - jimmidyson 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - caesarxuchao 3 | - deads2k 4 | - lavalamp 5 | - smarterclayton 6 | - liggitt 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/json/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - pwittrock 3 | reviewers: 4 | - mengqiy 5 | - apelisse 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/http/doc.go: -------------------------------------------------------------------------------- 1 | // Package http is DEPRECATED. Use net/http instead. 2 | package http 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/endpoints/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - sttts 4 | - soltysh 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM centos/systemd 2 | 3 | MAINTAINER "Akash Gautam" 4 | 5 | COPY crd-blog / 6 | 7 | ENTRYPOINT ["/crd-blog"] -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/PuerkitoBio/purell/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/NYTimes/gziphandler/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - 1.8 6 | - tip 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: k8s.io/client-go 4 | 5 | go: 6 | - 1.8.1 7 | 8 | script: go build ./... 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/client/auth/gcp/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - cjcullen 3 | - jlowdermilk 4 | reviewers: 5 | - cjcullen 6 | - jlowdermilk 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - eparis 4 | - krousey 5 | - jayunit100 6 | - fgrzadkowski 7 | - tmrts 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - deads2k 5 | - liggitt 6 | - krousey 7 | - caesarxuchao 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - sttts 4 | - enisoc 5 | approvers: 6 | - deads2k 7 | - lavalamp 8 | - sttts 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 4 | - 1.6.4 5 | - 1.7.4 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/PuerkitoBio/purell/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/key/doc.go: -------------------------------------------------------------------------------- 1 | // Package key is DEPRECATED. Use github.com/coreos/go-oidc instead. 2 | package key 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/oauth2/doc.go: -------------------------------------------------------------------------------- 1 | // Package oauth2 is DEPRECATED. Use golang.org/x/oauth instead. 2 | package oauth2 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/authorization/authorizerfactory/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - dims 4 | - ericchiang 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/PuerkitoBio/purell/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | - 1.4 5 | script: 6 | - go test 7 | - go build 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/jose/doc.go: -------------------------------------------------------------------------------- 1 | // Package jose is DEPRECATED. Use gopkg.in/square/go-jose.v2 instead. 2 | package jose 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/oidc/doc.go: -------------------------------------------------------------------------------- 1 | // Package oidc is DEPRECATED. Use github.com/coreos/go-oidc instead. 2 | package oidc 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/dgrijalva/jwt-go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.3 5 | - 1.4 6 | - 1.5 7 | - 1.6 8 | - tip 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | - 1.4 5 | script: 6 | - go test 7 | - go build 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/README.md: -------------------------------------------------------------------------------- 1 | This repo is still in the experimental stage. Shortly it will contain the schema of the API that are served by the Kubernetes apiserver. 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/PuerkitoBio/purell/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | - 1.4 5 | script: 6 | - go test 7 | - go build 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/etcd3/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - timothysc 4 | - madhusudancs 5 | - hongchaodeng 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/example/sa.yaml: -------------------------------------------------------------------------------- 1 | kind: ServiceAccount 2 | apiVersion: v1 3 | metadata: 4 | name: apiserver 5 | namespace: apiextensions 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/emicklei/go-restful/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go test -v . 5 | 6 | ex: 7 | cd examples && ls *.go | xargs go build -o /tmp/ignore -------------------------------------------------------------------------------- /vendor/k8s.io/api/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go test -v . 5 | 6 | ex: 7 | cd examples && ls *.go | xargs go build -o /tmp/ignore -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/oidc/interface.go: -------------------------------------------------------------------------------- 1 | package oidc 2 | 3 | type LoginFunc func(ident Identity, sessionKey string) (redirectURL string, err error) 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go test -v . 5 | 6 | ex: 7 | cd examples && ls *.go | xargs go build -o /tmp/ignore -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/customresource-01/noxu.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: mygroup.example.com/v1alpha1 2 | kind: Noxu 3 | metadata: 4 | name: alfa-noxu 5 | spec: 6 | key: value -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - yujuhong 3 | - gmarek 4 | - mbohlool 5 | - philips 6 | approvers: 7 | - mbohlool 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/grpc-ecosystem/grpc-gateway/utilities/doc.go: -------------------------------------------------------------------------------- 1 | // Package utilities provides members for internal use in grpc-gateway. 2 | package utilities 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/storagebackend/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - wojtek-t 5 | - timothysc 6 | - hongchaodeng 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/googleapis/gnostic/compiler/README.md: -------------------------------------------------------------------------------- 1 | # Compiler support code 2 | 3 | This directory contains compiler support code used by Gnostic and Gnostic extensions. -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/howeyc/gopass/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | os: 4 | - linux 5 | - osx 6 | 7 | go: 8 | - 1.3 9 | - 1.4 10 | - 1.5 11 | - tip 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/emicklei/go-restful/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go test -v . 5 | 6 | ex: 7 | cd examples && ls *.go | xargs go build -o /tmp/ignore -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/http/client.go: -------------------------------------------------------------------------------- 1 | package http 2 | 3 | import "net/http" 4 | 5 | type Client interface { 6 | Do(*http.Request) (*http.Response, error) 7 | } 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/PuerkitoBio/urlesc/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - tip 6 | 7 | install: 8 | - go build . 9 | 10 | script: 11 | - go test -v 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2014 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/googleapis/gnostic/compiler/README.md: -------------------------------------------------------------------------------- 1 | # Compiler support code 2 | 3 | This directory contains compiler support code used by Gnostic and Gnostic extensions. -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/howeyc/gopass/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | os: 4 | - linux 5 | - osx 6 | 7 | go: 8 | - 1.3 9 | - 1.4 10 | - 1.5 11 | - tip 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/PuerkitoBio/urlesc/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - tip 6 | 7 | install: 8 | - go build . 9 | 10 | script: 11 | - go test -v 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2014 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package grpc implements an RPC system called gRPC. 3 | 4 | See www.grpc.io for more information about gRPC. 5 | */ 6 | package grpc 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/PuerkitoBio/urlesc/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - tip 6 | 7 | install: 8 | - go build . 9 | 10 | script: 11 | - go test -v 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2014 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- 1 | CoreOS Project 2 | Copyright 2014 CoreOS, Inc 3 | 4 | This product includes software developed at CoreOS, Inc. 5 | (http://www.coreos.com/). 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- 1 | ci: 2 | ! gofmt -l *.go | read nothing 3 | go vet 4 | go test -v ./... 5 | go get github.com/golang/lint/golint 6 | golint *.go 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/PuerkitoBio/urlesc/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - tip 6 | 7 | install: 8 | - go build . 9 | 10 | script: 11 | - go test -v 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package runtime contains runtime helper functions used by 3 | servers which protoc-gen-grpc-gateway generates. 4 | */ 5 | package runtime 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- 1 | // Package jwt is a Go implementation of JSON Web Tokens: http://self-issued.info/docs/draft-jones-json-web-token.html 2 | // 3 | // See README.md for more info. 4 | package jwt 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.4.3 5 | - 1.5.4 6 | - 1.6.2 7 | - tip 8 | 9 | script: 10 | - go test -v ./... 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package lumberjack 4 | 5 | import ( 6 | "os" 7 | ) 8 | 9 | func chown(_ string, _ os.FileInfo) error { 10 | return nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- 1 | Steve Francia 2 | Bjørn Erik Pedersen 3 | Fabiano Franz 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /kubernetes/sslconfig-obj.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: "blog.velotio.com/v1alpha1" 2 | kind: "SslConfig" 3 | metadata: 4 | name: "sslconfig-velotio.com" 5 | spec: 6 | cert: "my cert file" 7 | key : "my private key" 8 | domain: "*.velotio.com" 9 | provider: "digicert" -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/client_golang/prometheus/README.md: -------------------------------------------------------------------------------- 1 | See [![go-doc](https://godoc.org/github.com/prometheus/client_golang/prometheus?status.svg)](https://godoc.org/github.com/prometheus/client_golang/prometheus). 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- 1 | Data model artifacts for Prometheus. 2 | Copyright 2012-2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- 1 | Common libraries shared by Prometheus Go components. 2 | Copyright 2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/googleapis/gnostic/extensions/COMPILE-EXTENSION.sh: -------------------------------------------------------------------------------- 1 | go get github.com/golang/protobuf/protoc-gen-go 2 | 3 | protoc \ 4 | --go_out=Mgoogle/protobuf/any.proto=github.com/golang/protobuf/ptypes/any:. *.proto 5 | 6 | go build 7 | go install 8 | -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.3 6 | - 1.2 7 | - tip 8 | 9 | install: 10 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 11 | 12 | script: 13 | - go test -cover 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/googleapis/gnostic/extensions/COMPILE-EXTENSION.sh: -------------------------------------------------------------------------------- 1 | go get github.com/golang/protobuf/protoc-gen-go 2 | 3 | protoc \ 4 | --go_out=Mgoogle/protobuf/any.proto=github.com/golang/protobuf/ptypes/any:. *.proto 5 | 6 | go build 7 | go install 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/example/service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: api 5 | namespace: apiextensions 6 | spec: 7 | ports: 8 | - port: 443 9 | protocol: TCP 10 | targetPort: 443 11 | selector: 12 | apiserver: "true" 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/googleapis/gnostic/extensions/README.md: -------------------------------------------------------------------------------- 1 | # Extensions 2 | 3 | This directory contains support code for building Gnostic extensions and associated examples. 4 | 5 | Extensions are used to compile vendor or specification extensions into protocol buffer structures. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/googleapis/gnostic/extensions/README.md: -------------------------------------------------------------------------------- 1 | # Extensions 2 | 3 | This directory contains support code for building Gnostic extensions and associated examples. 4 | 5 | Extensions are used to compile vendor or specification extensions into protocol buffer structures. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/options/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - deads2k 5 | - liggitt 6 | - nikhiljindal 7 | - sttts 8 | - jlowdermilk 9 | - soltysh 10 | - dims 11 | - cjcullen 12 | - ericchiang 13 | - ping035627 14 | - xiangpengzhao 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Sorry, client-go does not accept changes via pull requests at this time. Please 2 | submit your pull request to the main repository: 3 | https://github.com/kubernetes/kubernetes. See the guidance here: 4 | https://github.com/kubernetes/client-go#contributing-code. 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/ugorji/go/codec/gen_17.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.7 5 | 6 | package codec 7 | 8 | func init() { 9 | genCheckVendor = true 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/bitbucket.org/ww/goautoneg/Makefile: -------------------------------------------------------------------------------- 1 | include $(GOROOT)/src/Make.inc 2 | 3 | TARG=bitbucket.org/ww/goautoneg 4 | GOFILES=autoneg.go 5 | 6 | include $(GOROOT)/src/Make.pkg 7 | 8 | format: 9 | gofmt -w *.go 10 | 11 | docs: 12 | gomake clean 13 | godoc ${TARG} > README.txt 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/docker/spdystream/utils.go: -------------------------------------------------------------------------------- 1 | package spdystream 2 | 3 | import ( 4 | "log" 5 | "os" 6 | ) 7 | 8 | var ( 9 | DEBUG = os.Getenv("DEBUG") 10 | ) 11 | 12 | func debugMessage(fmt string, args ...interface{}) { 13 | if DEBUG != "" { 14 | log.Printf(fmt, args...) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ugorji/go/codec/gen_17.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.7 5 | 6 | package codec 7 | 8 | func init() { 9 | genCheckVendor = true 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/pkg/httputil/README.md: -------------------------------------------------------------------------------- 1 | httputil 2 | ==== 3 | 4 | Common code for dealing with HTTP. 5 | 6 | Includes: 7 | 8 | * Code for returning JSON responses. 9 | 10 | ### Documentation 11 | 12 | Visit the docs on [gopkgdoc](http://godoc.org/github.com/coreos/pkg/httputil) 13 | 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/pkg/timeutil/backoff.go: -------------------------------------------------------------------------------- 1 | package timeutil 2 | 3 | import ( 4 | "time" 5 | ) 6 | 7 | func ExpBackoff(prev, max time.Duration) time.Duration { 8 | if prev == 0 { 9 | return time.Second 10 | } 11 | if prev > max/2 { 12 | return max 13 | } 14 | return 2 * prev 15 | } 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/docker/spdystream/utils.go: -------------------------------------------------------------------------------- 1 | package spdystream 2 | 3 | import ( 4 | "log" 5 | "os" 6 | ) 7 | 8 | var ( 9 | DEBUG = os.Getenv("DEBUG") 10 | ) 11 | 12 | func debugMessage(fmt string, args ...interface{}) { 13 | if DEBUG != "" { 14 | log.Printf(fmt, args...) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ugorji/go/codec/gen_17.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.7 5 | 6 | package codec 7 | 8 | func init() { 9 | genCheckVendor = true 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/resource/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - derekwaynecarr 7 | - mikedanese 8 | - saad-ali 9 | - janetkuo 10 | - timstclair 11 | - eparis 12 | - timothysc 13 | - jbeda 14 | - xiang90 15 | - mbohlool 16 | - david-mcmahon 17 | - goltermann 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | TEXT ·use(SB),NOSPLIT,$0 10 | RET 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- 1 | procfs provides functions to retrieve system, kernel and process 2 | metrics from the pseudo-filesystem proc. 3 | 4 | Copyright 2014-2015 The Prometheus Authors 5 | 6 | This product includes software developed at 7 | SoundCloud Ltd. (http://soundcloud.com/). 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ugorji/go/codec/gen_17.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.7 5 | 6 | package codec 7 | 8 | func init() { 9 | genCheckVendor = true 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/exec/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["exec.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | TEXT ·use(SB),NOSPLIT,$0 10 | RET 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/evanphx/json-patch/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.3 6 | 7 | install: 8 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 9 | 10 | script: 11 | - go test -cover ./... 12 | 13 | notifications: 14 | email: false 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["metrics.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/homedir/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["homedir.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/Azure/go-autorest/autorest/date/utility.go: -------------------------------------------------------------------------------- 1 | package date 2 | 3 | import ( 4 | "strings" 5 | "time" 6 | ) 7 | 8 | // ParseTime to parse Time string to specified format. 9 | func ParseTime(format string, t string) (d time.Time, err error) { 10 | return time.Parse(format, strings.ToUpper(t)) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/selection/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["operator.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/evanphx/json-patch/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.3 6 | 7 | install: 8 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 9 | 10 | script: 11 | - go test -cover ./... 12 | 13 | notifications: 14 | email: false 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/types/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["types.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/testdata/dontUseThisKey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | MIGkAgEBBDAPEbSXwyDfWf0+61Oofd7aHkmdX69mrzD2Xb1CHF5syfsoRIhnG0dJ 3 | ozBulPZCDDWgBwYFK4EEACKhZANiAATjlMJAtKhEPqU/i7MsrgKcK/RmXHC6He7W 4 | 0p69+9qFXg2raJ9zvvbKxkiu2ELOYRDAz0utcFTBOIgoUJEzBVmsjZQ7dvFa1BKP 5 | Ym7MFAKG3O2espBqXn+audgdHGh5B0I= 6 | -----END EC PRIVATE KEY----- 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/Azure/go-autorest/autorest/azure/config.go: -------------------------------------------------------------------------------- 1 | package azure 2 | 3 | import ( 4 | "net/url" 5 | ) 6 | 7 | // OAuthConfig represents the endpoints needed 8 | // in OAuth operations 9 | type OAuthConfig struct { 10 | AuthorizeEndpoint url.URL 11 | TokenEndpoint url.URL 12 | DeviceCodeEndpoint url.URL 13 | } 14 | -------------------------------------------------------------------------------- /kubernetes/crd-deployment.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apps/v1beta1 2 | kind: Deployment 3 | metadata: 4 | name: crd-blog 5 | spec: 6 | replicas: 1 7 | template: 8 | metadata: 9 | labels: 10 | app: crd-blog 11 | spec: 12 | containers: 13 | - name: crd-blog 14 | image: akash125/crdblog 15 | imagePullPolicy: IfNotPresent 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/json/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["fields.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/netutil/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["addr.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - lavalamp 3 | - smarterclayton 4 | - deads2k 5 | - sttts 6 | - liggitt 7 | - caesarxuchao 8 | reviewers: 9 | - thockin 10 | - lavalamp 11 | - smarterclayton 12 | - wojtek-t 13 | - deads2k 14 | - derekwaynecarr 15 | - caesarxuchao 16 | - mikedanese 17 | - liggitt 18 | - gmarek 19 | - sttts 20 | - ncdc 21 | - timstclair 22 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") != "0" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/spec/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/swag/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/util/trie/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["trie.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | 6 | install: 7 | - export GOPATH="$HOME/gopath" 8 | - mkdir -p "$GOPATH/src/golang.org/x" 9 | - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2" 10 | - go get -v -t -d golang.org/x/oauth2/... 11 | 12 | script: 13 | - go test -v golang.org/x/oauth2/... 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/jsonpointer/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/jsonreference/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5,!go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") == "1" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/example/apiservice.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apiregistration.k8s.io/v1beta1 2 | kind: APIService 3 | metadata: 4 | name: v1alpha1.apiextensions.k8s.io 5 | spec: 6 | insecureSkipTLSVerify: true 7 | group: apiextensions.k8s.io 8 | priority: 100 9 | service: 10 | name: api 11 | namespace: apiextensions 12 | version: v1alpha1 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/spec/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/swag/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") != "0" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Emacs save files 10 | *~ 11 | 12 | # Vim-related files 13 | [._]*.s[a-w][a-z] 14 | [._]s[a-w][a-z] 15 | *.un~ 16 | Session.vim 17 | .netrwhist 18 | 19 | # Go test binaries 20 | *.test 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/spec/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/swag/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") != "0" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Emacs save files 10 | *~ 11 | 12 | # Vim-related files 13 | [._]*.s[a-w][a-z] 14 | [._]s[a-w][a-z] 15 | *.un~ 16 | Session.vim 17 | .netrwhist 18 | 19 | # Go test binaries 20 | *.test 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Google Inc. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // The uuid package generates and inspects UUIDs. 6 | // 7 | // UUIDs are based on RFC 4122 and DCE 1.1: Authentication and Security Services. 8 | package uuid 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/jsonpointer/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5,!go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") == "1" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") != "0" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/version/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "doc.go", 14 | "types.go", 15 | ], 16 | tags = ["automanaged"], 17 | ) 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/jsonpointer/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/jsonreference/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5,!go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") == "1" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/jsonreference/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/customresource-01/noxu-apiservice.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apiregistration.k8s.io/v1beta1 2 | kind: APIService 3 | metadata: 4 | name: v1alpha1.mygroup.example.com 5 | spec: 6 | insecureSkipTLSVerify: true 7 | group: mygroup.example.com 8 | priority: 500 9 | service: 10 | name: api 11 | namespace: apiextensions 12 | version: v1alpha1 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Emacs save files 10 | *~ 11 | 12 | # Vim-related files 13 | [._]*.s[a-w][a-z] 14 | [._]s[a-w][a-z] 15 | *.un~ 16 | Session.vim 17 | .netrwhist 18 | 19 | # Go test binaries 20 | *.test 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/spec/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/swag/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Google Inc. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // The uuid package generates and inspects UUIDs. 6 | // 7 | // UUIDs are based on RFC 4122 and DCE 1.1: Authentication and Security Services. 8 | package uuid 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/jsonpointer/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/jsonreference/.pullapprove.yml: -------------------------------------------------------------------------------- 1 | approve_by_comment: true 2 | approve_regex: '^(:shipit:|:\+1:|\+1|LGTM|lgtm|Approved)' 3 | reject_regex: ^[Rr]ejected 4 | reset_on_push: false 5 | reviewers: 6 | members: 7 | - casualjim 8 | - chancez 9 | - frapposelli 10 | - vburenin 11 | - pytlesk4 12 | name: pullapprove 13 | required: 1 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5,!go1.6 5 | 6 | package codec 7 | 8 | import "os" 9 | 10 | func init() { 11 | genCheckVendor = os.Getenv("GO15VENDOREXPERIMENT") == "1" 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/routes/data/swagger/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["datafile.go"], 13 | tags = ["automanaged"], 14 | ) 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/third_party/forked/golang/template/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "exec.go", 14 | "funcs.go", 15 | ], 16 | tags = ["automanaged"], 17 | ) 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/customresource-01/noxu-resource-definition.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apiextensions.k8s.io/v1beta1 2 | kind: CustomResourceDefinition 3 | metadata: 4 | name: noxus.mygroup.example.com 5 | spec: 6 | group: mygroup.example.com 7 | version: v1alpha1 8 | scope: Namespaced 9 | names: 10 | plural: noxus 11 | singular: noxu 12 | kind: Noxu 13 | listKind: NoxuList -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build dragonfly freebsd netbsd openbsd 6 | 7 | package unix 8 | 9 | const ImplementsGetwd = false 10 | 11 | func Getwd() (string, error) { return "", ENOTSUP } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,solaris 6 | 7 | package unix 8 | 9 | // TODO(aram): remove these before Go 1.3. 10 | const ( 11 | SYS_EXECVE = 59 12 | SYS_FCNTL = 62 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/triple/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["triple.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/k8s.io/client-go/util/cert:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build dragonfly freebsd netbsd openbsd 6 | 7 | package unix 8 | 9 | const ImplementsGetwd = false 10 | 11 | func Getwd() (string, error) { return "", ENOTSUP } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,solaris 6 | 7 | package unix 8 | 9 | // TODO(aram): remove these before Go 1.3. 10 | const ( 11 | SYS_EXECVE = 59 12 | SYS_FCNTL = 62 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - smarterclayton 4 | - caesarxuchao 5 | - wojtek-t 6 | - deads2k 7 | - brendandburns 8 | - liggitt 9 | - nikhiljindal 10 | - gmarek 11 | - erictune 12 | - sttts 13 | - luxas 14 | - dims 15 | - errordeveloper 16 | - hongchaodeng 17 | - krousey 18 | - resouer 19 | - cjcullen 20 | - rmmh 21 | - lixiaobing10051267 22 | - asalkeld 23 | - juanvallejo 24 | - lojies 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.4 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | func Unsetenv(key string) error { 12 | // This was added in Go 1.4. 13 | return syscall.Unsetenv(key) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/oauth2/google/appengineflex_hook.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build appenginevm 6 | 7 | package google 8 | 9 | func init() { 10 | appengineFlex = true // Flex doesn't support appengine.AccessToken; depend on metadata server. 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/authentication/user/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "doc.go", 14 | "user.go", 15 | ], 16 | tags = ["automanaged"], 17 | ) 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- 1 | package assert 2 | 3 | import ( 4 | "errors" 5 | ) 6 | 7 | // AnError is an error instance useful for testing. If the code does not care 8 | // about error specifics, and only needs to return the error for example, this 9 | // error should be used to make the test code more readable. 10 | var AnError = errors.New("assert.AnError general error for testing") 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.4 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | func Unsetenv(key string) error { 12 | // This was added in Go 1.4. 13 | return syscall.Unsetenv(key) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/remotecommand/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["constants.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/example/auth-delegator.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: rbac.authorization.k8s.io/v1alpha1 2 | kind: ClusterRoleBinding 3 | metadata: 4 | name: apiextensions:system:auth-delegator 5 | roleRef: 6 | apiGroup: rbac.authorization.k8s.io 7 | kind: ClusterRole 8 | name: system:auth-delegator 9 | subjects: 10 | - apiVersion: v1 11 | kind: ServiceAccount 12 | name: apiserver 13 | namespace: apiextensions 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/gopkg.in/natefinch/lumberjack.v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/internal/stream_chunk.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | package grpc.gateway.runtime; 3 | option go_package = "internal"; 4 | 5 | // StreamError is a response type which is returned when 6 | // streaming rpc returns an error. 7 | message StreamError { 8 | int32 grpc_code = 1; 9 | int32 http_code = 2; 10 | string message = 3; 11 | string http_status = 4; 12 | } 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- 1 | package assert 2 | 3 | import ( 4 | "errors" 5 | ) 6 | 7 | // AnError is an error instance useful for testing. If the code does not care 8 | // about error specifics, and only needs to return the error for example, this 9 | // error should be used to make the test code more readable. 10 | var AnError = errors.New("assert.AnError general error for testing") 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/util/trace/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["trace.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/github.com/golang/glog:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/jonboulle/clockwork/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | 25 | *.swp 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd netbsd openbsd 6 | 7 | package terminal 8 | 9 | import "syscall" 10 | 11 | const ioctlReadTermios = syscall.TIOCGETA 12 | const ioctlWriteTermios = syscall.TIOCSETA 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/emicklei/go-restful/bench_test.sh: -------------------------------------------------------------------------------- 1 | #go test -run=none -file bench_test.go -test.bench . -cpuprofile=bench_test.out 2 | 3 | go test -c 4 | ./go-restful.test -test.run=none -test.cpuprofile=tmp.prof -test.bench=BenchmarkMany 5 | ./go-restful.test -test.run=none -test.cpuprofile=curly.prof -test.bench=BenchmarkManyCurly 6 | 7 | #go tool pprof go-restful.test tmp.prof 8 | go tool pprof go-restful.test curly.prof 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/elazarl/goproxy/all.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go test || exit 4 | for action in $@; do go $action; done 5 | 6 | mkdir -p bin 7 | find regretable examples/* ext/* -maxdepth 0 -type d | while read d; do 8 | (cd $d 9 | go build -o ../../bin/$(basename $d) 10 | find *_test.go -maxdepth 0 2>/dev/null|while read f;do 11 | for action in $@; do go $action; done 12 | go test 13 | break 14 | done) 15 | done 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/ugorji/go/codec/decode_go14.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build !go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = false 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | panic("reflect.ArrayOf unsupported") 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/Azure/go-autorest/autorest/version.go: -------------------------------------------------------------------------------- 1 | package autorest 2 | 3 | import ( 4 | "fmt" 5 | ) 6 | 7 | const ( 8 | major = "7" 9 | minor = "0" 10 | patch = "0" 11 | tag = "" 12 | semVerFormat = "%s.%s.%s%s" 13 | ) 14 | 15 | // Version returns the semantic version (see http://semver.org). 16 | func Version() string { 17 | return fmt.Sprintf(semVerFormat, major, minor, patch, tag) 18 | } 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.6.3 7 | - 1.7.3 8 | - tip 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | install: 14 | - go get github.com/golang/lint/golint 15 | - export PATH=$GOPATH/bin:$PATH 16 | - go install ./... 17 | 18 | script: 19 | - verify/all.sh -v 20 | - go test ./... 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/artifacts/example/auth-reader.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: rbac.authorization.k8s.io/v1alpha1 2 | kind: RoleBinding 3 | metadata: 4 | name: apiextensions-auth-reader 5 | namespace: kube-system 6 | roleRef: 7 | apiGroup: rbac.authorization.k8s.io 8 | kind: Role 9 | name: extension-apiserver-authentication-reader 10 | subjects: 11 | - apiVersion: v1 12 | kind: ServiceAccount 13 | name: apiserver 14 | namespace: apiextensions 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd netbsd openbsd 6 | 7 | package terminal 8 | 9 | import "syscall" 10 | 11 | const ioctlReadTermios = syscall.TIOCGETA 12 | const ioctlWriteTermios = syscall.TIOCSETA 13 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - smarterclayton 4 | - wojtek-t 5 | - deads2k 6 | - brendandburns 7 | - derekwaynecarr 8 | - caesarxuchao 9 | - mikedanese 10 | - liggitt 11 | - nikhiljindal 12 | - gmarek 13 | - kargakis 14 | - janetkuo 15 | - ncdc 16 | - eparis 17 | - dims 18 | - krousey 19 | - markturansky 20 | - fabioy 21 | - resouer 22 | - david-mcmahon 23 | - mfojtik 24 | - jianhuiz 25 | - feihujiang 26 | - ghodss 27 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/bench_test.sh: -------------------------------------------------------------------------------- 1 | #go test -run=none -file bench_test.go -test.bench . -cpuprofile=bench_test.out 2 | 3 | go test -c 4 | ./go-restful.test -test.run=none -test.cpuprofile=tmp.prof -test.bench=BenchmarkMany 5 | ./go-restful.test -test.run=none -test.cpuprofile=curly.prof -test.bench=BenchmarkManyCurly 6 | 7 | #go tool pprof go-restful.test tmp.prof 8 | go tool pprof go-restful.test curly.prof 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful/bench_test.sh: -------------------------------------------------------------------------------- 1 | #go test -run=none -file bench_test.go -test.bench . -cpuprofile=bench_test.out 2 | 3 | go test -c 4 | ./go-restful.test -test.run=none -test.cpuprofile=tmp.prof -test.bench=BenchmarkMany 5 | ./go-restful.test -test.run=none -test.cpuprofile=curly.prof -test.bench=BenchmarkManyCurly 6 | 7 | #go tool pprof go-restful.test tmp.prof 8 | go tool pprof go-restful.test curly.prof 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ugorji/go/codec/decode_go14.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build !go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = false 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | panic("reflect.ArrayOf unsupported") 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/features/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["kube_features.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/k8s.io/apiserver/pkg/util/feature:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "doc.go", 14 | "namespacedname.go", 15 | "nodename.go", 16 | "patch.go", 17 | "uid.go", 18 | ], 19 | tags = ["automanaged"], 20 | ) 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ugorji/go/codec/decode_go14.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build !go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = false 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | panic("reflect.ArrayOf unsupported") 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/record/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - wojtek-t 5 | - deads2k 6 | - derekwaynecarr 7 | - caesarxuchao 8 | - vishh 9 | - mikedanese 10 | - liggitt 11 | - nikhiljindal 12 | - erictune 13 | - pmorie 14 | - dchen1107 15 | - saad-ali 16 | - luxas 17 | - yifan-gu 18 | - eparis 19 | - mwielgus 20 | - timothysc 21 | - jsafrane 22 | - dims 23 | - krousey 24 | - a-robinson 25 | - aveshagarwal 26 | - resouer 27 | - cjcullen 28 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.6.3 7 | - 1.7.3 8 | - tip 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | install: 14 | - go get github.com/golang/lint/golint 15 | - export PATH=$GOPATH/bin:$PATH 16 | - go install ./... 17 | 18 | script: 19 | - verify/all.sh -v 20 | - go test ./... 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- 1 | // This file was generated by go generate; DO NOT EDIT 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // langAliasType is the type of an alias in langAliasMap. 8 | type langAliasType int8 9 | 10 | const ( 11 | langDeprecated langAliasType = iota 12 | langMacro 13 | langLegacy 14 | 15 | langAliasTypeUnknown langAliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/emicklei/go-restful/bench_test.sh: -------------------------------------------------------------------------------- 1 | #go test -run=none -file bench_test.go -test.bench . -cpuprofile=bench_test.out 2 | 3 | go test -c 4 | ./go-restful.test -test.run=none -test.cpuprofile=tmp.prof -test.bench=BenchmarkMany 5 | ./go-restful.test -test.run=none -test.cpuprofile=curly.prof -test.bench=BenchmarkManyCurly 6 | 7 | #go tool pprof go-restful.test tmp.prof 8 | go tool pprof go-restful.test curly.prof 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/etcd/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - wojtek-t 5 | - deads2k 6 | - derekwaynecarr 7 | - caesarxuchao 8 | - mikedanese 9 | - liggitt 10 | - davidopp 11 | - pmorie 12 | - luxas 13 | - janetkuo 14 | - roberthbailey 15 | - timstclair 16 | - timothysc 17 | - dims 18 | - hongchaodeng 19 | - krousey 20 | - fgrzadkowski 21 | - resouer 22 | - pweil- 23 | - mqliang 24 | - feihujiang 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.6.3 7 | - 1.7.3 8 | - tip 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | install: 14 | - go get github.com/golang/lint/golint 15 | - export PATH=$GOPATH/bin:$PATH 16 | - go install ./... 17 | 18 | script: 19 | - verify/all.sh -v 20 | - go test ./... 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/oauth2/google/appengine_hook.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build appengine appenginevm 6 | 7 | package google 8 | 9 | import "google.golang.org/appengine" 10 | 11 | func init() { 12 | appengineTokenFunc = appengine.AccessToken 13 | appengineAppIDFunc = appengine.AppID 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ugorji/go/codec/decode_go14.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build !go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = false 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | panic("reflect.ArrayOf unsupported") 14 | } 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/errors/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - brendandburns 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - nikhiljindal 13 | - gmarek 14 | - erictune 15 | - saad-ali 16 | - janetkuo 17 | - timstclair 18 | - eparis 19 | - timothysc 20 | - dims 21 | - hongchaodeng 22 | - krousey 23 | - satnam6502 24 | - cjcullen 25 | - david-mcmahon 26 | - goltermann 27 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- 1 | // This file was generated by go generate; DO NOT EDIT 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // langAliasType is the type of an alias in langAliasMap. 8 | type langAliasType int8 9 | 10 | const ( 11 | langDeprecated langAliasType = iota 12 | langMacro 13 | langLegacy 14 | 15 | langAliasTypeUnknown langAliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- 1 | // This file was generated by go generate; DO NOT EDIT 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // langAliasType is the type of an alias in langAliasMap. 8 | type langAliasType int8 9 | 10 | const ( 11 | langDeprecated langAliasType = iota 12 | langMacro 13 | langLegacy 14 | 15 | langAliasTypeUnknown langAliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.4.3 4 | - 1.5.4 5 | - 1.6.3 6 | - tip 7 | 8 | matrix: 9 | allow_failures: 10 | - go: tip 11 | 12 | before_install: 13 | - mkdir -p bin 14 | - curl -Lso bin/shellcheck https://github.com/caarlos0/shellcheck-docker/releases/download/v0.4.3/shellcheck 15 | - chmod +x bin/shellcheck 16 | script: 17 | - PATH=$PATH:$PWD/bin go test -v ./... 18 | - go build 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.6.3 7 | - 1.7.3 8 | - tip 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | install: 14 | - go get github.com/golang/lint/golint 15 | - export PATH=$GOPATH/bin:$PATH 16 | - go install ./... 17 | 18 | script: 19 | - verify/all.sh -v 20 | - go test ./... 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/etcd/metrics/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["metrics.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/github.com/prometheus/client_golang/prometheus:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/pkg/health/README.md: -------------------------------------------------------------------------------- 1 | health 2 | ==== 3 | 4 | A simple framework for implementing an HTTP health check endpoint on servers. 5 | 6 | Users implement their `health.Checkable` types, and create a `health.Checker`, from which they can get an `http.HandlerFunc` using `health.Checker.MakeHealthHandlerFunc`. 7 | 8 | ### Documentation 9 | 10 | For more details, visit the docs on [gopkgdoc](http://godoc.org/github.com/coreos/pkg/health) 11 | 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- 1 | // +build linux,386 linux,arm 2 | 3 | // Copyright 2014 The Go Authors. All rights reserved. 4 | // Use of this source code is governed by a BSD-style 5 | // license that can be found in the LICENSE file. 6 | 7 | package unix 8 | 9 | func init() { 10 | // On 32-bit Linux systems, the fcntl syscall that matches Go's 11 | // Flock_t type is SYS_FCNTL64, not SYS_FCNTL. 12 | fcntl64Syscall = SYS_FCNTL64 13 | } 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/mailru/easyjson/jlexer/error.go: -------------------------------------------------------------------------------- 1 | package jlexer 2 | 3 | import "fmt" 4 | 5 | // LexerError implements the error interface and represents all possible errors that can be 6 | // generated during parsing the JSON data. 7 | type LexerError struct { 8 | Reason string 9 | Offset int 10 | Data string 11 | } 12 | 13 | func (l *LexerError) Error() string { 14 | return fmt.Sprintf("parse error: %s near offset %d of '%s'", l.Reason, l.Offset, l.Data) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/authentication/authenticator/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interfaces.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/k8s.io/apiserver/pkg/authentication/user:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/authorization/authorizer/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interfaces.go"], 13 | tags = ["automanaged"], 14 | deps = ["//vendor/k8s.io/apiserver/pkg/authentication/user:go_default_library"], 15 | ) 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- 1 | // This file was generated by go generate; DO NOT EDIT 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // langAliasType is the type of an alias in langAliasMap. 8 | type langAliasType int8 9 | 10 | const ( 11 | langDeprecated langAliasType = iota 12 | langMacro 13 | langLegacy 14 | 15 | langAliasTypeUnknown langAliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "base.go", 14 | "doc.go", 15 | "version.go", 16 | ], 17 | tags = ["automanaged"], 18 | deps = ["//vendor/k8s.io/apimachinery/pkg/version:go_default_library"], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/grpc-ecosystem/go-grpc-prometheus/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 4 | - 1.6.x 5 | - 1.7.x 6 | - 1.8.x 7 | 8 | install: 9 | - go get github.com/prometheus/client_golang/prometheus 10 | - go get google.golang.org/grpc 11 | - go get golang.org/x/net/context 12 | - go get github.com/stretchr/testify 13 | 14 | script: 15 | - ./test_all.sh 16 | 17 | after_success: 18 | - bash <(curl -s https://codecov.io/bash) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- 1 | // +build linux,386 linux,arm 2 | 3 | // Copyright 2014 The Go Authors. All rights reserved. 4 | // Use of this source code is governed by a BSD-style 5 | // license that can be found in the LICENSE file. 6 | 7 | package unix 8 | 9 | func init() { 10 | // On 32-bit Linux systems, the fcntl syscall that matches Go's 11 | // Flock_t type is SYS_FCNTL64, not SYS_FCNTL. 12 | fcntl64Syscall = SYS_FCNTL64 13 | } 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/mailru/easyjson/jlexer/error.go: -------------------------------------------------------------------------------- 1 | package jlexer 2 | 3 | import "fmt" 4 | 5 | // LexerError implements the error interface and represents all possible errors that can be 6 | // generated during parsing the JSON data. 7 | type LexerError struct { 8 | Reason string 9 | Offset int 10 | Data string 11 | } 12 | 13 | func (l *LexerError) Error() string { 14 | return fmt.Sprintf("parse error: %s near offset %d of '%s'", l.Reason, l.Offset, l.Data) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/mailru/easyjson/jlexer/error.go: -------------------------------------------------------------------------------- 1 | package jlexer 2 | 3 | import "fmt" 4 | 5 | // LexerError implements the error interface and represents all possible errors that can be 6 | // generated during parsing the JSON data. 7 | type LexerError struct { 8 | Reason string 9 | Offset int 10 | Data string 11 | } 12 | 13 | func (l *LexerError) Error() string { 14 | return fmt.Sprintf("parse error: %s near offset %d of '%s'", l.Reason, l.Offset, l.Data) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/mailru/easyjson/jlexer/error.go: -------------------------------------------------------------------------------- 1 | package jlexer 2 | 3 | import "fmt" 4 | 5 | // LexerError implements the error interface and represents all possible errors that can be 6 | // generated during parsing the JSON data. 7 | type LexerError struct { 8 | Reason string 9 | Offset int 10 | Data string 11 | } 12 | 13 | func (l *LexerError) Error() string { 14 | return fmt.Sprintf("parse error: %s near offset %d of '%s'", l.Reason, l.Offset, l.Data) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/uuid/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["uuid.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/github.com/pborman/uuid:go_default_library", 16 | "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/ugorji/go/codec/decode_go.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = true 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | rvn2 = reflect.New(reflect.ArrayOf(rvn.Len(), intfTyp)).Elem() 14 | reflect.Copy(rvn2, rvn) 15 | return 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/prometheus/client_model/AUTHORS.md: -------------------------------------------------------------------------------- 1 | The Prometheus project was started by Matt T. Proud (emeritus) and 2 | Julius Volz in 2012. 3 | 4 | Maintainers of this repository: 5 | 6 | * Björn Rabenstein 7 | 8 | The following individuals have contributed code to this repository 9 | (listed in alphabetical order): 10 | 11 | * Björn Rabenstein 12 | * Matt T. Proud 13 | * Tobias Schmidt 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Go Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style 3 | # license that can be found in the LICENSE file. 4 | 5 | CLEANFILES+=maketables 6 | 7 | maketables: maketables.go 8 | go build $^ 9 | 10 | tables: maketables 11 | ./maketables > tables.go 12 | gofmt -w -s tables.go 13 | 14 | # Build (but do not run) maketables during testing, 15 | # just to make sure it still compiles. 16 | testshort: maketables 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/grpc-ecosystem/go-grpc-prometheus/test_all.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | echo -e "TESTS FOR: for \033[0;35m${d}\033[0m" 8 | go test -race -v -coverprofile=profile.coverage.out -covermode=atomic $d 9 | if [ -f profile.coverage.out ]; then 10 | cat profile.coverage.out >> coverage.txt 11 | rm profile.coverage.out 12 | fi 13 | echo "" 14 | done 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/ugorji/go/codec/decode_go.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = true 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | rvn2 = reflect.New(reflect.ArrayOf(rvn.Len(), intfTyp)).Elem() 14 | reflect.Copy(rvn2, rvn) 15 | return 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/clock/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["clock_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["clock.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/json/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["json_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["json.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/rand/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["rand_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["rand.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/ugorji/go/codec/decode_go.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = true 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | rvn2 = reflect.New(reflect.ArrayOf(rvn.Len(), intfTyp)).Elem() 14 | reflect.Copy(rvn2, rvn) 15 | return 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Go Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style 3 | # license that can be found in the LICENSE file. 4 | 5 | CLEANFILES+=maketables 6 | 7 | maketables: maketables.go 8 | go build $^ 9 | 10 | tables: maketables 11 | ./maketables > tables.go 12 | gofmt -w -s tables.go 13 | 14 | # Build (but do not run) maketables during testing, 15 | # just to make sure it still compiles. 16 | testshort: maketables 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/integer/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["integer_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["integer.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Go Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style 3 | # license that can be found in the LICENSE file. 4 | 5 | CLEANFILES+=maketables 6 | 7 | maketables: maketables.go 8 | go build $^ 9 | 10 | tables: maketables 11 | ./maketables > tables.go 12 | gofmt -w -s tables.go 13 | 14 | # Build (but do not run) maketables during testing, 15 | # just to make sure it still compiles. 16 | testshort: maketables 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/framer/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["framer_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["framer.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/ugorji/go/codec/decode_go.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. 2 | // Use of this source code is governed by a MIT license found in the LICENSE file. 3 | 4 | // +build go1.5 5 | 6 | package codec 7 | 8 | import "reflect" 9 | 10 | const reflectArrayOfSupported = true 11 | 12 | func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) { 13 | rvn2 = reflect.New(reflect.ArrayOf(rvn.Len(), intfTyp)).Elem() 14 | reflect.Copy(rvn2, rvn) 15 | return 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/validation/path/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["name_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["name.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/core/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/core/v1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/go-oidc/jose/sig.go: -------------------------------------------------------------------------------- 1 | package jose 2 | 3 | import ( 4 | "fmt" 5 | ) 6 | 7 | type Verifier interface { 8 | ID() string 9 | Alg() string 10 | Verify(sig []byte, data []byte) error 11 | } 12 | 13 | type Signer interface { 14 | Verifier 15 | Sign(data []byte) (sig []byte, err error) 16 | } 17 | 18 | func NewVerifier(jwk JWK) (Verifier, error) { 19 | if jwk.Type != "RSA" { 20 | return nil, fmt.Errorf("unsupported key type %q", jwk.Type) 21 | } 22 | 23 | return NewVerifierRSA(jwk) 24 | } 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- 1 | // Code generated by "stringer -type=Kind"; DO NOT EDIT 2 | 3 | package width 4 | 5 | import "fmt" 6 | 7 | const _Kind_name = "NeutralEastAsianAmbiguousEastAsianWideEastAsianNarrowEastAsianFullwidthEastAsianHalfwidth" 8 | 9 | var _Kind_index = [...]uint8{0, 7, 25, 38, 53, 71, 89} 10 | 11 | func (i Kind) String() string { 12 | if i < 0 || i >= Kind(len(_Kind_index)-1) { 13 | return fmt.Sprintf("Kind(%d)", i) 14 | } 15 | return _Kind_name[_Kind_index[i]:_Kind_index[i+1]] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Go Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style 3 | # license that can be found in the LICENSE file. 4 | 5 | CLEANFILES+=maketables 6 | 7 | maketables: maketables.go 8 | go build $^ 9 | 10 | tables: maketables 11 | ./maketables > tables.go 12 | gofmt -w -s tables.go 13 | 14 | # Build (but do not run) maketables during testing, 15 | # just to make sure it still compiles. 16 | testshort: maketables 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - lavalamp 3 | - liggitt 4 | - timothysc 5 | - wojtek-t 6 | - xiang90 7 | reviewers: 8 | - lavalamp 9 | - smarterclayton 10 | - wojtek-t 11 | - deads2k 12 | - caesarxuchao 13 | - mikedanese 14 | - liggitt 15 | - ncdc 16 | - timstclair 17 | - timothysc 18 | - hongchaodeng 19 | - krousey 20 | - fgrzadkowski 21 | - xiang90 22 | - mml 23 | - ingvagabund 24 | - resouer 25 | - mbohlool 26 | - lixiaobing10051267 27 | - mqliang 28 | - feihujiang 29 | - rrati 30 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/validation/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["validation_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["validation.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/apps/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/apps/v1beta1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["recognizer.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 16 | "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/networking/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/networking/v1:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/policy/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/policy/v1beta1:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- 1 | // Code generated by "stringer -type=Kind"; DO NOT EDIT 2 | 3 | package width 4 | 5 | import "fmt" 6 | 7 | const _Kind_name = "NeutralEastAsianAmbiguousEastAsianWideEastAsianNarrowEastAsianFullwidthEastAsianHalfwidth" 8 | 9 | var _Kind_index = [...]uint8{0, 7, 25, 38, 53, 71, 89} 10 | 11 | func (i Kind) String() string { 12 | if i < 0 || i >= Kind(len(_Kind_index)-1) { 13 | return fmt.Sprintf("Kind(%d)", i) 14 | } 15 | return _Kind_name[_Kind_index[i]:_Kind_index[i+1]] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/examples/workqueue/README.md: -------------------------------------------------------------------------------- 1 | # Workqueue Example 2 | 3 | This example demonstrates how to write a controller which follows the states 4 | of watched resources. 5 | 6 | It demonstrates how to: 7 | * combine the workqueue with a cache to a full controller 8 | * synchronize the controller on startup 9 | 10 | The example is based on https://git.k8s.io/community/contributors/devel/controllers.md. 11 | 12 | ## Running 13 | 14 | ``` 15 | # if outside of the cluster 16 | go run *.go -kubeconfig=/my/config -logtostderr=true 17 | ``` 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/extensions/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/extensions/v1beta1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/settings/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/settings/v1alpha1:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- 1 | // Code generated by "stringer -type=Kind"; DO NOT EDIT 2 | 3 | package width 4 | 5 | import "fmt" 6 | 7 | const _Kind_name = "NeutralEastAsianAmbiguousEastAsianWideEastAsianNarrowEastAsianFullwidthEastAsianHalfwidth" 8 | 9 | var _Kind_index = [...]uint8{0, 7, 25, 38, 53, 71, 89} 10 | 11 | func (i Kind) String() string { 12 | if i < 0 || i >= Kind(len(_Kind_index)-1) { 13 | return fmt.Sprintf("Kind(%d)", i) 14 | } 15 | return _Kind_name[_Kind_index[i]:_Kind_index[i+1]] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/coreos/etcd/client/cancelreq.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // borrowed from golang/net/context/ctxhttp/cancelreq.go 6 | 7 | package client 8 | 9 | import "net/http" 10 | 11 | func requestCanceler(tr CancelableTransport, req *http.Request) func() { 12 | ch := make(chan struct{}) 13 | req.Cancel = ch 14 | 15 | return func() { 16 | close(ch) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/plugin/pkg/audit/log/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["backend.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library", 16 | "//vendor/k8s.io/apiserver/pkg/audit:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/openapi/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "common.go", 14 | "doc.go", 15 | ], 16 | tags = ["automanaged"], 17 | deps = [ 18 | "//vendor/github.com/emicklei/go-restful:go_default_library", 19 | "//vendor/github.com/go-openapi/spec:go_default_library", 20 | ], 21 | ) 22 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/certificates/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/certificates/v1beta1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/pkg/httputil/cookie.go: -------------------------------------------------------------------------------- 1 | package httputil 2 | 3 | import ( 4 | "net/http" 5 | "time" 6 | ) 7 | 8 | // DeleteCookies effectively deletes all named cookies 9 | // by wiping all data and setting to expire immediately. 10 | func DeleteCookies(w http.ResponseWriter, cookieNames ...string) { 11 | for _, n := range cookieNames { 12 | c := &http.Cookie{ 13 | Name: n, 14 | Value: "", 15 | Path: "/", 16 | MaxAge: -1, 17 | Expires: time.Time{}, 18 | } 19 | http.SetCookie(w, c) 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/docker/spdystream/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to SpdyStream 2 | 3 | Want to hack on spdystream? Awesome! Here are instructions to get you 4 | started. 5 | 6 | SpdyStream is a part of the [Docker](https://docker.io) project, and follows 7 | the same rules and principles. If you're already familiar with the way 8 | Docker does things, you'll feel right at home. 9 | 10 | Otherwise, go read 11 | [Docker's contributions guidelines](https://github.com/dotcloud/docker/blob/master/CONTRIBUTING.md). 12 | 13 | Happy hacking! 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go 11 | // 12 | 13 | TEXT ·sysvicall6(SB),NOSPLIT,$0-64 14 | JMP syscall·sysvicall6(SB) 15 | 16 | TEXT ·rawSysvicall6(SB),NOSPLIT,$0-64 17 | JMP syscall·rawSysvicall6(SB) 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- 1 | // Code generated by "stringer -type=Kind"; DO NOT EDIT 2 | 3 | package width 4 | 5 | import "fmt" 6 | 7 | const _Kind_name = "NeutralEastAsianAmbiguousEastAsianWideEastAsianNarrowEastAsianFullwidthEastAsianHalfwidth" 8 | 9 | var _Kind_index = [...]uint8{0, 7, 25, 38, 53, 71, 89} 10 | 11 | func (i Kind) String() string { 12 | if i < 0 || i >= Kind(len(_Kind_index)-1) { 13 | return fmt.Sprintf("Kind(%d)", i) 14 | } 15 | return _Kind_name[_Kind_index[i]:_Kind_index[i+1]] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/gopkg.in/natefinch/lumberjack.v2/chown_linux.go: -------------------------------------------------------------------------------- 1 | package lumberjack 2 | 3 | import ( 4 | "os" 5 | "syscall" 6 | ) 7 | 8 | // os_Chown is a var so we can mock it out during tests. 9 | var os_Chown = os.Chown 10 | 11 | func chown(name string, info os.FileInfo) error { 12 | f, err := os.OpenFile(name, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, info.Mode()) 13 | if err != nil { 14 | return err 15 | } 16 | f.Close() 17 | stat := info.Sys().(*syscall.Stat_t) 18 | return os_Chown(name, int(stat.Uid), int(stat.Gid)) 19 | } 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/docker/spdystream/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to SpdyStream 2 | 3 | Want to hack on spdystream? Awesome! Here are instructions to get you 4 | started. 5 | 6 | SpdyStream is a part of the [Docker](https://docker.io) project, and follows 7 | the same rules and principles. If you're already familiar with the way 8 | Docker does things, you'll feel right at home. 9 | 10 | Otherwise, go read 11 | [Docker's contributions guidelines](https://github.com/dotcloud/docker/blob/master/CONTRIBUTING.md). 12 | 13 | Happy hacking! 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/storagebackend/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["config.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 16 | "//vendor/k8s.io/apiserver/pkg/storage/value:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package terminal 6 | 7 | // These constants are declared here, rather than importing 8 | // them from the syscall package as some syscall packages, even 9 | // on linux, for example gccgo, do not declare them. 10 | const ioctlReadTermios = 0x5401 // syscall.TCGETS 11 | const ioctlWriteTermios = 0x5402 // syscall.TCSETS 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go 11 | // 12 | 13 | TEXT ·sysvicall6(SB),NOSPLIT,$0-64 14 | JMP syscall·sysvicall6(SB) 15 | 16 | TEXT ·rawSysvicall6(SB),NOSPLIT,$0-64 17 | JMP syscall·rawSysvicall6(SB) 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/apis/meta/v1/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - smarterclayton 4 | - wojtek-t 5 | - deads2k 6 | - brendandburns 7 | - caesarxuchao 8 | - liggitt 9 | - nikhiljindal 10 | - gmarek 11 | - erictune 12 | - davidopp 13 | - sttts 14 | - quinton-hoole 15 | - kargakis 16 | - luxas 17 | - janetkuo 18 | - justinsb 19 | - ncdc 20 | - timothysc 21 | - soltysh 22 | - dims 23 | - madhusudancs 24 | - hongchaodeng 25 | - krousey 26 | - mml 27 | - mbohlool 28 | - david-mcmahon 29 | - therc 30 | - mqliang 31 | - kevin-wangzefeng 32 | - jianhuiz 33 | - feihujiang 34 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/value/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["transformer_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["transformer.go"], 21 | tags = ["automanaged"], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/errors/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["errors_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "doc.go", 22 | "errors.go", 23 | ], 24 | tags = ["automanaged"], 25 | ) 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/admissionregistration/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/api/v1/ref/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["ref.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/api/core/v1:go_default_library", 16 | "//vendor/k8s.io/apimachinery/pkg/api/meta:go_default_library", 17 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package terminal 6 | 7 | // These constants are declared here, rather than importing 8 | // them from the syscall package as some syscall packages, even 9 | // on linux, for example gccgo, do not declare them. 10 | const ioctlReadTermios = 0x5401 // syscall.TCGETS 11 | const ioctlWriteTermios = 0x5402 // syscall.TCSETS 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build gccgo,linux,amd64 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //extern gettimeofday 12 | func realGettimeofday(*Timeval, *byte) int32 13 | 14 | func gettimeofday(tv *Timeval) (err syscall.Errno) { 15 | r := realGettimeofday(tv, nil) 16 | if r < 0 { 17 | return syscall.GetErrno() 18 | } 19 | return 0 20 | } 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/testing/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["fake_handler_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "fake_handler.go", 22 | "tmpdir.go", 23 | ], 24 | tags = ["automanaged"], 25 | ) 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/elazarl/go-bindata-assetfs/doc.go: -------------------------------------------------------------------------------- 1 | // assetfs allows packages to serve static content embedded 2 | // with the go-bindata tool with the standard net/http package. 3 | // 4 | // See https://github.com/jteeuwen/go-bindata for more information 5 | // about embedding binary data with go-bindata. 6 | // 7 | // Usage example, after running 8 | // $ go-bindata data/... 9 | // use: 10 | // http.Handle("/", 11 | // http.FileServer( 12 | // &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, Prefix: "data"})) 13 | package assetfs 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build gccgo,linux,amd64 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //extern gettimeofday 12 | func realGettimeofday(*Timeval, *byte) int32 13 | 14 | func gettimeofday(tv *Timeval) (err syscall.Errno) { 15 | r := realGettimeofday(tv, nil) 16 | if r < 0 { 17 | return syscall.GetErrno() 18 | } 19 | return 0 20 | } 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/httpstream/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["httpstream_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "doc.go", 22 | "httpstream.go", 23 | ], 24 | tags = ["automanaged"], 25 | ) 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build ignore 6 | 7 | package main 8 | 9 | // This file contains code common to the maketables.go and the package code. 10 | 11 | // langAliasType is the type of an alias in langAliasMap. 12 | type langAliasType int8 13 | 14 | const ( 15 | langDeprecated langAliasType = iota 16 | langMacro 17 | langLegacy 18 | 19 | langAliasTypeUnknown langAliasType = -1 20 | ) 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/runtime/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["runtime_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["runtime.go"], 21 | tags = ["automanaged"], 22 | deps = ["//vendor/github.com/golang/glog:go_default_library"], 23 | ) 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/reflect/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["deep_equal_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "deep_equal.go", 22 | "type.go", 23 | ], 24 | tags = ["automanaged"], 25 | ) 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/util/logs/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["logs.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/github.com/golang/glog:go_default_library", 16 | "//vendor/github.com/spf13/pflag:go_default_library", 17 | "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/internalinterfaces/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["factory_interfaces.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 16 | "//vendor/k8s.io/client-go/kubernetes:go_default_library", 17 | "//vendor/k8s.io/client-go/tools/cache:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build ignore 6 | 7 | package main 8 | 9 | // This file contains code common to the maketables.go and the package code. 10 | 11 | // langAliasType is the type of an alias in langAliasMap. 12 | type langAliasType int8 13 | 14 | const ( 15 | langDeprecated langAliasType = iota 16 | langMacro 17 | langLegacy 18 | 19 | langAliasTypeUnknown langAliasType = -1 20 | ) 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/healthz/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["healthz_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "doc.go", 22 | "healthz.go", 23 | ], 24 | tags = ["automanaged"], 25 | ) 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/util/flushwriter/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["writer_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "doc.go", 22 | "writer.go", 23 | ], 24 | tags = ["automanaged"], 25 | ) 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/serializer/yaml/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["yaml.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 16 | "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", 17 | "//vendor/k8s.io/apimachinery/pkg/util/yaml:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build ignore 6 | 7 | package main 8 | 9 | // This file contains code common to the maketables.go and the package code. 10 | 11 | // langAliasType is the type of an alias in langAliasMap. 12 | type langAliasType int8 13 | 14 | const ( 15 | langDeprecated langAliasType = iota 16 | langMacro 17 | langLegacy 18 | 19 | langAliasTypeUnknown langAliasType = -1 20 | ) 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of cloud authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS files. 3 | # See the latter for an explanation. 4 | 5 | # Names should be added to this file as: 6 | # Name or Organization 7 | # The email address is not required for organizations. 8 | 9 | Filippo Valsorda 10 | Google Inc. 11 | Ingo Oeser 12 | Palm Stone Games, Inc. 13 | Paweł Knap 14 | Péter Szilágyi 15 | Tyler Treat 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/batch/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/batch/v1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/batch/v2alpha1:go_default_library", 17 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/auth/authenticator/token/oidc/testing/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["provider.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/github.com/coreos/go-oidc/jose:go_default_library", 16 | "//vendor/github.com/coreos/go-oidc/key:go_default_library", 17 | "//vendor/github.com/coreos/go-oidc/oidc:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build ignore 6 | 7 | package main 8 | 9 | // This file contains code common to the maketables.go and the package code. 10 | 11 | // langAliasType is the type of an alias in langAliasMap. 12 | type langAliasType int8 13 | 14 | const ( 15 | langDeprecated langAliasType = iota 16 | langMacro 17 | langLegacy 18 | 19 | langAliasTypeUnknown langAliasType = -1 20 | ) 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/rbac/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/rbac/v1alpha1:go_default_library", 17 | "//vendor/k8s.io/client-go/informers/rbac/v1beta1:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/storage/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/storage/v1:go_default_library", 17 | "//vendor/k8s.io/client-go/informers/storage/v1beta1:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/coreos/pkg/httputil/json.go: -------------------------------------------------------------------------------- 1 | package httputil 2 | 3 | import ( 4 | "encoding/json" 5 | "net/http" 6 | ) 7 | 8 | const ( 9 | JSONContentType = "application/json" 10 | ) 11 | 12 | func WriteJSONResponse(w http.ResponseWriter, code int, resp interface{}) error { 13 | enc, err := json.Marshal(resp) 14 | if err != nil { 15 | w.WriteHeader(http.StatusInternalServerError) 16 | return err 17 | } 18 | 19 | w.Header().Set("Content-Type", JSONContentType) 20 | w.WriteHeader(code) 21 | 22 | _, err = w.Write(enc) 23 | if err != nil { 24 | return err 25 | } 26 | return nil 27 | } 28 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- 1 | golang-lru 2 | ========== 3 | 4 | This provides the `lru` package which implements a fixed-size 5 | thread safe LRU cache. It is based on the cache in Groupcache. 6 | 7 | Documentation 8 | ============= 9 | 10 | Full docs are available on [Godoc](http://godoc.org/github.com/hashicorp/golang-lru) 11 | 12 | Example 13 | ======= 14 | 15 | Using the LRU is very simple: 16 | 17 | ```go 18 | l, _ := New(128) 19 | for i := 0; i < 256; i++ { 20 | l.Add(i, nil) 21 | } 22 | if l.Len() != 128 { 23 | panic(fmt.Sprintf("bad len: %v", l.Len())) 24 | } 25 | ``` 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/inconshreveable/mousetrap/trap_others.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package mousetrap 4 | 5 | // StartedByExplorer returns true if the program was invoked by the user 6 | // double-clicking on the executable from explorer.exe 7 | // 8 | // It is conservative and returns false if any of the internal calls fail. 9 | // It does not guarantee that the program was run from a terminal. It only can tell you 10 | // whether it was launched from explorer.exe 11 | // 12 | // On non-Windows platforms, it always returns false. 13 | func StartedByExplorer() bool { 14 | return false 15 | } 16 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- 1 | golang-lru 2 | ========== 3 | 4 | This provides the `lru` package which implements a fixed-size 5 | thread safe LRU cache. It is based on the cache in Groupcache. 6 | 7 | Documentation 8 | ============= 9 | 10 | Full docs are available on [Godoc](http://godoc.org/github.com/hashicorp/golang-lru) 11 | 12 | Example 13 | ======= 14 | 15 | Using the LRU is very simple: 16 | 17 | ```go 18 | l, _ := New(128) 19 | for i := 0; i < 256; i++ { 20 | l.Add(i, nil) 21 | } 22 | if l.Len() != 128 { 23 | panic(fmt.Sprintf("bad len: %v", l.Len())) 24 | } 25 | ``` 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/howeyc/gopass/terminal.go: -------------------------------------------------------------------------------- 1 | // +build !solaris 2 | 3 | package gopass 4 | 5 | import "golang.org/x/crypto/ssh/terminal" 6 | 7 | type terminalState struct { 8 | state *terminal.State 9 | } 10 | 11 | func isTerminal(fd uintptr) bool { 12 | return terminal.IsTerminal(int(fd)) 13 | } 14 | 15 | func makeRaw(fd uintptr) (*terminalState, error) { 16 | state, err := terminal.MakeRaw(int(fd)) 17 | 18 | return &terminalState{ 19 | state: state, 20 | }, err 21 | } 22 | 23 | func restore(fd uintptr, oldState *terminalState) error { 24 | return terminal.Restore(int(fd), oldState.state) 25 | } 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_library( 12 | name = "go_default_library", 13 | srcs = ["clientauth.go"], 14 | tags = ["automanaged"], 15 | deps = ["//vendor/k8s.io/client-go/rest:go_default_library"], 16 | ) 17 | 18 | go_test( 19 | name = "go_default_xtest", 20 | srcs = ["clientauth_test.go"], 21 | tags = ["automanaged"], 22 | deps = ["//vendor/k8s.io/client-go/tools/auth:go_default_library"], 23 | ) 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- 1 | golang-lru 2 | ========== 3 | 4 | This provides the `lru` package which implements a fixed-size 5 | thread safe LRU cache. It is based on the cache in Groupcache. 6 | 7 | Documentation 8 | ============= 9 | 10 | Full docs are available on [Godoc](http://godoc.org/github.com/hashicorp/golang-lru) 11 | 12 | Example 13 | ======= 14 | 15 | Using the LRU is very simple: 16 | 17 | ```go 18 | l, _ := New(128) 19 | for i := 0; i < 256; i++ { 20 | l.Add(i, nil) 21 | } 22 | if l.Len() != 128 { 23 | panic(fmt.Sprintf("bad len: %v", l.Len())) 24 | } 25 | ``` 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/autoscaling/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/informers/autoscaling/v1:go_default_library", 16 | "//vendor/k8s.io/client-go/informers/autoscaling/v2alpha1:go_default_library", 17 | "//vendor/k8s.io/client-go/informers/internalinterfaces:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/client/auth/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["plugins.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/client-go/plugin/pkg/client/auth/azure:go_default_library", 16 | "//vendor/k8s.io/client-go/plugin/pkg/client/auth/gcp:go_default_library", 17 | "//vendor/k8s.io/client-go/plugin/pkg/client/auth/oidc:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- 1 | package swag 2 | 3 | import ( 4 | "net" 5 | "strconv" 6 | ) 7 | 8 | // SplitHostPort splits a network address into a host and a port. 9 | // The port is -1 when there is no port to be found 10 | func SplitHostPort(addr string) (host string, port int, err error) { 11 | h, p, err := net.SplitHostPort(addr) 12 | if err != nil { 13 | return "", -1, err 14 | } 15 | if p == "" { 16 | return "", -1, &net.AddrError{Err: "missing port in address", Addr: addr} 17 | } 18 | 19 | pi, err := strconv.Atoi(p) 20 | if err != nil { 21 | return "", -1, err 22 | } 23 | return h, pi, nil 24 | } 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/howeyc/gopass/terminal.go: -------------------------------------------------------------------------------- 1 | // +build !solaris 2 | 3 | package gopass 4 | 5 | import "golang.org/x/crypto/ssh/terminal" 6 | 7 | type terminalState struct { 8 | state *terminal.State 9 | } 10 | 11 | func isTerminal(fd uintptr) bool { 12 | return terminal.IsTerminal(int(fd)) 13 | } 14 | 15 | func makeRaw(fd uintptr) (*terminalState, error) { 16 | state, err := terminal.MakeRaw(int(fd)) 17 | 18 | return &terminalState{ 19 | state: state, 20 | }, err 21 | } 22 | 23 | func restore(fd uintptr, oldState *terminalState) error { 24 | return terminal.Restore(int(fd), oldState.state) 25 | } 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of GoGo authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS file, which 3 | # lists people. For example, employees are listed in CONTRIBUTORS, 4 | # but not in AUTHORS, because the employer holds the copyright. 5 | 6 | # Names should be added to this file as one of 7 | # Organization's name 8 | # Individual's name 9 | # Individual's name 10 | 11 | # Please keep the list sorted. 12 | 13 | Vastech SA (PTY) LTD 14 | Walter Schulze 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/registry/generic/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - yujuhong 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - nikhiljindal 13 | - bprashanth 14 | - gmarek 15 | - davidopp 16 | - saad-ali 17 | - janetkuo 18 | - pwittrock 19 | - roberthbailey 20 | - ncdc 21 | - eparis 22 | - timothysc 23 | - jlowdermilk 24 | - piosz 25 | - dims 26 | - hongchaodeng 27 | - krousey 28 | - markturansky 29 | - fgrzadkowski 30 | - xiang90 31 | - resouer 32 | - mqliang 33 | - feihujiang 34 | - sdminonne 35 | - goltermann 36 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/names/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["generate_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["generate.go"], 21 | tags = ["automanaged"], 22 | deps = ["//vendor/k8s.io/apimachinery/pkg/util/rand:go_default_library"], 23 | ) 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- 1 | package swag 2 | 3 | import ( 4 | "net" 5 | "strconv" 6 | ) 7 | 8 | // SplitHostPort splits a network address into a host and a port. 9 | // The port is -1 when there is no port to be found 10 | func SplitHostPort(addr string) (host string, port int, err error) { 11 | h, p, err := net.SplitHostPort(addr) 12 | if err != nil { 13 | return "", -1, err 14 | } 15 | if p == "" { 16 | return "", -1, &net.AddrError{Err: "missing port in address", Addr: addr} 17 | } 18 | 19 | pi, err := strconv.Atoi(p) 20 | if err != nil { 21 | return "", -1, err 22 | } 23 | return h, pi, nil 24 | } 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- 1 | package swag 2 | 3 | import ( 4 | "net" 5 | "strconv" 6 | ) 7 | 8 | // SplitHostPort splits a network address into a host and a port. 9 | // The port is -1 when there is no port to be found 10 | func SplitHostPort(addr string) (host string, port int, err error) { 11 | h, p, err := net.SplitHostPort(addr) 12 | if err != nil { 13 | return "", -1, err 14 | } 15 | if p == "" { 16 | return "", -1, &net.AddrError{Err: "missing port in address", Addr: addr} 17 | } 18 | 19 | pi, err := strconv.Atoi(p) 20 | if err != nil { 21 | return "", -1, err 22 | } 23 | return h, pi, nil 24 | } 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of GoGo authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS file, which 3 | # lists people. For example, employees are listed in CONTRIBUTORS, 4 | # but not in AUTHORS, because the employer holds the copyright. 5 | 6 | # Names should be added to this file as one of 7 | # Organization's name 8 | # Individual's name 9 | # Individual's name 10 | 11 | # Please keep the list sorted. 12 | 13 | Vastech SA (PTY) LTD 14 | Walter Schulze 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of GoGo authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS file, which 3 | # lists people. For example, employees are listed in CONTRIBUTORS, 4 | # but not in AUTHORS, because the employer holds the copyright. 5 | 6 | # Names should be added to this file as one of 7 | # Organization's name 8 | # Individual's name 9 | # Individual's name 10 | 11 | # Please keep the list sorted. 12 | 13 | Vastech SA (PTY) LTD 14 | Walter Schulze 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- 1 | package swag 2 | 3 | import ( 4 | "net" 5 | "strconv" 6 | ) 7 | 8 | // SplitHostPort splits a network address into a host and a port. 9 | // The port is -1 when there is no port to be found 10 | func SplitHostPort(addr string) (host string, port int, err error) { 11 | h, p, err := net.SplitHostPort(addr) 12 | if err != nil { 13 | return "", -1, err 14 | } 15 | if p == "" { 16 | return "", -1, &net.AddrError{Err: "missing port in address", Addr: addr} 17 | } 18 | 19 | pi, err := strconv.Atoi(p) 20 | if err != nil { 21 | return "", -1, err 22 | } 23 | return h, pi, nil 24 | } 25 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/authentication/serviceaccount/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["util_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["util.go"], 21 | tags = ["automanaged"], 22 | deps = ["//vendor/k8s.io/apimachinery/pkg/api/validation:go_default_library"], 23 | ) 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/registry/rest/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - smarterclayton 4 | - wojtek-t 5 | - deads2k 6 | - brendandburns 7 | - derekwaynecarr 8 | - caesarxuchao 9 | - mikedanese 10 | - liggitt 11 | - nikhiljindal 12 | - bprashanth 13 | - gmarek 14 | - kargakis 15 | - justinsb 16 | - roberthbailey 17 | - ncdc 18 | - eparis 19 | - timothysc 20 | - dims 21 | - hongchaodeng 22 | - krousey 23 | - jszczepkowski 24 | - euank 25 | - markturansky 26 | - fgrzadkowski 27 | - satnam6502 28 | - fabioy 29 | - ingvagabund 30 | - david-mcmahon 31 | - jianhuiz 32 | - nhlfr 33 | - feihujiang 34 | - sdminonne 35 | - goltermann 36 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly 6 | 7 | package unix 8 | 9 | import ( 10 | "unsafe" 11 | ) 12 | 13 | const raceenabled = false 14 | 15 | func raceAcquire(addr unsafe.Pointer) { 16 | } 17 | 18 | func raceReleaseMerge(addr unsafe.Pointer) { 19 | } 20 | 21 | func raceReadRange(addr unsafe.Pointer, len int) { 22 | } 23 | 24 | func raceWriteRange(addr unsafe.Pointer, len int) { 25 | } 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of GoGo authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS file, which 3 | # lists people. For example, employees are listed in CONTRIBUTORS, 4 | # but not in AUTHORS, because the employer holds the copyright. 5 | 6 | # Names should be added to this file as one of 7 | # Organization's name 8 | # Individual's name 9 | # Individual's name 10 | 11 | # Please keep the list sorted. 12 | 13 | Vastech SA (PTY) LTD 14 | Walter Schulze 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package cobra 4 | 5 | import ( 6 | "os" 7 | "time" 8 | 9 | "github.com/inconshreveable/mousetrap" 10 | ) 11 | 12 | var preExecHookFn = preExecHook 13 | 14 | // enables an information splash screen on Windows if the CLI is started from explorer.exe. 15 | var MousetrapHelpText string = `This is a command line tool 16 | 17 | You need to open cmd.exe and run it from there. 18 | ` 19 | 20 | func preExecHook(c *Command) { 21 | if mousetrap.StartedByExplorer() { 22 | c.Print(MousetrapHelpText) 23 | time.Sleep(5 * time.Second) 24 | os.Exit(1) 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/inconshreveable/mousetrap/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Alan Shreve 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly 6 | 7 | package unix 8 | 9 | import ( 10 | "unsafe" 11 | ) 12 | 13 | const raceenabled = false 14 | 15 | func raceAcquire(addr unsafe.Pointer) { 16 | } 17 | 18 | func raceReleaseMerge(addr unsafe.Pointer) { 19 | } 20 | 21 | func raceReadRange(addr unsafe.Pointer, len int) { 22 | } 23 | 24 | func raceWriteRange(addr unsafe.Pointer, len int) { 25 | } 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/server/httplog/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["log_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "doc.go", 22 | "log.go", 23 | ], 24 | tags = ["automanaged"], 25 | deps = ["//vendor/github.com/golang/glog:go_default_library"], 26 | ) 27 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["csr_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "cert.go", 22 | "csr.go", 23 | "io.go", 24 | "pem.go", 25 | ], 26 | data = [ 27 | "testdata/dontUseThisKey.pem", 28 | ], 29 | tags = ["automanaged"], 30 | ) 31 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1beta1:go_default_library", 16 | "//vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/internalinterfaces/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["factory_interfaces.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset:go_default_library", 16 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 17 | "//vendor/k8s.io/client-go/tools/cache:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/apiextensions/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["interface.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/apiextensions/internalversion:go_default_library", 16 | "//vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/internalinterfaces:go_default_library", 17 | ], 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/internalinterfaces/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = ["factory_interfaces.go"], 13 | tags = ["automanaged"], 14 | deps = [ 15 | "//vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/internalclientset:go_default_library", 16 | "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", 17 | "//vendor/k8s.io/client-go/tools/cache:go_default_library", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/errors/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "doc.go", 14 | "storage.go", 15 | ], 16 | tags = ["automanaged"], 17 | deps = [ 18 | "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", 19 | "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", 20 | "//vendor/k8s.io/apiserver/pkg/storage:go_default_library", 21 | ], 22 | ) 23 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/yaml/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["decoder_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["decoder.go"], 21 | tags = ["automanaged"], 22 | deps = [ 23 | "//vendor/github.com/ghodss/yaml:go_default_library", 24 | "//vendor/github.com/golang/glog:go_default_library", 25 | ], 26 | ) 27 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | # Vim files https://github.com/github/gitignore/blob/master/Global/Vim.gitignore 23 | # swap 24 | [._]*.s[a-w][a-z] 25 | [._]s[a-w][a-z] 26 | # session 27 | Session.vim 28 | # temporary 29 | .netrwhist 30 | *~ 31 | # auto-generated tag files 32 | tags 33 | 34 | *.exe 35 | 36 | cobra.test 37 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/oauth2/client_appengine.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build appengine 6 | 7 | // App Engine hooks. 8 | 9 | package oauth2 10 | 11 | import ( 12 | "net/http" 13 | 14 | "golang.org/x/net/context" 15 | "golang.org/x/oauth2/internal" 16 | "google.golang.org/appengine/urlfetch" 17 | ) 18 | 19 | func init() { 20 | internal.RegisterContextClientFunc(contextClientAppEngine) 21 | } 22 | 23 | func contextClientAppEngine(ctx context.Context) (*http.Client, error) { 24 | return urlfetch.Client(ctx), nil 25 | } 26 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- 1 | # OAI object model [![Build Status](https://ci.vmware.run/api/badges/go-openapi/spec/status.svg)](https://ci.vmware.run/go-openapi/spec) [![Coverage](https://coverage.vmware.run/badges/go-openapi/spec/coverage.svg)](https://coverage.vmware.run/go-openapi/spec) [![Slack Status](https://slackin.goswagger.io/badge.svg)](https://slackin.goswagger.io) 2 | 3 | [![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/go-openapi/spec/master/LICENSE) [![GoDoc](https://godoc.org/github.com/go-openapi/spec?status.svg)](http://godoc.org/github.com/go-openapi/spec) 4 | 5 | The object model for OpenAPI specification documents -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/NYTimes/gziphandler/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 The New York Times Company 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this library except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/google.golang.org/grpc/codes/code_string.go: -------------------------------------------------------------------------------- 1 | // generated by stringer -type=Code; DO NOT EDIT 2 | 3 | package codes 4 | 5 | import "fmt" 6 | 7 | const _Code_name = "OKCanceledUnknownInvalidArgumentDeadlineExceededNotFoundAlreadyExistsPermissionDeniedResourceExhaustedFailedPreconditionAbortedOutOfRangeUnimplementedInternalUnavailableDataLossUnauthenticated" 8 | 9 | var _Code_index = [...]uint8{0, 2, 10, 17, 32, 48, 56, 69, 85, 102, 120, 127, 137, 150, 158, 169, 177, 192} 10 | 11 | func (i Code) String() string { 12 | if i+1 >= Code(len(_Code_index)) { 13 | return fmt.Sprintf("Code(%d)", i) 14 | } 15 | return _Code_name[_Code_index[i]:_Code_index[i+1]] 16 | } 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- 1 | # OAI object model [![Build Status](https://ci.vmware.run/api/badges/go-openapi/spec/status.svg)](https://ci.vmware.run/go-openapi/spec) [![Coverage](https://coverage.vmware.run/badges/go-openapi/spec/coverage.svg)](https://coverage.vmware.run/go-openapi/spec) [![Slack Status](https://slackin.goswagger.io/badge.svg)](https://slackin.goswagger.io) 2 | 3 | [![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/go-openapi/spec/master/LICENSE) [![GoDoc](https://godoc.org/github.com/go-openapi/spec?status.svg)](http://godoc.org/github.com/go-openapi/spec) 4 | 5 | The object model for OpenAPI specification documents -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/github.com/PuerkitoBio/urlesc/README.md: -------------------------------------------------------------------------------- 1 | urlesc [![Build Status](https://travis-ci.org/PuerkitoBio/urlesc.png?branch=master)](https://travis-ci.org/PuerkitoBio/urlesc) [![GoDoc](http://godoc.org/github.com/PuerkitoBio/urlesc?status.svg)](http://godoc.org/github.com/PuerkitoBio/urlesc) 2 | ====== 3 | 4 | Package urlesc implements query escaping as per RFC 3986. 5 | 6 | It contains some parts of the net/url package, modified so as to allow 7 | some reserved characters incorrectly escaped by net/url (see [issue 5684](https://github.com/golang/go/issues/5684)). 8 | 9 | ## Install 10 | 11 | go get github.com/PuerkitoBio/urlesc 12 | 13 | ## License 14 | 15 | Go license (BSD-3-Clause) 16 | 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/schema/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["group_version_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = [ 21 | "generated.pb.go", 22 | "group_version.go", 23 | "interfaces.go", 24 | ], 25 | tags = ["automanaged"], 26 | deps = ["//vendor/github.com/gogo/protobuf/proto:go_default_library"], 27 | ) 28 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- 1 | # OAI object model [![Build Status](https://ci.vmware.run/api/badges/go-openapi/spec/status.svg)](https://ci.vmware.run/go-openapi/spec) [![Coverage](https://coverage.vmware.run/badges/go-openapi/spec/coverage.svg)](https://coverage.vmware.run/go-openapi/spec) [![Slack Status](https://slackin.goswagger.io/badge.svg)](https://slackin.goswagger.io) 2 | 3 | [![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/go-openapi/spec/master/LICENSE) [![GoDoc](https://godoc.org/github.com/go-openapi/spec?status.svg)](http://godoc.org/github.com/go-openapi/spec) 4 | 5 | The object model for OpenAPI specification documents -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/diff/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | "go_test", 9 | ) 10 | 11 | go_test( 12 | name = "go_default_test", 13 | srcs = ["diff_test.go"], 14 | library = ":go_default_library", 15 | tags = ["automanaged"], 16 | ) 17 | 18 | go_library( 19 | name = "go_default_library", 20 | srcs = ["diff.go"], 21 | tags = ["automanaged"], 22 | deps = [ 23 | "//vendor/github.com/davecgh/go-spew/spew:go_default_library", 24 | "//vendor/k8s.io/apimachinery/pkg/util/validation/field:go_default_library", 25 | ], 26 | ) 27 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/typed/authorization/v1/generated_expansion.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2017 The Kubernetes Authors. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package v1 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - brendandburns 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - nikhiljindal 13 | - bprashanth 14 | - erictune 15 | - davidopp 16 | - pmorie 17 | - kargakis 18 | - janetkuo 19 | - justinsb 20 | - eparis 21 | - soltysh 22 | - jsafrane 23 | - dims 24 | - madhusudancs 25 | - hongchaodeng 26 | - krousey 27 | - markturansky 28 | - fgrzadkowski 29 | - xiang90 30 | - mml 31 | - ingvagabund 32 | - resouer 33 | - jessfraz 34 | - david-mcmahon 35 | - mfojtik 36 | - '249043822' 37 | - lixiaobing10051267 38 | - ddysher 39 | - mqliang 40 | - feihujiang 41 | - sdminonne 42 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/PuerkitoBio/urlesc/README.md: -------------------------------------------------------------------------------- 1 | urlesc [![Build Status](https://travis-ci.org/PuerkitoBio/urlesc.png?branch=master)](https://travis-ci.org/PuerkitoBio/urlesc) [![GoDoc](http://godoc.org/github.com/PuerkitoBio/urlesc?status.svg)](http://godoc.org/github.com/PuerkitoBio/urlesc) 2 | ====== 3 | 4 | Package urlesc implements query escaping as per RFC 3986. 5 | 6 | It contains some parts of the net/url package, modified so as to allow 7 | some reserved characters incorrectly escaped by net/url (see [issue 5684](https://github.com/golang/go/issues/5684)). 8 | 9 | ## Install 10 | 11 | go get github.com/PuerkitoBio/urlesc 12 | 13 | ## License 14 | 15 | Go license (BSD-3-Clause) 16 | 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- 1 | // Copyright 2010 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | // Unix environment variables. 8 | 9 | package unix 10 | 11 | import "syscall" 12 | 13 | func Getenv(key string) (value string, found bool) { 14 | return syscall.Getenv(key) 15 | } 16 | 17 | func Setenv(key, value string) error { 18 | return syscall.Setenv(key, value) 19 | } 20 | 21 | func Clearenv() { 22 | syscall.Clearenv() 23 | } 24 | 25 | func Environ() []string { 26 | return syscall.Environ() 27 | } 28 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- 1 | # OAI object model [![Build Status](https://ci.vmware.run/api/badges/go-openapi/spec/status.svg)](https://ci.vmware.run/go-openapi/spec) [![Coverage](https://coverage.vmware.run/badges/go-openapi/spec/coverage.svg)](https://coverage.vmware.run/go-openapi/spec) [![Slack Status](https://slackin.goswagger.io/badge.svg)](https://slackin.goswagger.io) 2 | 3 | [![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/go-openapi/spec/master/LICENSE) [![GoDoc](https://godoc.org/github.com/go-openapi/spec?status.svg)](http://godoc.org/github.com/go-openapi/spec) 4 | 5 | The object model for OpenAPI specification documents -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/vendor/github.com/PuerkitoBio/urlesc/README.md: -------------------------------------------------------------------------------- 1 | urlesc [![Build Status](https://travis-ci.org/PuerkitoBio/urlesc.png?branch=master)](https://travis-ci.org/PuerkitoBio/urlesc) [![GoDoc](http://godoc.org/github.com/PuerkitoBio/urlesc?status.svg)](http://godoc.org/github.com/PuerkitoBio/urlesc) 2 | ====== 3 | 4 | Package urlesc implements query escaping as per RFC 3986. 5 | 6 | It contains some parts of the net/url package, modified so as to allow 7 | some reserved characters incorrectly escaped by net/url (see [issue 5684](https://github.com/golang/go/issues/5684)). 8 | 9 | ## Install 10 | 11 | go get github.com/PuerkitoBio/urlesc 12 | 13 | ## License 14 | 15 | Go license (BSD-3-Clause) 16 | 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/typed/authentication/v1/generated_expansion.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2017 The Kubernetes Authors. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package v1 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/vendor/github.com/emicklei/go-restful-swagger12/swagger_builder.go: -------------------------------------------------------------------------------- 1 | package swagger 2 | 3 | type SwaggerBuilder struct { 4 | SwaggerService 5 | } 6 | 7 | func NewSwaggerBuilder(config Config) *SwaggerBuilder { 8 | return &SwaggerBuilder{*newSwaggerService(config)} 9 | } 10 | 11 | func (sb SwaggerBuilder) ProduceListing() ResourceListing { 12 | return sb.SwaggerService.produceListing() 13 | } 14 | 15 | func (sb SwaggerBuilder) ProduceAllDeclarations() map[string]ApiDeclaration { 16 | return sb.SwaggerService.produceAllDeclarations() 17 | } 18 | 19 | func (sb SwaggerBuilder) ProduceDeclarations(route string) (*ApiDeclaration, bool) { 20 | return sb.SwaggerService.produceDeclarations(route) 21 | } 22 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !go1.8 6 | 7 | package http2 8 | 9 | import ( 10 | "io" 11 | "net/http" 12 | ) 13 | 14 | func configureServer18(h1 *http.Server, h2 *Server) error { 15 | // No IdleTimeout to sync prior to Go 1.8. 16 | return nil 17 | } 18 | 19 | func shouldLogPanic(panicValue interface{}) bool { 20 | return panicValue != nil 21 | } 22 | 23 | func reqGetBody(req *http.Request) func() (io.ReadCloser, error) { 24 | return nil 25 | } 26 | 27 | func reqBodyIsNoBody(io.ReadCloser) bool { return false } 28 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/k8s.io/apiserver/pkg/storage/etcd/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2015 The Kubernetes Authors. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package etcd 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1/generated_expansion.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2017 The Kubernetes Authors. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package v1beta1 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1/generated_expansion.go: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2017 The Kubernetes Authors. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | package v1beta1 18 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/batch/v2alpha1/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | licenses(["notice"]) 4 | 5 | load( 6 | "@io_bazel_rules_go//go:def.bzl", 7 | "go_library", 8 | ) 9 | 10 | go_library( 11 | name = "go_default_library", 12 | srcs = [ 13 | "cronjob.go", 14 | "expansion_generated.go", 15 | ], 16 | tags = ["automanaged"], 17 | deps = [ 18 | "//vendor/k8s.io/api/batch/v2alpha1:go_default_library", 19 | "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", 20 | "//vendor/k8s.io/apimachinery/pkg/labels:go_default_library", 21 | "//vendor/k8s.io/client-go/tools/cache:go_default_library", 22 | ], 23 | ) 24 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/github.com/PuerkitoBio/urlesc/README.md: -------------------------------------------------------------------------------- 1 | urlesc [![Build Status](https://travis-ci.org/PuerkitoBio/urlesc.png?branch=master)](https://travis-ci.org/PuerkitoBio/urlesc) [![GoDoc](http://godoc.org/github.com/PuerkitoBio/urlesc?status.svg)](http://godoc.org/github.com/PuerkitoBio/urlesc) 2 | ====== 3 | 4 | Package urlesc implements query escaping as per RFC 3986. 5 | 6 | It contains some parts of the net/url package, modified so as to allow 7 | some reserved characters incorrectly escaped by net/url (see [issue 5684](https://github.com/golang/go/issues/5684)). 8 | 9 | ## Install 10 | 11 | go get github.com/PuerkitoBio/urlesc 12 | 13 | ## License 14 | 15 | Go license (BSD-3-Clause) 16 | 17 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- 1 | // Copyright 2010 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | // Unix environment variables. 8 | 9 | package unix 10 | 11 | import "syscall" 12 | 13 | func Getenv(key string) (value string, found bool) { 14 | return syscall.Getenv(key) 15 | } 16 | 17 | func Setenv(key, value string) error { 18 | return syscall.Setenv(key, value) 19 | } 20 | 21 | func Clearenv() { 22 | syscall.Clearenv() 23 | } 24 | 25 | func Environ() []string { 26 | return syscall.Environ() 27 | } 28 | --------------------------------------------------------------------------------