Jobs
9 | % for fstat in fstats 10 | % if fstat.is_dir 11 | {{fstat.filename|dirname|basename}}12 | % endif 13 | % endfor 14 |
├── gubernator ├── __init__.py ├── github │ ├── __init__.py │ ├── secrets.py │ ├── .gitignore │ └── app.yaml ├── third_party │ ├── __init__.py │ ├── defusedxml-0.4.1-py2.7.egg-info │ │ ├── dependency_links.txt │ │ └── top_level.txt │ └── GoogleAppEngineCloudStorageClient-1.9.22.1-py2.7.egg-info │ │ ├── zip-safe │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── .gitignore ├── requirements.txt ├── test_requirements.txt ├── static │ ├── favicon.ico │ ├── robots.txt │ ├── favicon-green.png │ ├── favicon-yellow.png │ └── octicons │ │ └── octicons.woff ├── OWNERS ├── cron.yaml ├── templates │ ├── build_404.html │ ├── node_404.html │ ├── job_list.html │ └── index.html └── index.yaml ├── ghproxy ├── .gitignore ├── OWNERS └── README.md ├── testgrid ├── .gitignore ├── extension │ └── testgrid_alerter │ │ ├── images │ │ └── icon.png │ │ └── manifest.json ├── OWNERS ├── cmd │ └── updater │ │ └── README.md └── issue_state │ └── issue_state.proto ├── .bazelignore ├── kettle ├── .dockerignore ├── .gitignore ├── requirements.txt ├── OWNERS └── cloudbuild.yaml ├── velodrome ├── requirements.txt ├── fetcher │ └── .gitignore ├── transform │ └── .gitignore ├── token-counter │ └── .gitignore ├── OWNERS ├── variants.yaml ├── grafana-stack │ ├── grafana-config.yaml │ └── prometheus-config.yaml └── cloudbuild.yaml ├── hack ├── requirements.txt ├── test_requirements.txt └── .kazelcfg.json ├── pkg ├── benchmarkjunit │ ├── .gitignore │ ├── OWNERS │ └── prowjob_example.yaml └── README.md ├── prow ├── crier │ ├── README.md │ └── OWNERS ├── plank │ ├── README.md │ └── OWNERS ├── plugins │ ├── cat │ │ └── .gitignore │ ├── approve │ │ └── approvers │ │ │ └── images │ │ │ ├── directory_structure.png │ │ │ └── bot_notification_for_approval_selection_mechanism.png │ └── branchcleaner │ │ └── README.md ├── tide │ ├── README.md │ └── OWNERS ├── cmd │ ├── deck │ │ ├── static │ │ │ ├── extensions │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── favicon.ico │ │ │ ├── logo-dark.png │ │ │ ├── logo-light.png │ │ │ └── api │ │ │ │ └── tide-history.ts │ │ ├── localdata │ │ │ └── .gitignore │ │ └── OWNERS │ ├── hook │ │ └── OWNERS │ ├── mkpj │ │ └── OWNERS │ ├── tide │ │ ├── OWNERS │ │ └── status-context.png │ ├── tot │ │ └── OWNERS │ ├── gerrit │ │ └── OWNERS │ ├── phony │ │ ├── OWNERS │ │ └── examples │ │ │ └── .gitattributes │ ├── plank │ │ └── OWNERS │ ├── sinker │ │ └── OWNERS │ ├── checkconfig │ │ ├── OWNERS │ │ └── README.md │ ├── peribolos │ │ └── OWNERS │ ├── horologium │ │ └── OWNERS │ ├── branchprotector │ │ └── OWNERS │ ├── jenkins-operator │ │ └── OWNERS │ ├── mkbuild-cluster │ │ └── OWNERS │ ├── crier │ │ └── OWNERS │ ├── clonerefs │ │ ├── ssh_config │ │ └── OWNERS │ ├── mkpod │ │ └── OWNERS │ ├── artifact-uploader │ │ └── OWNERS │ ├── status-reconciler │ │ └── OWNERS │ ├── config-bootstrapper │ │ ├── OWNERS │ │ └── README.md │ ├── sidecar │ │ └── OWNERS │ ├── entrypoint │ │ └── OWNERS │ ├── gcsupload │ │ └── OWNERS │ ├── initupload │ │ └── OWNERS │ └── build │ │ └── OWNERS ├── deck │ └── OWNERS ├── docs │ ├── architecture.png │ └── logos │ │ ├── logo-vertical.png │ │ └── logo-horizontal.png ├── cluster │ ├── test-pods_namespace.yaml │ ├── OWNERS │ └── mem-limit-range_limitrange.yaml ├── hook │ └── OWNERS ├── phony │ └── OWNERS ├── logo_horizontal_solid.png ├── jenkins │ └── OWNERS ├── spyglass │ ├── spyglass-example.png │ ├── OWNERS │ └── lenses │ │ ├── lens.d.ts │ │ └── metadata │ │ └── style.css ├── external-plugins │ ├── refresh │ │ └── OWNERS │ └── cherrypicker │ │ └── OWNERS ├── gerrit │ └── OWNERS ├── artifact-uploader │ └── OWNERS ├── statusreconciler │ └── OWNERS ├── pod-utils │ └── OWNERS ├── sidecar │ └── OWNERS ├── clonerefs │ └── OWNERS ├── entrypoint │ └── OWNERS ├── gcsupload │ └── OWNERS ├── initupload │ └── OWNERS ├── pubsub │ └── OWNERS ├── commands.md ├── OWNERS ├── test │ └── data │ │ └── BUILD.bazel ├── config │ └── README.md └── labels │ └── BUILD.bazel ├── triage ├── requirements.txt ├── OWNERS ├── README.md └── cloudbuild.yaml ├── images ├── bootstrap │ └── barnacle │ │ └── .gitignore ├── gcloud-bazel │ └── .gitignore ├── OWNERS ├── kubekins-test │ └── variants.yaml ├── bazelbuild │ └── variants.yaml ├── kubekins-e2e │ └── BUILD.bazel ├── bigquery │ └── cloudbuild.yaml ├── gcloud │ └── cloudbuild.yaml ├── cluster-api │ └── cloudbuild.yaml ├── pull-test-infra-gubernator │ └── cloudbuild.yaml ├── kubemci │ └── cloudbuild.yaml └── bazel-krte │ └── cloudbuild.yaml ├── robots ├── issue-creator │ └── .gitignore ├── coverage │ ├── OWNERS │ └── docs │ │ └── adoption.md └── OWNERS ├── vendor ├── go.opencensus.io │ └── AUTHORS ├── github.com │ ├── modern-go │ │ ├── reflect2 │ │ │ ├── reflect2_amd64.s │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── go_below_17.go │ │ │ ├── go_above_17.go │ │ │ ├── go_below_19.go │ │ │ └── go_above_19.go │ │ └── concurrent │ │ │ ├── go_above_19.go │ │ │ └── log.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ └── NOTICE │ ├── Azure │ │ ├── azure-storage-blob-go │ │ │ └── azblob │ │ │ │ ├── version.go │ │ │ │ └── zz_generated_version.go │ │ ├── azure-sdk-for-go │ │ │ └── NOTICE │ │ └── azure-pipeline-go │ │ │ └── pipeline │ │ │ └── version.go │ ├── jinzhu │ │ └── gorm │ │ │ ├── dialects │ │ │ ├── mysql │ │ │ │ └── mysql.go │ │ │ └── sqlite │ │ │ │ └── sqlite.go │ │ │ └── model.go │ ├── aws │ │ ├── aws-k8s-tester │ │ │ ├── pkg │ │ │ │ └── awsapi │ │ │ │ │ └── ec2 │ │ │ │ │ └── doc.go │ │ │ └── NOTICE │ │ └── aws-sdk-go │ │ │ ├── service │ │ │ ├── ec2 │ │ │ │ └── errors.go │ │ │ ├── s3 │ │ │ │ └── platform_handlers.go │ │ │ └── sts │ │ │ │ └── customizations.go │ │ │ ├── NOTICE.txt │ │ │ ├── internal │ │ │ ├── ini │ │ │ │ ├── empty_token.go │ │ │ │ ├── comma_token.go │ │ │ │ ├── fuzz.go │ │ │ │ └── ws_token.go │ │ │ ├── sdkio │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ ├── shareddefaults │ │ │ │ └── ecs_container.go │ │ │ └── sdkuri │ │ │ │ └── path.go │ │ │ ├── aws │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── options.go │ │ │ │ │ └── uri_path.go │ │ │ ├── request │ │ │ │ ├── connection_reset_error_other.go │ │ │ │ ├── connection_reset_error.go │ │ │ │ ├── request_context_1_6.go │ │ │ │ ├── http_request.go │ │ │ │ └── request_context.go │ │ │ ├── version.go │ │ │ ├── url.go │ │ │ ├── context_1_9.go │ │ │ ├── jsonvalue.go │ │ │ ├── client │ │ │ │ └── metadata │ │ │ │ │ └── client_info.go │ │ │ ├── csm │ │ │ │ └── metric_exception.go │ │ │ └── errors.go │ │ │ └── private │ │ │ └── protocol │ │ │ └── eventstream │ │ │ └── eventstreamapi │ │ │ └── error.go │ ├── spf13 │ │ └── cobra │ │ │ ├── command_notwin.go │ │ │ └── command_win.go │ ├── klauspost │ │ └── cpuid │ │ │ ├── generate.go │ │ │ ├── detect_intel.go │ │ │ └── detect_ref.go │ ├── google │ │ ├── uuid │ │ │ ├── CONTRIBUTORS │ │ │ ├── doc.go │ │ │ └── node_js.go │ │ ├── go-github │ │ │ └── github │ │ │ │ ├── git.go │ │ │ │ ├── without_appengine.go │ │ │ │ └── with_appengine.go │ │ └── go-cmp │ │ │ └── cmp │ │ │ ├── unsafe_panic.go │ │ │ └── internal │ │ │ └── diff │ │ │ └── debug_disable.go │ ├── docker │ │ ├── docker │ │ │ ├── api │ │ │ │ ├── common_unix.go │ │ │ │ ├── types │ │ │ │ │ ├── swarm │ │ │ │ │ │ └── runtime │ │ │ │ │ │ │ └── gen.go │ │ │ │ │ ├── time │ │ │ │ │ │ └── duration_convert.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── id_response.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── graph_driver_data.go │ │ │ │ │ └── image_delete_response_item.go │ │ │ │ ├── common.go │ │ │ │ └── common_windows.go │ │ │ └── client │ │ │ │ ├── client_windows.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── interface_stable.go │ │ │ │ ├── tlsconfig_clone.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── swarm_unlock.go │ │ │ │ ├── transport.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── config_remove.go │ │ │ │ ├── secret_remove.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── session.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── node_update.go │ │ │ │ ├── node_remove.go │ │ │ │ └── plugin_remove.go │ │ └── go-connections │ │ │ └── tlsconfig │ │ │ ├── certpool_other.go │ │ │ ├── certpool_go17.go │ │ │ └── config_legacy_client_ciphers.go │ ├── Microsoft │ │ └── go-winio │ │ │ └── syscall.go │ ├── dgrijalva │ │ └── jwt-go │ │ │ └── doc.go │ ├── gomodule │ │ └── redigo │ │ │ └── redis │ │ │ └── go18.go │ ├── golang │ │ ├── protobuf │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ │ └── mock │ │ │ └── AUTHORS │ ├── gophercloud │ │ └── gophercloud │ │ │ ├── pagination │ │ │ └── pkg.go │ │ │ └── openstack │ │ │ ├── identity │ │ │ ├── v3 │ │ │ │ └── tokens │ │ │ │ │ └── urls.go │ │ │ └── v2 │ │ │ │ └── tokens │ │ │ │ └── urls.go │ │ │ └── doc.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_bsd.go │ │ │ └── terminal_check_notappengine.go │ ├── prometheus │ │ ├── client_model │ │ │ └── NOTICE │ │ ├── common │ │ │ └── NOTICE │ │ └── procfs │ │ │ └── NOTICE │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ └── sequences_dummy.go │ ├── mattn │ │ ├── go-sqlite3 │ │ │ ├── sqlite3_json1.go │ │ │ ├── sqlite3_other.go │ │ │ ├── sqlite3_fts5.go │ │ │ ├── sqlite3_icu.go │ │ │ ├── sqlite3_libsqlite3.go │ │ │ └── sqlite3_windows.go │ │ └── go-zglob │ │ │ └── fastwalk │ │ │ ├── fastwalk_dirent_ino.go │ │ │ └── fastwalk_dirent_fileno.go │ ├── knative │ │ └── build │ │ │ └── AUTHORS │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── open_mode_bsd.go │ │ │ └── open_mode_darwin.go │ ├── fsouza │ │ └── fake-gcs-server │ │ │ ├── internal │ │ │ └── backend │ │ │ │ ├── object.go │ │ │ │ └── storage.go │ │ │ └── fakestorage │ │ │ └── doc.go │ ├── djherbis │ │ └── atime │ │ │ ├── atime_plan9.go │ │ │ ├── atime_windows.go │ │ │ ├── stat.go │ │ │ ├── atime_linux.go │ │ │ ├── atime_darwin.go │ │ │ ├── atime_dragonfly.go │ │ │ ├── atime_nacl.go │ │ │ ├── atime_netbsd.go │ │ │ ├── atime_openbsd.go │ │ │ ├── atime_solaris.go │ │ │ └── atime_freebsd.go │ ├── mailru │ │ └── easyjson │ │ │ └── jlexer │ │ │ ├── error.go │ │ │ └── bytestostr_nounsafe.go │ ├── gorilla │ │ ├── mux │ │ │ ├── context_native.go │ │ │ └── context_gorilla.go │ │ ├── sessions │ │ │ ├── cookie.go │ │ │ ├── cookie_go111.go │ │ │ └── options.go │ │ └── securecookie │ │ │ └── fuzz.go │ ├── shurcooL │ │ └── graphql │ │ │ └── doc.go │ ├── go-sql-driver │ │ └── mysql │ │ │ └── appengine.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ └── trap_others.go │ └── blang │ │ └── semver │ │ └── json.go ├── google.golang.org │ ├── grpc │ │ └── AUTHORS │ ├── appengine │ │ ├── internal │ │ │ ├── identity_flex.go │ │ │ ├── main_common.go │ │ │ └── main.go │ │ ├── socket │ │ │ └── doc.go │ │ └── timeout.go │ └── api │ │ ├── AUTHORS │ │ └── gensupport │ │ └── doc.go ├── golang.org │ └── x │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ └── proxy │ │ │ └── direct.go │ │ ├── sync │ │ ├── AUTHORS │ │ └── CONTRIBUTORS │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── windows │ │ │ ├── mkerrors.go │ │ │ ├── mksyscall.go │ │ │ ├── aliases.go │ │ │ ├── asm_windows_arm.s │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ └── race0.go │ │ ├── cpu │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_wasm.go │ │ │ └── cpu_gc_x86.go │ │ └── unix │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── constants.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── aliases.go │ │ │ ├── pagesize_unix.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── gccgo_linux_amd64.go │ │ │ └── syscall_linux_gc.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ └── secure │ │ │ └── bidirule │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ ├── time │ │ ├── AUTHORS │ │ └── CONTRIBUTORS │ │ ├── tools │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── go │ │ │ ├── ast │ │ │ │ └── astutil │ │ │ │ │ └── util.go │ │ │ └── internal │ │ │ │ └── gcimporter │ │ │ │ └── newInterface11.go │ │ └── internal │ │ │ └── fastwalk │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ ├── fastwalk_dirent_ino.go │ │ │ └── fastwalk_dirent_namlen_bsd.go │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── ssh │ │ │ └── terminal │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_aix.go │ │ │ │ └── util_bsd.go │ │ ├── poly1305 │ │ │ └── mac_noasm.go │ │ ├── curve25519 │ │ │ └── const_amd64.h │ │ └── internal │ │ │ └── chacha20 │ │ │ └── chacha_noasm.go │ │ └── oauth2 │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ └── internal │ │ ├── doc.go │ │ └── client_appengine.go ├── vbom.ml │ └── util │ │ └── sortorder │ │ └── doc.go ├── sigs.k8s.io │ └── yaml │ │ └── yaml_go110.go └── cloud.google.com │ └── go │ └── AUTHORS ├── maintenance ├── aws-janitor │ ├── .gitignore │ ├── cmd │ │ └── aws-janitor-boskos │ │ │ └── .gitignore │ └── OWNERS └── migratestatus │ └── .gitignore ├── experiment ├── resultstore │ └── OWNERS ├── test-configmap.txt ├── logviewer │ ├── OWNERS │ └── README.md ├── tracer │ └── OWNERS ├── manual-trigger │ └── OWNERS ├── slack-oncall-updater │ └── OWNERS ├── coverage │ └── OWNERS ├── maintenance │ └── README.md ├── cherrypicker │ └── README.md └── aws-stockout │ └── README.md ├── config ├── jobs │ ├── kubernetes │ │ ├── sig-scheduling │ │ │ ├── sig-scheduling-config.yaml │ │ │ └── OWNERS │ │ ├── cloud-provider-aws │ │ │ └── OWNERS │ │ ├── sig-azure │ │ │ └── OWNERS │ │ ├── client-go │ │ │ ├── OWNERS │ │ │ └── client-go-presubmits.yaml │ │ ├── cloud-provider-openstack │ │ │ └── OWNERS │ │ ├── generated │ │ │ └── OWNERS │ │ ├── kops │ │ │ └── OWNERS │ │ ├── node-problem-detector │ │ │ └── OWNERS │ │ ├── sig-gcp │ │ │ ├── OWNERS │ │ │ └── gpu │ │ │ │ └── OWNERS │ │ ├── sig-storage │ │ │ └── OWNERS │ │ ├── sig-instrumentation │ │ │ └── OWNERS │ │ ├── sig-api-machinery │ │ │ └── OWNERS │ │ ├── sig-autoscaling │ │ │ └── OWNERS │ │ ├── sig-cli │ │ │ └── OWNERS │ │ ├── sig-apps │ │ │ └── OWNERS │ │ ├── sig-aws │ │ │ ├── OWNERS │ │ │ └── eks │ │ │ │ └── OWNERS │ │ ├── sig-node │ │ │ └── OWNERS │ │ ├── cloud-provider-gcp │ │ │ ├── OWNERS │ │ │ └── cloud-provider-gcp-presubmits.yaml │ │ ├── sig-release │ │ │ ├── cip │ │ │ │ └── OWNERS │ │ │ └── OWNERS │ │ ├── cloud-provider-alibaba-cloud │ │ │ └── OWNERS │ │ ├── publishing-bot │ │ │ └── OWNERS │ │ ├── sig-scalability │ │ │ └── OWNERS │ │ ├── cluster-registry │ │ │ └── OWNERS │ │ ├── sig-network │ │ │ └── OWNERS │ │ ├── release │ │ │ └── OWNERS │ │ ├── org │ │ │ ├── OWNERS │ │ │ └── kubernetes-org-jobs.yaml │ │ ├── cloud-provider-azure │ │ │ └── OWNERS │ │ ├── community │ │ │ └── OWNERS │ │ ├── sig-pm │ │ │ ├── OWNERS │ │ │ └── enhancements-presubmit.yaml │ │ ├── cloud-provider-vsphere │ │ │ └── OWNERS │ │ ├── sig-cluster-lifecycle │ │ │ ├── OWNERS │ │ │ └── manifests.yaml │ │ └── kubeadm │ │ │ ├── OWNERS │ │ │ └── kubeadm-presubmits.yaml │ ├── cadvisor │ │ └── OWNERS │ ├── bazelbuild │ │ └── rules_k8s │ │ │ └── OWNERS │ ├── apache-spark-on-k8s │ │ └── spark-integration │ │ │ └── OWNERS │ ├── gke │ │ └── containerd │ │ │ └── OWNERS │ ├── tensorflow │ │ └── minigo │ │ │ └── OWNERS │ ├── kubernetes-sigs │ │ ├── slack-infra │ │ │ └── OWNERS │ │ ├── kind │ │ │ └── OWNERS │ │ ├── sig-windows │ │ │ └── OWNERS │ │ ├── aws-alb-ingress-controller │ │ │ └── OWNERS │ │ ├── aws-ebs-csi-driver │ │ │ └── OWNERS │ │ ├── gcp-filestore-csi-driver │ │ │ └── OWNERS │ │ ├── kube-batch │ │ │ └── OWNERS │ │ ├── structured-merge-diff │ │ │ └── OWNERS │ │ ├── testing_frameworks │ │ │ └── OWNERS │ │ ├── poseidon │ │ │ └── OWNERS │ │ ├── kube-storage-version-migrator │ │ │ └── OWNERS │ │ ├── gcp-compute-persistent-disk-csi-driver │ │ │ └── OWNERS │ │ ├── cluster-api-provider-gcp │ │ │ └── OWNERS │ │ ├── cluster-api-provider-ibmcloud │ │ │ └── OWNERS │ │ ├── release-notes │ │ │ └── OWNERS │ │ ├── vsphere-csi-driver │ │ │ └── OWNERS │ │ ├── cluster-api-provider-digitalocean │ │ │ └── OWNERS │ │ ├── cluster-api-provider-openstack │ │ │ └── OWNERS │ │ ├── cluster-api │ │ │ └── OWNERS │ │ ├── kustomize │ │ │ └── OWNERS │ │ ├── sig-storage-local-static-provisioner │ │ │ └── OWNERS │ │ ├── cluster-api-provider-vsphere │ │ │ └── OWNERS │ │ ├── kubespray │ │ │ └── OWNERS │ │ ├── cluster-api-provider-aws │ │ │ └── OWNERS │ │ ├── cluster-api-provider-azure │ │ │ └── OWNERS │ │ └── kubebuilder-declarative-pattern │ │ │ └── kubebuilder-declarative-pattern-presubmits.yaml │ ├── GoogleCloudPlatform │ │ └── k8s-multicluster-ingress │ │ │ └── OWNERS │ ├── containerd │ │ └── cri │ │ │ └── OWNERS │ ├── kubernetes-csi │ │ └── OWNERS │ ├── .yamllint.conf │ ├── kubeflow │ │ └── OWNERS │ ├── helm │ │ └── charts │ │ │ └── OWNERS │ ├── kubernetes-incubator │ │ └── service-catalog │ │ │ └── OWNERS │ └── README.md ├── tests │ └── jobs │ │ └── README.md └── OWNERS ├── gcsweb ├── passwd ├── .gitignore ├── icons │ ├── back.png │ ├── dir.png │ └── file.png └── README.md ├── gopherage ├── docs │ └── gopherage.png ├── OWNERS ├── README.md └── cmd │ └── html │ └── static │ └── tsconfig.json ├── label_sync ├── syntax_error_example.yaml ├── labels.css.tmpl ├── OWNERS └── labels_example.yaml ├── docs └── OWNERS ├── logexporter └── OWNERS ├── jobs ├── e2e_node │ ├── OWNERS │ └── containerd │ │ ├── containerd-release-1.1 │ │ └── env │ │ ├── containerd-release-1.2 │ │ └── env │ │ ├── cri-master │ │ └── env │ │ ├── containerd-master │ │ └── env │ │ └── cni.template └── BUILD.bazel ├── metrics └── OWNERS ├── planter ├── OWNERS └── variants.yaml ├── boskos ├── OWNERS ├── mason │ └── test-resources.yaml ├── variants.yaml └── cloudbuild.yaml ├── code-of-conduct.md ├── jenkins ├── OWNERS └── README.md ├── greenhouse ├── OWNERS └── metrics-service.yaml ├── scenarios └── OWNERS ├── kubetest ├── OWNERS └── kubeadmdind │ └── OWNERS ├── kubetest2 ├── OWNERS └── README.md ├── .gitignore ├── .github └── ISSUE_TEMPLATE │ ├── enhancement.md │ ├── cleanup.md │ └── bug-report.md ├── OWNERS ├── def └── BUILD.bazel ├── package.json ├── pylintrc └── tslint.json /gubernator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ghproxy/.gitignore: -------------------------------------------------------------------------------- 1 | ghproxy 2 | -------------------------------------------------------------------------------- /gubernator/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testgrid/.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | -------------------------------------------------------------------------------- /.bazelignore: -------------------------------------------------------------------------------- 1 | .git 2 | _artifacts 3 | -------------------------------------------------------------------------------- /gubernator/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kettle/.dockerignore: -------------------------------------------------------------------------------- 1 | build.db 2 | 3 | -------------------------------------------------------------------------------- /velodrome/requirements.txt: -------------------------------------------------------------------------------- 1 | yaml 2 | -------------------------------------------------------------------------------- /gubernator/github/secrets.py: -------------------------------------------------------------------------------- 1 | ../secrets.py -------------------------------------------------------------------------------- /hack/requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools 2 | sh 3 | -------------------------------------------------------------------------------- /pkg/benchmarkjunit/.gitignore: -------------------------------------------------------------------------------- 1 | benchmarkjunit -------------------------------------------------------------------------------- /prow/crier/README.md: -------------------------------------------------------------------------------- 1 | ../cmd/crier/README.md -------------------------------------------------------------------------------- /prow/plank/README.md: -------------------------------------------------------------------------------- 1 | ../cmd/plank/README.md -------------------------------------------------------------------------------- /prow/plugins/cat/.gitignore: -------------------------------------------------------------------------------- 1 | api-key 2 | -------------------------------------------------------------------------------- /prow/tide/README.md: -------------------------------------------------------------------------------- 1 | ../cmd/tide/README.md -------------------------------------------------------------------------------- /triage/requirements.txt: -------------------------------------------------------------------------------- 1 | six==1.12.0 2 | -------------------------------------------------------------------------------- /velodrome/fetcher/.gitignore: -------------------------------------------------------------------------------- 1 | fetcher 2 | -------------------------------------------------------------------------------- /gubernator/github/.gitignore: -------------------------------------------------------------------------------- 1 | webhook_secret 2 | -------------------------------------------------------------------------------- /images/bootstrap/barnacle/.gitignore: -------------------------------------------------------------------------------- 1 | barnacle -------------------------------------------------------------------------------- /images/gcloud-bazel/.gitignore: -------------------------------------------------------------------------------- 1 | rules_k8s/ 2 | -------------------------------------------------------------------------------- /kettle/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *.gz 3 | *.json 4 | -------------------------------------------------------------------------------- /robots/issue-creator/.gitignore: -------------------------------------------------------------------------------- 1 | issue-creator -------------------------------------------------------------------------------- /velodrome/transform/.gitignore: -------------------------------------------------------------------------------- 1 | transform 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /maintenance/aws-janitor/.gitignore: -------------------------------------------------------------------------------- 1 | aws-janitor 2 | -------------------------------------------------------------------------------- /velodrome/token-counter/.gitignore: -------------------------------------------------------------------------------- 1 | token-counter 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /experiment/resultstore/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - fejta 3 | -------------------------------------------------------------------------------- /maintenance/migratestatus/.gitignore: -------------------------------------------------------------------------------- 1 | migratestatus 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-scheduling/sig-scheduling-config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gubernator/.gitignore: -------------------------------------------------------------------------------- 1 | .coverage 2 | htmlcov/ 3 | node_modules 4 | -------------------------------------------------------------------------------- /hack/test_requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2==2.10.1 2 | pyyaml 3 | requests 4 | -------------------------------------------------------------------------------- /gcsweb/passwd: -------------------------------------------------------------------------------- 1 | nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin 2 | -------------------------------------------------------------------------------- /gubernator/requirements.txt: -------------------------------------------------------------------------------- 1 | webapp2==2.5.2 2 | jinja2==2.10.1 3 | pyyaml 4 | -------------------------------------------------------------------------------- /gubernator/third_party/defusedxml-0.4.1-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gubernator/third_party/defusedxml-0.4.1-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | defusedxml 2 | -------------------------------------------------------------------------------- /maintenance/aws-janitor/cmd/aws-janitor-boskos/.gitignore: -------------------------------------------------------------------------------- 1 | /aws-janitor-boskos 2 | -------------------------------------------------------------------------------- /gcsweb/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /.go 3 | /.push-* 4 | /.container-* 5 | /.dockerfile-* 6 | -------------------------------------------------------------------------------- /pkg/README.md: -------------------------------------------------------------------------------- 1 | # pkg 2 | 3 | pkg/ contains common go packages used throughout test-infra 4 | -------------------------------------------------------------------------------- /prow/cmd/deck/static/extensions/script.js: -------------------------------------------------------------------------------- 1 | // This file serves for custom javascript extensions -------------------------------------------------------------------------------- /prow/cmd/deck/static/extensions/style.css: -------------------------------------------------------------------------------- 1 | /*This file serves for custom style extensions*/ -------------------------------------------------------------------------------- /gcsweb/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gcsweb/icons/back.png -------------------------------------------------------------------------------- /gcsweb/icons/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gcsweb/icons/dir.png -------------------------------------------------------------------------------- /gcsweb/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gcsweb/icons/file.png -------------------------------------------------------------------------------- /gubernator/test_requirements.txt: -------------------------------------------------------------------------------- 1 | webtest 2 | nosegae 3 | pylint==1.6.4 4 | coverage 5 | pyyaml 6 | -------------------------------------------------------------------------------- /gubernator/third_party/GoogleAppEngineCloudStorageClient-1.9.22.1-py2.7.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hack/.kazelcfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "GoPrefix": "k8s.io/test-infra", 3 | "AddSourcesRules": true 4 | } 5 | -------------------------------------------------------------------------------- /experiment/test-configmap.txt: -------------------------------------------------------------------------------- 1 | test config file 2 | wow, such config file 3 | now there are three lines! 4 | -------------------------------------------------------------------------------- /gubernator/third_party/GoogleAppEngineCloudStorageClient-1.9.22.1-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prow/deck/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/deck -------------------------------------------------------------------------------- /prow/docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/docs/architecture.png -------------------------------------------------------------------------------- /gopherage/docs/gopherage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gopherage/docs/gopherage.png -------------------------------------------------------------------------------- /gubernator/third_party/GoogleAppEngineCloudStorageClient-1.9.22.1-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cloudstorage 2 | -------------------------------------------------------------------------------- /prow/cluster/test-pods_namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test-pods 5 | -------------------------------------------------------------------------------- /prow/cmd/hook/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/hook 5 | -------------------------------------------------------------------------------- /prow/cmd/mkpj/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/mkpj 5 | -------------------------------------------------------------------------------- /prow/cmd/tide/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/tide 5 | -------------------------------------------------------------------------------- /prow/cmd/tot/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/tot 5 | -------------------------------------------------------------------------------- /prow/hook/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/hook 5 | -------------------------------------------------------------------------------- /prow/phony/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/phony 5 | -------------------------------------------------------------------------------- /prow/plank/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/plank 5 | -------------------------------------------------------------------------------- /prow/tide/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/tide 5 | -------------------------------------------------------------------------------- /robots/coverage/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | -------------------------------------------------------------------------------- /config/jobs/cadvisor/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - dashpole 5 | -------------------------------------------------------------------------------- /experiment/logviewer/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mborsz 5 | -------------------------------------------------------------------------------- /gubernator/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gubernator/static/favicon.ico -------------------------------------------------------------------------------- /gubernator/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: /*/nodelog 3 | Disallow: /*?log 4 | Disallow: /*?before= 5 | -------------------------------------------------------------------------------- /prow/cmd/gerrit/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/gerrit 5 | -------------------------------------------------------------------------------- /prow/cmd/phony/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/phony 5 | -------------------------------------------------------------------------------- /prow/cmd/plank/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/plank 5 | -------------------------------------------------------------------------------- /prow/cmd/sinker/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/sinker 5 | -------------------------------------------------------------------------------- /prow/logo_horizontal_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/logo_horizontal_solid.png -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2012 Matt T. Proud (matt.proud@gmail.com) 2 | -------------------------------------------------------------------------------- /experiment/tracer/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | -------------------------------------------------------------------------------- /prow/cmd/checkconfig/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | -------------------------------------------------------------------------------- /prow/cmd/deck/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/cmd/deck/static/favicon.ico -------------------------------------------------------------------------------- /prow/cmd/peribolos/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/peribolos 5 | -------------------------------------------------------------------------------- /prow/cmd/tide/status-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/cmd/tide/status-context.png -------------------------------------------------------------------------------- /prow/docs/logos/logo-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/docs/logos/logo-vertical.png -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-storage-blob-go/azblob/version.go: -------------------------------------------------------------------------------- 1 | package azblob 2 | 3 | const serviceLibVersion = "0.5" 4 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/dialects/mysql/mysql.go: -------------------------------------------------------------------------------- 1 | package mysql 2 | 3 | import _ "github.com/go-sql-driver/mysql" 4 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/dialects/sqlite/sqlite.go: -------------------------------------------------------------------------------- 1 | package sqlite 2 | 3 | import _ "github.com/mattn/go-sqlite3" 4 | -------------------------------------------------------------------------------- /config/jobs/bazelbuild/rules_k8s/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - fejta 5 | -------------------------------------------------------------------------------- /experiment/manual-trigger/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | -------------------------------------------------------------------------------- /experiment/slack-oncall-updater/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | -------------------------------------------------------------------------------- /gubernator/static/favicon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gubernator/static/favicon-green.png -------------------------------------------------------------------------------- /gubernator/static/favicon-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gubernator/static/favicon-yellow.png -------------------------------------------------------------------------------- /kettle/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | google-cloud-pubsub==0.25.0 3 | google-cloud-bigquery==0.24.0 4 | pyyaml 5 | influxdb 6 | -------------------------------------------------------------------------------- /label_sync/syntax_error_example.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | default: 3 | labels: 4 | - name: %invalid name ? 5 | color: "abc 6 | -------------------------------------------------------------------------------- /pkg/benchmarkjunit/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - fejta 6 | -------------------------------------------------------------------------------- /prow/cmd/deck/localdata/.gitignore: -------------------------------------------------------------------------------- 1 | data.js 2 | plugin-help.js 3 | tide.js 4 | tide-history.js 5 | branding.js 6 | pr-data.js 7 | -------------------------------------------------------------------------------- /prow/cmd/deck/static/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/cmd/deck/static/logo-dark.png -------------------------------------------------------------------------------- /prow/cmd/deck/static/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/cmd/deck/static/logo-light.png -------------------------------------------------------------------------------- /prow/cmd/horologium/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/horologium 5 | -------------------------------------------------------------------------------- /prow/docs/logos/logo-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/docs/logos/logo-horizontal.png -------------------------------------------------------------------------------- /prow/jenkins/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/jenkins-operator 5 | -------------------------------------------------------------------------------- /prow/spyglass/spyglass-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/spyglass/spyglass-example.png -------------------------------------------------------------------------------- /docs/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cblecker 5 | - mithrav 6 | - spiffxp 7 | 8 | -------------------------------------------------------------------------------- /prow/external-plugins/refresh/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-k8s-tester/pkg/awsapi/ec2/doc.go: -------------------------------------------------------------------------------- 1 | // Package ec2 implements various AWS EC2 operations. 2 | package ec2 3 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/cloud-provider-aws/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mcrute 5 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-azure/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - andyzhangx 3 | - brendandburns 4 | - feiskyer 5 | - karataliu 6 | - khenidak 7 | -------------------------------------------------------------------------------- /config/tests/jobs/README.md: -------------------------------------------------------------------------------- 1 | # config/tests 2 | 3 | This Directory contains tests for the Kubernetes / upstream test-infra deployment. 4 | -------------------------------------------------------------------------------- /ghproxy/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | labels: 6 | - area/ghproxy 7 | -------------------------------------------------------------------------------- /gubernator/static/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/gubernator/static/octicons/octicons.woff -------------------------------------------------------------------------------- /logexporter/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mborsz 5 | - shyamjvs 6 | - wojtek-t 7 | -------------------------------------------------------------------------------- /prow/cmd/branchprotector/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/branchprotector 5 | -------------------------------------------------------------------------------- /prow/cmd/jenkins-operator/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/jenkins-operator 5 | -------------------------------------------------------------------------------- /prow/cmd/mkbuild-cluster/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/prow/mkbuild-cluster 5 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-k8s-tester/NOTICE: -------------------------------------------------------------------------------- 1 | Awstester 2 | Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /config/jobs/apache-spark-on-k8s/spark-integration/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - foxish 5 | -------------------------------------------------------------------------------- /config/jobs/gke/containerd/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Random-Liu 5 | - yujuhong 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/client-go/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sttts 5 | - nikhita 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/cloud-provider-openstack/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - dims 5 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/generated/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - krzyzacy 5 | - yguo0905 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/kops/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - justinsb 5 | - chrislovecnm 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/node-problem-detector/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - wangzhen127 3 | - Random-Liu 4 | - andyxning 5 | - dchen1107 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-gcp/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - abgworrall 5 | - dashpole 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-storage/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - saad-ali 5 | - msau42 6 | -------------------------------------------------------------------------------- /config/jobs/tensorflow/minigo/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - Kashomon 6 | -------------------------------------------------------------------------------- /jobs/e2e_node/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Random-Liu 5 | - yguo0905 6 | - yujuhong 7 | -------------------------------------------------------------------------------- /prow/cmd/phony/examples/.gitattributes: -------------------------------------------------------------------------------- 1 | # Treat webhook fixtures as generated so they don't clutter PRs 2 | *.json linguist-generated=true 3 | -------------------------------------------------------------------------------- /prow/crier/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - krzyzacy 5 | labels: 6 | - area/prow/crier 7 | -------------------------------------------------------------------------------- /prow/gerrit/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - krzyzacy 5 | labels: 6 | - area/prow/gerrit 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/slack-infra/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | - jeefy 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-instrumentation/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - piosz 5 | - brancz 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-scheduling/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - bsalamat 5 | - k82cn 6 | -------------------------------------------------------------------------------- /experiment/coverage/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - oomichi 5 | approvers: 6 | - oomichi 7 | -------------------------------------------------------------------------------- /maintenance/aws-janitor/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - liztio 5 | - justinsb 6 | - detiber 7 | -------------------------------------------------------------------------------- /prow/cmd/crier/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - krzyzacy 5 | labels: 6 | - area/prow/crier 7 | -------------------------------------------------------------------------------- /prow/cmd/deck/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | labels: 6 | - area/prow/deck 7 | -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/service/ec2/errors.go: -------------------------------------------------------------------------------- 1 | // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. 2 | 3 | package ec2 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/generate.go: -------------------------------------------------------------------------------- 1 | package cpuid 2 | 3 | //go:generate go run private-gen.go 4 | //go:generate gofmt -w ./private 5 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-api-machinery/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - lavalamp 5 | - deads2k 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-autoscaling/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - directxman12 5 | - mwielgus 6 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-cli/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - AdoHe 5 | - pwittrock 6 | - soltysh 7 | -------------------------------------------------------------------------------- /kettle/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | - spiffxp 6 | 7 | labels: 8 | - area/kettle 9 | -------------------------------------------------------------------------------- /metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - spiffxp 6 | 7 | labels: 8 | - area/metrics 9 | -------------------------------------------------------------------------------- /planter/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - BenTheElder 5 | - ixdy 6 | 7 | labels: 8 | - area/planter 9 | -------------------------------------------------------------------------------- /prow/cmd/clonerefs/ssh_config: -------------------------------------------------------------------------------- 1 | Host github.com 2 | HostName github.com 3 | User git 4 | UserKnownHostsFile /dev/null 5 | StrictHostKeyChecking no -------------------------------------------------------------------------------- /prow/cmd/mkpod/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/mkpod 7 | -------------------------------------------------------------------------------- /prow/external-plugins/cherrypicker/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - kargakis 5 | - stevekuznetsov 6 | -------------------------------------------------------------------------------- /triage/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | - spiffxp 6 | 7 | labels: 8 | - area/triage 9 | -------------------------------------------------------------------------------- /boskos/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - krzyzacy 5 | - sebastienvas 6 | 7 | labels: 8 | - area/boskos 9 | -------------------------------------------------------------------------------- /config/jobs/GoogleCloudPlatform/k8s-multicluster-ingress/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - nikhiljindal 5 | -------------------------------------------------------------------------------- /config/jobs/containerd/cri/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - yujuhong 5 | - Random-Liu 6 | - dchen1107 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-apps/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mattfarina 5 | - prydonius 6 | - kow3ns 7 | -------------------------------------------------------------------------------- /gopherage/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - Katharine 5 | - spiffxp 6 | 7 | labels: 8 | - area/gopherage 9 | -------------------------------------------------------------------------------- /testgrid/extension/testgrid_alerter/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/testgrid/extension/testgrid_alerter/images/icon.png -------------------------------------------------------------------------------- /config/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - krzyzacy 5 | - spiffxp 6 | - wojtek-t 7 | labels: 8 | - area/config 9 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-csi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - msau42 5 | - saad-ali 6 | reviewers: 7 | - pohly 8 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/kind/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - bentheelder 5 | - munnerz 6 | - neolit123 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-aws/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - chrislovecnm 5 | - justinsb 6 | - shyamjvs 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-node/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - yujuhong 5 | - Random-Liu 6 | - dchen1107 7 | -------------------------------------------------------------------------------- /triage/README.md: -------------------------------------------------------------------------------- 1 | # Triage 2 | 3 | // TODO(rmmh): fill this in 4 | 5 | ### updating JS deps 6 | 7 | See: `package.json` + `bazel run @yarn//:yarn install` 8 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/sig-windows/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - PatrickLang 5 | - adelina-t 6 | - bclau 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/cloud-provider-gcp/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - awly 5 | - mikedanese 6 | - calebmiles 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-release/cip/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - dims 5 | - hh 6 | - listx 7 | - tpepper 8 | -------------------------------------------------------------------------------- /experiment/maintenance/README.md: -------------------------------------------------------------------------------- 1 | ## experiment/maintenance 2 | 3 | This directory contains hacky scripts / tools used to maintain the Kubernetes Prow deployment. 4 | -------------------------------------------------------------------------------- /prow/spyglass/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - paulangton 5 | - Katharine 6 | labels: 7 | - area/prow/spyglass 8 | -------------------------------------------------------------------------------- /config/jobs/.yamllint.conf: -------------------------------------------------------------------------------- 1 | extends: default 2 | 3 | rules: 4 | indentation: disable 5 | document-start: disable 6 | comments: disable 7 | line-length: disable 8 | -------------------------------------------------------------------------------- /config/jobs/kubeflow/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - abhi-g 5 | - jlewi 6 | - kunmingg 7 | - lluunn 8 | - richardsliu 9 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/cloud-provider-alibaba-cloud/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - aoxn 5 | - cheyang 6 | - xlgao-zju 7 | -------------------------------------------------------------------------------- /images/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - ixdy 5 | - krzyzacy 6 | - spiffxp 7 | 8 | labels: 9 | - area/images 10 | -------------------------------------------------------------------------------- /prow/artifact-uploader/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/artifact-uploader 7 | -------------------------------------------------------------------------------- /prow/statusreconciler/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/status-reconciler 7 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/aws-alb-ingress-controller/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - bigkraig 5 | - M00nF1sh 6 | - gyuho 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/aws-ebs-csi-driver/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - leakingtapan 5 | - gyuho 6 | - bertinatto 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/gcp-filestore-csi-driver/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - davidz627 5 | - msau42 6 | - saad-ali 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/kube-batch/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - k82cn 5 | - animeshsingh 6 | - hex108 7 | - hzxuzhonghu -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/structured-merge-diff/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - lavalamp 5 | - apelisse 6 | - jennybuckley -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/testing_frameworks/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - hoegaarden 6 | - totherme 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/publishing-bot/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - caesarxuchao 5 | - mfojtik 6 | - nikhita 7 | - sttts 8 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-gcp/gpu/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - jiayingz 5 | - mindprince 6 | - vishh 7 | - yguo0905 8 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-scalability/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mborsz 5 | - mm4tt 6 | - shyamjvs 7 | - wojtek-t 8 | -------------------------------------------------------------------------------- /experiment/logviewer/README.md: -------------------------------------------------------------------------------- 1 | # LogViewer 2 | 3 | LogViewer is a browser tool to view, search and analyse logs from test builds. 4 | 5 | TODO(mborsz): Add more info here. 6 | -------------------------------------------------------------------------------- /jenkins/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - fejta 6 | - krzyzacy 7 | 8 | labels: 9 | - area/jenkins 10 | -------------------------------------------------------------------------------- /prow/cmd/artifact-uploader/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/artifact-uploader 7 | -------------------------------------------------------------------------------- /prow/cmd/status-reconciler/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/status-reconciler 7 | -------------------------------------------------------------------------------- /prow/plugins/approve/approvers/images/directory_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodido/test-infra/master/prow/plugins/approve/approvers/images/directory_structure.png -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- 1 | AWS SDK for Go 2 | Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | Copyright 2014-2015 Stripe, Inc. 4 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/poseidon/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - ICGog 5 | - ms705 6 | - shivramsrivastava 7 | - m1093782566 8 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/cluster-registry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - font 5 | - madhusudancs 6 | - perotinus 7 | - pmorie 8 | -------------------------------------------------------------------------------- /greenhouse/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - amwat 5 | - BenTheElder 6 | - ixdy 7 | 8 | labels: 9 | - area/greenhouse 10 | -------------------------------------------------------------------------------- /prow/cmd/config-bootstrapper/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/config-bootstrapper 7 | -------------------------------------------------------------------------------- /prow/pod-utils/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - stevekuznetsov 6 | 7 | labels: 8 | - area/prow/pod-utilities 9 | -------------------------------------------------------------------------------- /prow/sidecar/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - stevekuznetsov 5 | labels: 6 | - area/prow/sidecar 7 | - area/prow/pod-utilities 8 | -------------------------------------------------------------------------------- /robots/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - fejta 6 | - stevekuznetsov 7 | 8 | labels: 9 | - area/robots 10 | -------------------------------------------------------------------------------- /scenarios/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - fejta 6 | - krzyzacy 7 | 8 | labels: 9 | - area/scenarios 10 | -------------------------------------------------------------------------------- /velodrome/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - cjwagner 5 | - krzyzacy 6 | - spiffxp 7 | 8 | labels: 9 | - area/velodrome 10 | -------------------------------------------------------------------------------- /velodrome/variants.yaml: -------------------------------------------------------------------------------- 1 | variants: 2 | fetcher: 3 | COMPONENT: fetcher 4 | token-counter: 5 | COMPONENT: token-counter 6 | transform: 7 | COMPONENT: transform 8 | -------------------------------------------------------------------------------- /config/jobs/helm/charts/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - foxish 5 | - mattfarina 6 | - prydonius 7 | - unguiculus 8 | - viglesiasce 9 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-incubator/service-catalog/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - jberkhahn 5 | - jboyd01 6 | - MHBauer 7 | - nilebox 8 | -------------------------------------------------------------------------------- /config/jobs/kubernetes-sigs/kube-storage-version-migrator/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - caesarxuchao 5 | - deads2k 6 | - lavalamp 7 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-aws/eks/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - gyuho 5 | - shyamjvs 6 | reviewers: 7 | - gyuho 8 | - shyamjvs 9 | -------------------------------------------------------------------------------- /config/jobs/kubernetes/sig-network/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - bowei 5 | - cadmuxe 6 | - jingax10 7 | - rramkumar1 8 | - mrhohn 9 | -------------------------------------------------------------------------------- /gopherage/README.md: -------------------------------------------------------------------------------- 1 | 2 |
