├── docs ├── proposals │ ├── images │ │ └── .gitignore │ ├── pleg.png │ ├── pod-cache.png │ ├── node-allocatable.png │ ├── Kubemark_architecture.png │ ├── federation-high-level-arch.png │ ├── job.md │ ├── deploy.md │ ├── volumes.md │ ├── api-group.md │ ├── apparmor.md │ ├── kubemark.md │ ├── protobuf.md │ ├── templates.md │ ├── deployment.md │ ├── federation.md │ ├── gpu-support.md │ ├── rescheduler.md │ ├── kubelet-auth.md │ ├── rescheduling.md │ ├── scheduledjob.md │ ├── container-init.md │ ├── controller-ref.md │ ├── kubectl-login.md │ ├── multi-platform.md │ ├── network-policy.md │ ├── release-notes.md │ ├── runtimeconfig.md │ └── stateful-apps.md ├── design │ ├── clustering │ │ ├── .gitignore │ │ └── README.md │ ├── README.md │ ├── access.md │ ├── daemon.md │ ├── seccomp.md │ ├── secrets.md │ ├── selinux.md │ ├── security.md │ ├── clustering.md │ ├── configmap.md │ ├── expansion.md │ ├── ha_master.md │ ├── namespaces.md │ ├── networking.md │ ├── principles.md │ ├── resources.md │ ├── versioning.md │ ├── architecture.md │ ├── identifiers.md │ ├── indexed-job.md │ ├── nodeaffinity.md │ ├── podaffinity.md │ ├── resource-qos.md │ ├── extending-api.md │ ├── metadata-policy.md │ ├── admission_control.md │ ├── event_compression.md │ ├── security_context.md │ └── service_accounts.md ├── images │ └── newgui.png ├── devel │ ├── git_workflow.png │ ├── pr_workflow.dia │ ├── pr_workflow.png │ ├── gubernator-images │ │ ├── skipping1.png │ │ ├── skipping2.png │ │ ├── filterpage.png │ │ ├── filterpage1.png │ │ ├── filterpage2.png │ │ ├── filterpage3.png │ │ └── testfailures.png │ ├── local-cluster │ │ ├── k8s-singlenode-docker.png │ │ ├── local.md │ │ ├── docker.md │ │ └── vagrant.md │ ├── README.md │ ├── bazel.md │ ├── collab.md │ ├── godep.md │ ├── issues.md │ ├── owners.md │ ├── go-code.md │ ├── logging.md │ ├── testing.md │ ├── e2e-tests.md │ ├── profiling.md │ ├── scheduler.md │ ├── api_changes.md │ ├── automation.md │ ├── cli-roadmap.md │ ├── controllers.md │ ├── development.md │ ├── flaky-tests.md │ ├── gubernator.md │ ├── how-to-doc.md │ ├── mesos-style.md │ ├── cherry-picks.md │ ├── pull-requests.md │ ├── e2e-node-tests.md │ ├── faster_reviews.md │ ├── getting-builds.md │ ├── kubemark-guide.md │ ├── api-conventions.md │ ├── client-libraries.md │ ├── instrumentation.md │ ├── running-locally.md │ ├── adding-an-APIGroup.md │ ├── coding-conventions.md │ ├── on-call-build-cop.md │ ├── on-call-rotations.md │ ├── kubectl-conventions.md │ ├── scheduler_algorithm.md │ ├── update-release-docs.md │ ├── generating-clientset.md │ ├── on-call-user-support.md │ ├── community-expectations.md │ ├── writing-good-e2e-tests.md │ └── developer-guides │ │ └── vagrant.md ├── OWNERS ├── man │ └── man1 │ │ ├── kube-proxy.1 │ │ ├── kubectl-cp.1 │ │ ├── kubectl-get.1 │ │ ├── kubectl-run.1 │ │ ├── kubectl-set.1 │ │ ├── kubectl-top.1 │ │ ├── kubectl.1 │ │ ├── kubelet.1 │ │ ├── kube-apiserver.1 │ │ ├── kube-scheduler.1 │ │ ├── kubectl-annotate.1 │ │ ├── kubectl-apply.1 │ │ ├── kubectl-attach.1 │ │ ├── kubectl-config.1 │ │ ├── kubectl-convert.1 │ │ ├── kubectl-cordon.1 │ │ ├── kubectl-create.1 │ │ ├── kubectl-delete.1 │ │ ├── kubectl-describe.1 │ │ ├── kubectl-drain.1 │ │ ├── kubectl-edit.1 │ │ ├── kubectl-exec.1 │ │ ├── kubectl-explain.1 │ │ ├── kubectl-expose.1 │ │ ├── kubectl-label.1 │ │ ├── kubectl-logs.1 │ │ ├── kubectl-options.1 │ │ ├── kubectl-patch.1 │ │ ├── kubectl-proxy.1 │ │ ├── kubectl-replace.1 │ │ ├── kubectl-rollout.1 │ │ ├── kubectl-scale.1 │ │ ├── kubectl-stop.1 │ │ ├── kubectl-taint.1 │ │ ├── kubectl-top-node.1 │ │ ├── kubectl-top-pod.1 │ │ ├── kubectl-uncordon.1 │ │ ├── kubectl-version.1 │ │ ├── kubectl-api-versions.1 │ │ ├── kubectl-autoscale.1 │ │ ├── kubectl-certificate.1 │ │ ├── kubectl-cluster-info.1 │ │ ├── kubectl-completion.1 │ │ ├── kubectl-config-set.1 │ │ ├── kubectl-config-unset.1 │ │ ├── kubectl-config-view.1 │ │ ├── kubectl-create-quota.1 │ │ ├── kubectl-create-secret.1 │ │ ├── kubectl-port-forward.1 │ │ ├── kubectl-rollout-pause.1 │ │ ├── kubectl-rollout-undo.1 │ │ ├── kubectl-set-image.1 │ │ ├── kubectl-set-resources.1 │ │ ├── kubectl-set-selector.1 │ │ ├── kube-controller-manager.1 │ │ ├── kubectl-certificate-deny.1 │ │ ├── kubectl-cluster-info-dump.1 │ │ ├── kubectl-config-set-cluster.1 │ │ ├── kubectl-config-set-context.1 │ │ ├── kubectl-config-use-context.1 │ │ ├── kubectl-create-configmap.1 │ │ ├── kubectl-create-deployment.1 │ │ ├── kubectl-create-namespace.1 │ │ ├── kubectl-create-rolebinding.1 │ │ ├── kubectl-create-secret-tls.1 │ │ ├── kubectl-create-service.1 │ │ ├── kubectl-rolling-update.1 │ │ ├── kubectl-rollout-history.1 │ │ ├── kubectl-rollout-resume.1 │ │ ├── kubectl-rollout-status.1 │ │ ├── kubectl-certificate-approve.1 │ │ ├── kubectl-config-current-context.1 │ │ ├── kubectl-config-delete-cluster.1 │ │ ├── kubectl-config-delete-context.1 │ │ ├── kubectl-config-get-clusters.1 │ │ ├── kubectl-config-get-contexts.1 │ │ ├── kubectl-config-set-credentials.1 │ │ ├── kubectl-create-secret-generic.1 │ │ ├── kubectl-create-service-nodeport.1 │ │ ├── kubectl-create-serviceaccount.1 │ │ ├── kubectl-create-clusterrolebinding.1 │ │ ├── kubectl-create-poddisruptionbudget.1 │ │ ├── kubectl-create-service-clusterip.1 │ │ ├── kubectl-create-service-externalname.1 │ │ ├── kubectl-create-service-loadbalancer.1 │ │ └── kubectl-create-secret-docker-registry.1 └── yaml │ └── kubectl │ ├── kubectl.yaml │ ├── kubectl_apply.yaml │ ├── kubectl_attach.yaml │ ├── kubectl_config.yaml │ ├── kubectl_cordon.yaml │ ├── kubectl_cp.yaml │ ├── kubectl_create.yaml │ ├── kubectl_delete.yaml │ ├── kubectl_drain.yaml │ ├── kubectl_edit.yaml │ ├── kubectl_exec.yaml │ ├── kubectl_expose.yaml │ ├── kubectl_get.yaml │ ├── kubectl_label.yaml │ ├── kubectl_logs.yaml │ ├── kubectl_patch.yaml │ ├── kubectl_proxy.yaml │ ├── kubectl_run.yaml │ ├── kubectl_scale.yaml │ ├── kubectl_set.yaml │ ├── kubectl_stop.yaml │ ├── kubectl_taint.yaml │ ├── kubectl_top.yaml │ ├── kubectl_annotate.yaml │ ├── kubectl_autoscale.yaml │ ├── kubectl_certificate.yaml │ ├── kubectl_completion.yaml │ ├── kubectl_convert.yaml │ ├── kubectl_describe.yaml │ ├── kubectl_explain.yaml │ ├── kubectl_options.yaml │ ├── kubectl_replace.yaml │ ├── kubectl_rollout.yaml │ ├── kubectl_top-node.yaml │ ├── kubectl_top-pod.yaml │ ├── kubectl_uncordon.yaml │ ├── kubectl_version.yaml │ ├── kubectl_api-versions.yaml │ ├── kubectl_cluster-info.yaml │ ├── kubectl_port-forward.yaml │ └── kubectl_rolling-update.yaml ├── examples ├── openshift-origin │ ├── secret.json │ ├── .gitignore │ └── openshift-origin-namespace.yaml ├── guestbook-go │ ├── .gitignore │ └── guestbook-page.png ├── storage │ ├── cassandra │ │ ├── java │ │ │ └── .gitignore │ │ └── image │ │ │ └── files │ │ │ ├── java.list │ │ │ ├── cassandra.list │ │ │ └── kubernetes-cassandra.jar │ └── hazelcast │ │ └── hazelcast-service.yaml ├── kubectl-container │ └── .gitignore ├── volumes │ ├── nfs │ │ ├── nfs-data │ │ │ └── index.html │ │ ├── nfs-pv.png │ │ ├── nfs-web-service.yaml │ │ └── nfs-pvc.yaml │ ├── cephfs │ │ └── secret │ │ │ └── ceph-secret.yaml │ ├── rbd │ │ └── secret │ │ │ └── ceph-secret.yaml │ └── vsphere │ │ ├── vsphere-volume-sc-fast.yaml │ │ └── vsphere-volume-pvc.yaml ├── elasticsearch │ ├── service-account.yaml │ └── production_cluster │ │ └── service-account.yaml ├── newrelic │ ├── nrconfig.env │ └── newrelic-config-template.yaml ├── k8petstore │ └── web-server │ │ └── dump.rdb ├── mysql-wordpress-pd │ └── WordPress.png ├── javaweb-tomcat-sidecar │ └── workflow.png ├── OWNERS ├── cluster-dns │ ├── namespace-dev.yaml │ ├── namespace-prod.yaml │ └── dns-backend-service.yaml ├── spark │ ├── namespace-spark-cluster.yaml │ └── zeppelin-service.yaml ├── persistent-volume-provisioning │ ├── gce-pd.yaml │ └── quobyte │ │ └── quobyte-admin-secret.yaml └── nodesjs-mongodb │ └── mongo-service.yaml ├── pkg ├── auth │ ├── group │ │ └── OWNERS │ ├── user │ │ └── OWNERS │ ├── authorizer │ │ └── OWNERS │ ├── handlers │ │ └── OWNERS │ ├── authenticator │ │ └── OWNERS │ └── OWNERS ├── client │ ├── testdata │ │ └── OWNERS │ ├── retry │ │ └── OWNERS │ ├── chaosclient │ │ └── OWNERS │ ├── metrics │ │ └── OWNERS │ ├── testing │ │ └── OWNERS │ └── leaderelection │ │ └── OWNERS ├── api │ ├── events │ │ └── OWNERS │ ├── util │ │ └── OWNERS │ ├── annotations │ │ └── OWNERS │ ├── service │ │ └── OWNERS │ ├── pod │ │ └── OWNERS │ ├── endpoints │ │ └── OWNERS │ └── install │ │ └── OWNERS ├── version │ └── .gitattributes ├── kubelet │ ├── remote │ │ └── OWNERS │ ├── volumemanager │ │ └── OWNERS │ ├── rkt │ │ └── OWNERS │ ├── rktshim │ │ └── OWNERS │ ├── dockertools │ │ └── fixtures │ │ │ └── seccomp │ │ │ ├── test │ │ │ └── sub │ │ │ └── subtest │ ├── eviction │ │ └── OWNERS │ └── OWNERS ├── proxy │ ├── healthcheck │ │ └── OWNERS │ ├── userspace │ │ └── OWNERS │ ├── iptables │ │ └── OWNERS │ ├── config │ │ └── OWNERS │ └── OWNERS ├── quota │ ├── install │ │ └── OWNERS │ ├── evaluator │ │ └── OWNERS │ ├── generic │ │ └── OWNERS │ └── OWNERS ├── registry │ ├── authentication │ │ └── OWNERS │ ├── authorization │ │ └── OWNERS │ ├── apps │ │ └── OWNERS │ ├── batch │ │ └── OWNERS │ ├── rbac │ │ └── OWNERS │ ├── policy │ │ └── OWNERS │ ├── storage │ │ └── OWNERS │ ├── autoscaling │ │ └── OWNERS │ ├── extensions │ │ └── OWNERS │ ├── core │ │ └── OWNERS │ ├── cachesize │ │ └── OWNERS │ └── certificates │ │ └── OWNERS ├── util │ └── goroutinemap │ │ └── OWNERS ├── apis │ ├── storage │ │ └── OWNERS │ ├── imagepolicy │ │ └── OWNERS │ ├── abac │ │ └── OWNERS │ ├── authentication │ │ └── OWNERS │ └── policy │ │ └── OWNERS ├── cloudprovider │ └── providers │ │ ├── aws │ │ └── OWNERS │ │ ├── openstack │ │ └── OWNERS │ │ ├── azure │ │ └── OWNERS │ │ ├── cloudstack │ │ └── OWNERS │ │ ├── photon │ │ └── OWNERS │ │ └── vsphere │ │ └── OWNERS ├── controller │ ├── podgc │ │ └── OWNERS │ ├── serviceaccount │ │ └── OWNERS │ ├── job │ │ └── OWNERS │ ├── route │ │ └── OWNERS │ ├── volume │ │ ├── attachdetach │ │ │ └── OWNERS │ │ ├── persistentvolume │ │ │ └── OWNERS │ │ └── OWNERS │ ├── certificates │ │ └── OWNERS │ ├── namespace │ │ └── OWNERS │ ├── resourcequota │ │ └── OWNERS │ ├── daemon │ │ └── OWNERS │ ├── scheduledjob │ │ └── OWNERS │ ├── disruption │ │ └── OWNERS │ ├── garbagecollector │ │ └── OWNERS │ ├── deployment │ │ └── OWNERS │ ├── node │ │ └── OWNERS │ ├── endpoint │ │ └── OWNERS │ ├── replicaset │ │ └── OWNERS │ ├── replication │ │ └── OWNERS │ ├── service │ │ └── OWNERS │ ├── OWNERS │ ├── informers │ │ └── OWNERS │ ├── statefulset │ │ └── OWNERS │ └── podautoscaler │ │ └── OWNERS ├── genericapiserver │ ├── server │ │ ├── mux │ │ │ └── OWNERS │ │ ├── routes │ │ │ └── OWNERS │ │ ├── filters │ │ │ └── OWNERS │ │ └── openapi │ │ │ └── OWNERS │ ├── endpoints │ │ ├── openapi │ │ │ └── OWNERS │ │ ├── filters │ │ │ └── OWNERS │ │ └── testing │ │ │ └── OWNERS │ └── authorizer │ │ └── OWNERS ├── volume │ ├── util │ │ ├── operationexecutor │ │ │ └── OWNERS │ │ ├── nestedpendingoperations │ │ │ └── OWNERS │ │ └── OWNERS │ ├── photon_pd │ │ └── OWNERS │ └── gce_pd │ │ └── OWNERS ├── kubectl │ └── OWNERS ├── storage │ ├── etcd3 │ │ └── OWNERS │ ├── storagebackend │ │ └── OWNERS │ └── testing │ │ └── OWNERS ├── credentialprovider │ ├── aws │ │ └── OWNERS │ └── gcp │ │ └── OWNERS ├── conversion │ └── queryparams │ │ └── OWNERS └── OWNERS ├── test ├── images │ ├── net │ │ └── .gitignore │ ├── goproxy │ │ └── .gitignore │ ├── netexec │ │ └── .gitignore │ ├── porter │ │ └── .gitignore │ ├── volumes-tester │ │ ├── ceph │ │ │ └── index.html │ │ ├── nfs │ │ │ └── index.html │ │ ├── gluster │ │ │ └── index.html │ │ ├── iscsi │ │ │ ├── initiatorname.iscsi │ │ │ └── block.tar.gz │ │ └── rbd │ │ │ └── block.tar.gz │ └── port-forward-tester │ │ └── .gitignore ├── e2e │ └── e2e-example-config.json ├── fixtures │ ├── doc-yaml │ │ ├── user-guide │ │ │ ├── update-demo │ │ │ │ └── images │ │ │ │ │ ├── kitten │ │ │ │ │ └── html │ │ │ │ │ │ └── data.json │ │ │ │ │ └── nautilus │ │ │ │ │ └── html │ │ │ │ │ └── data.json │ │ │ ├── configmap │ │ │ │ └── configmap.yaml │ │ │ ├── secrets │ │ │ │ └── secret.yaml │ │ │ ├── ingress.yaml │ │ │ └── walkthrough │ │ │ │ └── pod-nginx.yaml │ │ └── admin │ │ │ ├── limitrange │ │ │ └── namespace.yaml │ │ │ ├── resourcequota │ │ │ └── namespace.yaml │ │ │ └── namespaces │ │ │ ├── namespace-dev.json │ │ │ └── namespace-prod.json │ └── pkg │ │ └── kubectl │ │ └── cmd │ │ ├── create │ │ └── tokenreview.json │ │ └── apply │ │ └── service.yaml ├── OWNERS ├── e2e_node │ ├── OWNERS │ └── README.md └── kubemark │ └── resources │ └── kubemark-ns.json ├── cluster ├── saltbase │ ├── salt │ │ ├── kube-proxy │ │ │ └── kubeconfig │ │ ├── kubelet │ │ │ └── kubeconfig │ │ ├── logrotate │ │ │ ├── cron │ │ │ └── docker-containers │ │ ├── fluentd-gcp │ │ │ └── OWNERS │ │ ├── docker │ │ │ ├── docker.list │ │ │ ├── docker-healthcheck.service │ │ │ └── docker-healthcheck.timer │ │ ├── debian-auto-upgrades │ │ │ └── 20auto-upgrades │ │ ├── kube-client-tools.sls │ │ ├── ntp │ │ │ └── init.sls │ │ └── supervisor │ │ │ └── docker.conf │ ├── pillar │ │ ├── logging.sls │ │ ├── privilege.sls │ │ ├── top.sls │ │ └── cluster-params.sls │ └── reactor │ │ └── highstate-new.sls ├── ubuntu │ ├── .gitignore │ └── namespace.yaml ├── azure │ └── .gitignore ├── juju │ ├── bundles │ │ └── OWNERS │ ├── prereqs │ │ └── OWNERS │ ├── layers │ │ ├── OWNERS │ │ └── kubernetes │ │ │ ├── actions.yaml │ │ │ └── tests │ │ │ └── tests.yaml │ └── kube-system-ns.yaml ├── addons │ ├── dns │ │ └── OWNERS │ ├── dns-horizontal-autoscaler │ │ ├── OWNERS │ │ └── MAINTAINERS.md │ ├── fluentd-gcp │ │ └── OWNERS │ ├── cluster-monitoring │ │ └── OWNERS │ ├── fluentd-elasticsearch │ │ └── OWNERS │ ├── addon-manager │ │ └── namespace.yaml │ ├── cluster-loadbalancing │ │ └── MAINTAINERS.md │ └── node-problem-detector │ │ └── MAINTAINERS.md ├── azure-legacy │ └── .gitignore ├── images │ └── hyperkube │ │ └── cni-conf │ │ └── 99-loopback.conf ├── gce │ └── container-linux │ │ └── OWNERS ├── libvirt-coreos │ ├── .gitignore │ ├── namespace.yaml │ ├── forEmptyDirRegistry.sed │ ├── forShellEval.sed │ └── network_kubernetes_pods.xml ├── OWNERS ├── centos │ └── .gitignore ├── vsphere │ └── README.md ├── ovirt │ └── ovirt-cloud.conf └── photon-controller │ └── templates │ └── README ├── third_party ├── forked │ ├── golang │ │ └── reflect │ │ │ └── .readonly │ └── etcd237 │ │ └── README.md └── swagger-ui │ ├── images │ ├── throbber.gif │ ├── logo_small.png │ ├── pet_store_api.png │ ├── wordnik_api.png │ └── explorer_icons.png │ └── fonts │ ├── droid-sans-v6-latin-700.eot │ ├── droid-sans-v6-latin-700.ttf │ ├── droid-sans-v6-latin-700.woff │ ├── droid-sans-v6-latin-700.woff2 │ ├── droid-sans-v6-latin-regular.eot │ ├── droid-sans-v6-latin-regular.ttf │ ├── droid-sans-v6-latin-regular.woff │ └── droid-sans-v6-latin-regular.woff2 ├── cmd ├── libs │ └── go2idl │ │ ├── set-gen │ │ └── .gitignore │ │ ├── client-gen │ │ ├── .import-restrictions │ │ ├── OWNERS │ │ └── README.md │ │ ├── import-boss │ │ └── .gitignore │ │ ├── lister-gen │ │ └── .import-restrictions │ │ ├── go-to-protobuf │ │ ├── .gitignore │ │ └── OWNERS │ │ └── OWNERS ├── mungedocs │ └── testdata │ │ ├── example.txt │ │ └── pod.yaml ├── kubelet │ ├── app │ │ └── OWNERS │ └── OWNERS ├── kubectl │ └── OWNERS ├── kube-aggregator │ └── artifacts │ │ └── local-cluster-up │ │ ├── kubernetes-discovery-sa.yaml │ │ └── etcd-svc.yaml ├── OWNERS └── kubeadm │ └── OWNERS ├── api └── swagger-spec │ ├── authentication.k8s.io_v1.json │ └── storage.authorization.k8s.io_v1beta1.json ├── vendor ├── golang.org │ └── x │ │ ├── sys │ │ └── unix │ │ │ └── .gitignore │ │ ├── net │ │ └── http2 │ │ │ ├── .gitignore │ │ │ └── Makefile │ │ └── oauth2 │ │ ├── AUTHORS │ │ └── CONTRIBUTORS ├── bitbucket.org │ └── bertimus9 │ │ └── systemstat │ │ ├── VERSION │ │ ├── AUTHORS │ │ └── Makefile ├── github.com │ ├── Sirupsen │ │ └── logrus │ │ │ └── .gitignore │ ├── docker │ │ ├── go-connections │ │ │ └── sockets │ │ │ │ └── README.md │ │ ├── docker │ │ │ └── pkg │ │ │ │ ├── mount │ │ │ │ └── mountinfo_windows.go │ │ │ │ └── symlink │ │ │ │ └── fs_unix.go │ │ └── engine-api │ │ │ └── client │ │ │ ├── client_darwin.go │ │ │ └── client_windows.go │ ├── lpabon │ │ └── godbc │ │ │ ├── AUTHORS │ │ │ └── .travis.yml │ ├── mistifyio │ │ └── go-zfs │ │ │ └── .gitignore │ ├── pelletier │ │ ├── go-buffruneio │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ │ └── go-toml │ │ │ ├── .gitignore │ │ │ └── clean.sh │ ├── robfig │ │ └── cron │ │ │ ├── .travis.yml │ │ │ └── README.md │ ├── elazarl │ │ └── goproxy │ │ │ └── .gitignore │ ├── go-openapi │ │ ├── swag │ │ │ └── .gitignore │ │ ├── jsonpointer │ │ │ └── .gitignore │ │ ├── jsonreference │ │ │ └── .gitignore │ │ ├── spec │ │ │ └── .gitignore │ │ ├── analysis │ │ │ └── .gitignore │ │ ├── errors │ │ │ └── .gitignore │ │ ├── strfmt │ │ │ └── .gitignore │ │ ├── runtime │ │ │ └── .gitignore │ │ ├── validate │ │ │ └── .gitignore │ │ └── loads │ │ │ └── .gitignore │ ├── google │ │ └── btree │ │ │ └── .travis.yml │ ├── vmware │ │ └── govmomi │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── CONTRIBUTORS │ ├── mreiferson │ │ └── go-httpclient │ │ │ └── .gitignore │ ├── dgrijalva │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── doc.go │ ├── emicklei │ │ └── go-restful │ │ │ ├── Srcfile │ │ │ └── coverage.sh │ ├── jteeuwen │ │ └── go-bindata │ │ │ ├── Makefile │ │ │ └── LICENSE │ ├── kr │ │ ├── pty │ │ │ ├── .gitignore │ │ │ ├── types.go │ │ │ ├── ztypes_386.go │ │ │ ├── ztypes_arm.go │ │ │ ├── ztypes_amd64.go │ │ │ ├── ztypes_arm64.go │ │ │ ├── ztypes_ppc64.go │ │ │ ├── ztypes_s390x.go │ │ │ ├── ztypes_ppc64le.go │ │ │ ├── pty_unsupported.go │ │ │ └── ioctl.go │ │ └── fs │ │ │ └── Readme │ ├── boltdb │ │ └── bolt │ │ │ ├── .gitignore │ │ │ └── boltsync_unix.go │ ├── imdario │ │ └── mergo │ │ │ └── .travis.yml │ ├── pborman │ │ └── uuid │ │ │ └── CONTRIBUTORS │ ├── hashicorp │ │ └── hcl │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── spf13 │ │ ├── viper │ │ │ └── nohup.out │ │ └── cobra │ │ │ ├── command_notwin.go │ │ │ └── .mailmap │ ├── onsi │ │ ├── ginkgo │ │ │ ├── .gitignore │ │ │ └── ginkgo │ │ │ │ └── interrupthandler │ │ │ │ └── sigquit_swallower_windows.go │ │ └── gomega │ │ │ ├── .gitignore │ │ │ └── matchers │ │ │ └── support │ │ │ └── goraph │ │ │ ├── node │ │ │ └── node.go │ │ │ └── util │ │ │ └── util.go │ ├── abbot │ │ └── go-http-auth │ │ │ ├── .gitignore │ │ │ ├── test.htdigest │ │ │ └── test.htpasswd │ ├── prometheus │ │ ├── client_golang │ │ │ └── prometheus │ │ │ │ └── .gitignore │ │ ├── procfs │ │ │ ├── .travis.yml │ │ │ └── Makefile │ │ ├── client_model │ │ │ └── NOTICE │ │ └── common │ │ │ └── NOTICE │ ├── mvdan │ │ └── xurls │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── rackspace │ │ └── gophercloud │ │ │ ├── openstack │ │ │ ├── common │ │ │ │ └── extensions │ │ │ │ │ └── errors.go │ │ │ ├── compute │ │ │ │ └── v2 │ │ │ │ │ └── extensions │ │ │ │ │ ├── volumeattach │ │ │ │ │ └── doc.go │ │ │ │ │ └── diskconfig │ │ │ │ │ └── doc.go │ │ │ └── identity │ │ │ │ ├── v3 │ │ │ │ └── tokens │ │ │ │ │ └── urls.go │ │ │ │ └── v2 │ │ │ │ └── tenants │ │ │ │ └── urls.go │ │ │ ├── testhelper │ │ │ └── doc.go │ │ │ ├── pagination │ │ │ └── pkg.go │ │ │ └── rackspace │ │ │ ├── compute │ │ │ └── v2 │ │ │ │ ├── volumeattach │ │ │ │ └── doc.go │ │ │ │ └── servers │ │ │ │ └── doc.go │ │ │ ├── identity │ │ │ └── v2 │ │ │ │ └── tokens │ │ │ │ └── doc.go │ │ │ └── blockstorage │ │ │ └── v1 │ │ │ └── volumes │ │ │ └── doc.go │ ├── ugorji │ │ └── go │ │ │ └── codec │ │ │ ├── prebuild.go │ │ │ └── codecgen │ │ │ └── z.go │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ │ └── urlesc │ │ │ └── .travis.yml │ ├── exponent-io │ │ └── jsonpath │ │ │ └── .travis.yml │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── pkg │ │ ├── sftp │ │ │ ├── CONTRIBUTORS │ │ │ ├── release.go │ │ │ ├── debug.go │ │ │ ├── .gitignore │ │ │ └── attrs_stubs.go │ │ └── errors │ │ │ └── .travis.yml │ ├── gorilla │ │ ├── mux │ │ │ └── .travis.yml │ │ └── context │ │ │ └── .travis.yml │ ├── opencontainers │ │ └── runc │ │ │ └── libcontainer │ │ │ ├── cgroups │ │ │ ├── fs │ │ │ │ └── fs_unsupported.go │ │ │ └── cgroups_unsupported.go │ │ │ ├── criurpc │ │ │ └── Makefile │ │ │ ├── stacktrace │ │ │ └── stacktrace.go │ │ │ ├── stats_freebsd.go │ │ │ ├── stats_windows.go │ │ │ ├── user │ │ │ └── MAINTAINERS │ │ │ ├── configs │ │ │ ├── namespaces.go │ │ │ ├── cgroup_unsupported.go │ │ │ └── cgroup_windows.go │ │ │ ├── stats_solaris.go │ │ │ └── criu_opts_windows.go │ ├── russross │ │ └── blackfriday │ │ │ └── .gitignore │ ├── square │ │ └── go-jose │ │ │ ├── .gitignore │ │ │ └── .gitcookies.sh.enc │ ├── vishvananda │ │ └── netlink │ │ │ └── .travis.yml │ ├── ghodss │ │ └── yaml │ │ │ └── .travis.yml │ ├── godbus │ │ └── dbus │ │ │ ├── MAINTAINERS │ │ │ └── transport_darwin.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── xyproto │ │ └── simpleredis │ │ │ ├── .travis.yml │ │ │ └── TODO.md │ ├── stretchr │ │ └── objx │ │ │ └── README.md │ ├── go-ini │ │ └── ini │ │ │ └── .gitignore │ ├── mesos │ │ └── mesos-go │ │ │ ├── upid │ │ │ └── doc.go │ │ │ ├── mesosutil │ │ │ └── constants.go │ │ │ └── detector │ │ │ └── zoo │ │ │ └── doc.go │ ├── clusterhq │ │ └── flocker-go │ │ │ └── doc.go │ ├── coreos │ │ ├── go-oidc │ │ │ ├── oidc │ │ │ │ └── interface.go │ │ │ ├── http │ │ │ │ └── client.go │ │ │ └── NOTICE │ │ ├── etcd │ │ │ └── NOTICE │ │ └── pkg │ │ │ └── NOTICE │ ├── grpc-ecosystem │ │ └── grpc-gateway │ │ │ ├── utilities │ │ │ └── doc.go │ │ │ └── runtime │ │ │ └── doc.go │ ├── howeyc │ │ └── gopass │ │ │ └── .travis.yml │ ├── Azure │ │ └── go-ansiterm │ │ │ └── context.go │ ├── aws │ │ └── aws-sdk-go │ │ │ └── NOTICE.txt │ ├── renstrom │ │ └── dedent │ │ │ └── .travis.yml │ ├── Microsoft │ │ └── go-winio │ │ │ └── syscall.go │ └── asaskevich │ │ └── govalidator │ │ └── .travis.yml ├── k8s.io │ ├── apiserver │ ├── client-go │ └── apimachinery ├── gopkg.in │ ├── gcfg.v1 │ │ ├── go1_0.go │ │ ├── types │ │ │ └── doc.go │ │ ├── go1_2.go │ │ └── README │ └── natefinch │ │ └── lumberjack.v2 │ │ └── chown.go └── google.golang.org │ └── grpc │ └── doc.go ├── federation ├── manifests │ ├── .gitignore │ └── federation-ns.yaml ├── pkg │ └── federation-controller │ │ └── OWNERS ├── cmd │ ├── federation-controller-manager │ │ └── OWNERS │ └── federation-apiserver │ │ └── OWNERS └── OWNERS ├── plugin ├── cmd │ └── kube-scheduler │ │ └── OWNERS ├── pkg │ ├── admission │ │ └── OWNERS │ ├── client │ │ └── auth │ │ │ ├── oidc │ │ │ └── OWNERS │ │ │ └── gcp │ │ │ └── OWNERS │ ├── auth │ │ ├── OWNERS │ │ └── authenticator │ │ │ └── token │ │ │ └── oidc │ │ │ └── OWNERS │ └── scheduler │ │ └── OWNERS └── OWNERS ├── logo ├── OWNERS ├── logo.pdf ├── logo.png ├── name_blue.pdf ├── name_blue.png ├── name_white.pdf ├── name_white.png ├── logo_with_border.pdf └── logo_with_border.png ├── staging └── src │ └── k8s.io │ ├── client-go │ ├── _vendor │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── sys │ │ │ │ └── unix │ │ │ │ │ └── .gitignore │ │ │ │ ├── net │ │ │ │ └── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Makefile │ │ │ │ └── oauth2 │ │ │ │ ├── AUTHORS │ │ │ │ └── CONTRIBUTORS │ │ ├── github.com │ │ │ ├── go-openapi │ │ │ │ ├── swag │ │ │ │ │ └── .gitignore │ │ │ │ ├── jsonpointer │ │ │ │ │ └── .gitignore │ │ │ │ ├── jsonreference │ │ │ │ │ └── .gitignore │ │ │ │ └── spec │ │ │ │ │ └── .gitignore │ │ │ ├── emicklei │ │ │ │ └── go-restful │ │ │ │ │ └── Srcfile │ │ │ ├── ugorji │ │ │ │ └── go │ │ │ │ │ └── codec │ │ │ │ │ └── prebuild.go │ │ │ ├── PuerkitoBio │ │ │ │ └── purell │ │ │ │ │ └── .gitignore │ │ │ └── coreos │ │ │ │ ├── go-oidc │ │ │ │ ├── oidc │ │ │ │ │ └── interface.go │ │ │ │ ├── http │ │ │ │ │ └── client.go │ │ │ │ └── NOTICE │ │ │ │ └── pkg │ │ │ │ └── NOTICE │ │ └── k8s.io │ │ │ └── apimachinery │ │ │ └── pkg │ │ │ └── conversion │ │ │ └── OWNERS │ ├── pkg │ │ ├── version │ │ │ └── .gitattributes │ │ ├── apis │ │ │ ├── storage │ │ │ │ └── OWNERS │ │ │ ├── imagepolicy │ │ │ │ └── OWNERS │ │ │ └── authentication │ │ │ │ └── OWNERS │ │ └── api │ │ │ └── install │ │ │ └── OWNERS │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── oidc │ │ │ └── OWNERS │ │ │ └── gcp │ │ │ └── OWNERS │ ├── tools │ │ └── metrics │ │ │ └── OWNERS │ ├── transport │ │ └── OWNERS │ └── Godeps │ │ └── Readme │ ├── apiserver │ ├── pkg │ │ ├── endpoints │ │ │ ├── request │ │ │ │ └── OWNERS │ │ │ └── metrics │ │ │ │ └── OWNERS │ │ ├── authentication │ │ │ └── request │ │ │ │ └── x509 │ │ │ │ └── testdata │ │ │ │ ├── client.csr.json │ │ │ │ ├── root.csr.json │ │ │ │ └── intermediate.csr.json │ │ └── admission │ │ │ └── OWNERS │ └── .import-restrictions │ └── apimachinery │ └── pkg │ ├── OWNERS │ └── conversion │ └── OWNERS ├── hack ├── jenkins │ └── OWNERS ├── autogenerated_placeholder.txt └── testdata │ ├── prune-reap │ ├── a.yml │ └── b.yml │ ├── pod.yaml │ ├── prune │ ├── a.yaml │ └── b.yaml │ └── pod-apply.yaml ├── translations ├── test │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── k8s.mo │ └── default │ │ └── LC_MESSAGES │ │ └── k8s.mo └── kubectl │ ├── default │ └── LC_MESSAGES │ │ └── k8s.mo │ └── en_US │ └── LC_MESSAGES │ └── k8s.mo └── Godeps └── Readme /docs/proposals/images/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/openshift-origin/secret.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/auth/group/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | -------------------------------------------------------------------------------- /pkg/auth/user/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | -------------------------------------------------------------------------------- /test/images/net/.gitignore: -------------------------------------------------------------------------------- 1 | /net 2 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/kube-proxy/kubeconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/kubelet/kubeconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/auth/authorizer/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | -------------------------------------------------------------------------------- /pkg/auth/handlers/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | -------------------------------------------------------------------------------- /test/images/goproxy/.gitignore: -------------------------------------------------------------------------------- 1 | goproxy 2 | -------------------------------------------------------------------------------- /test/images/netexec/.gitignore: -------------------------------------------------------------------------------- 1 | netexec 2 | -------------------------------------------------------------------------------- /third_party/forked/golang/reflect/.readonly: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/set-gen/.gitignore: -------------------------------------------------------------------------------- 1 | set-gen 2 | -------------------------------------------------------------------------------- /cmd/mungedocs/testdata/example.txt: -------------------------------------------------------------------------------- 1 | some text 2 | -------------------------------------------------------------------------------- /examples/openshift-origin/.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | -------------------------------------------------------------------------------- /pkg/auth/authenticator/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | -------------------------------------------------------------------------------- /pkg/client/testdata/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: [] 2 | -------------------------------------------------------------------------------- /api/swagger-spec/authentication.k8s.io_v1.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cluster/ubuntu/.gitignore: -------------------------------------------------------------------------------- 1 | binaries 2 | kubedns* 3 | -------------------------------------------------------------------------------- /examples/guestbook-go/.gitignore: -------------------------------------------------------------------------------- 1 | guestbook_bin 2 | -------------------------------------------------------------------------------- /examples/storage/cassandra/java/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /pkg/api/events/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - kargakis 3 | -------------------------------------------------------------------------------- /pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /test/images/porter/.gitignore: -------------------------------------------------------------------------------- 1 | porter 2 | .tag 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /cluster/saltbase/pillar/logging.sls: -------------------------------------------------------------------------------- 1 | log_level: "--v=2" 2 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/client-gen/.import-restrictions: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/import-boss/.gitignore: -------------------------------------------------------------------------------- 1 | import-boss 2 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/lister-gen/.import-restrictions: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/design/clustering/.gitignore: -------------------------------------------------------------------------------- 1 | DroidSansMono.ttf 2 | -------------------------------------------------------------------------------- /examples/kubectl-container/.gitignore: -------------------------------------------------------------------------------- 1 | kubectl 2 | .tag 3 | -------------------------------------------------------------------------------- /examples/volumes/nfs/nfs-data/index.html: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /federation/manifests/.gitignore: -------------------------------------------------------------------------------- 1 | /federated-image.tag 2 | -------------------------------------------------------------------------------- /pkg/client/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /pkg/kubelet/remote/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - feiskyer 3 | -------------------------------------------------------------------------------- /test/images/volumes-tester/ceph/index.html: -------------------------------------------------------------------------------- 1 | Hello Ceph! 2 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/bertimus9/systemstat/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/lpabon/godbc/AUTHORS: -------------------------------------------------------------------------------- 1 | lpabon@redhat.com -------------------------------------------------------------------------------- /vendor/github.com/mistifyio/go-zfs/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-buffruneio/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver: -------------------------------------------------------------------------------- 1 | ../../staging/src/k8s.io/apiserver -------------------------------------------------------------------------------- /vendor/k8s.io/client-go: -------------------------------------------------------------------------------- 1 | ../../staging/src/k8s.io/client-go -------------------------------------------------------------------------------- /api/swagger-spec/storage.authorization.k8s.io_v1beta1.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cluster/azure/.gitignore: -------------------------------------------------------------------------------- 1 | _deployments 2 | config-real.sh 3 | -------------------------------------------------------------------------------- /cluster/juju/bundles/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - jlowdermilk 3 | -------------------------------------------------------------------------------- /cmd/kubelet/app/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sig-node-reviewers 3 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /pkg/kubelet/volumemanager/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - saad-ali 3 | -------------------------------------------------------------------------------- /pkg/proxy/healthcheck/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - m1093782566 3 | -------------------------------------------------------------------------------- /pkg/quota/install/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - derekwaynecarr 3 | -------------------------------------------------------------------------------- /pkg/registry/authentication/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | -------------------------------------------------------------------------------- /pkg/registry/authorization/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | -------------------------------------------------------------------------------- /pkg/util/goroutinemap/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - saad-ali 3 | -------------------------------------------------------------------------------- /test/images/volumes-tester/nfs/index.html: -------------------------------------------------------------------------------- 1 | Hello from NFS! 2 | -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/vmware/govmomi/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery: -------------------------------------------------------------------------------- 1 | ../../staging/src/k8s.io/apimachinery -------------------------------------------------------------------------------- /cluster/addons/dns/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - bowei 3 | - mrhohn 4 | -------------------------------------------------------------------------------- /cluster/azure-legacy/.gitignore: -------------------------------------------------------------------------------- 1 | _deployments 2 | config-real.sh 3 | -------------------------------------------------------------------------------- /pkg/apis/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /pkg/cloudprovider/providers/aws/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - justinsb 3 | -------------------------------------------------------------------------------- /pkg/controller/podgc/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - foxish 3 | - gmarek 4 | -------------------------------------------------------------------------------- /pkg/controller/serviceaccount/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - liggitt 3 | -------------------------------------------------------------------------------- /pkg/genericapiserver/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /pkg/genericapiserver/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /pkg/kubelet/rkt/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - euank 3 | - yifan-gu 4 | -------------------------------------------------------------------------------- /pkg/kubelet/rktshim/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - euank 3 | - yifan-gu 4 | -------------------------------------------------------------------------------- /plugin/cmd/kube-scheduler/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - davidopp 3 | -------------------------------------------------------------------------------- /plugin/pkg/admission/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - derekwaynecarr 3 | -------------------------------------------------------------------------------- /plugin/pkg/client/auth/oidc/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - ericchiang 3 | -------------------------------------------------------------------------------- /test/e2e/e2e-example-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider":"local" 3 | } 4 | -------------------------------------------------------------------------------- /test/images/port-forward-tester/.gitignore: -------------------------------------------------------------------------------- 1 | portforwardtester 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- 1 | Miek Gieben 2 | -------------------------------------------------------------------------------- /vendor/github.com/mreiferson/go-httpclient/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[op] 2 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - lavalamp 3 | - wojtek-t 4 | -------------------------------------------------------------------------------- /logo/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | approvers: 4 | - thockin 5 | -------------------------------------------------------------------------------- /pkg/api/util/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | - david-mcmahon 4 | -------------------------------------------------------------------------------- /pkg/controller/job/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - erictune 3 | - soltysh 4 | -------------------------------------------------------------------------------- /pkg/controller/route/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - gmarek 3 | - wojtek-t 4 | -------------------------------------------------------------------------------- /pkg/controller/volume/attachdetach/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - saad-ali 3 | -------------------------------------------------------------------------------- /pkg/registry/apps/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | -------------------------------------------------------------------------------- /pkg/registry/batch/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | -------------------------------------------------------------------------------- /pkg/registry/rbac/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | -------------------------------------------------------------------------------- /pkg/volume/util/operationexecutor/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - saad-ali 3 | -------------------------------------------------------------------------------- /plugin/pkg/auth/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - erictune 3 | - liggitt 4 | -------------------------------------------------------------------------------- /test/images/volumes-tester/gluster/index.html: -------------------------------------------------------------------------------- 1 | Hello from GlusterFS! 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /cluster/juju/prereqs/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - eparis 3 | - david-mcmahon 4 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/go-to-protobuf/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - smarterclayton 3 | -------------------------------------------------------------------------------- /pkg/auth/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - erictune 3 | - liggitt 4 | reviewers: 5 | -------------------------------------------------------------------------------- /pkg/cloudprovider/providers/openstack/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - anguslees 3 | -------------------------------------------------------------------------------- /pkg/genericapiserver/endpoints/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mbohlool 3 | -------------------------------------------------------------------------------- /pkg/kubelet/dockertools/fixtures/seccomp/test: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/registry/policy/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | -------------------------------------------------------------------------------- /pkg/registry/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | -------------------------------------------------------------------------------- /pkg/volume/util/nestedpendingoperations/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - saad-ali 3 | -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C testdata 3 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | tags 3 | test.out 4 | a.out 5 | -------------------------------------------------------------------------------- /pkg/controller/certificates/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mikedanese 4 | -------------------------------------------------------------------------------- /pkg/genericapiserver/server/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | - dims 4 | -------------------------------------------------------------------------------- /pkg/registry/autoscaling/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | -------------------------------------------------------------------------------- /plugin/pkg/auth/authenticator/token/oidc/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - ericchiang 3 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/analysis/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: go get -t 3 | -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Paul Borman 2 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.gitignore: -------------------------------------------------------------------------------- 1 | test_program/test_program_bin 2 | -------------------------------------------------------------------------------- /cluster/addons/dns-horizontal-autoscaler/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - bowei 3 | - mrhohn 4 | -------------------------------------------------------------------------------- /cluster/addons/fluentd-gcp/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - Crassirostris 3 | - piosz 4 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/logrotate/cron: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | logrotate /etc/logrotate.conf 3 | -------------------------------------------------------------------------------- /cmd/kubectl/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - sig-cli-maintainers 3 | reviewers: 4 | - sig-cli 5 | -------------------------------------------------------------------------------- /logo/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/logo.pdf -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/logo.png -------------------------------------------------------------------------------- /pkg/api/annotations/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - dims 3 | - david-mcmahon 4 | - jianhuiz 5 | -------------------------------------------------------------------------------- /pkg/api/service/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - justinsb 3 | - freehan 4 | - david-mcmahon 5 | -------------------------------------------------------------------------------- /pkg/apis/imagepolicy/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | - jianhuiz 5 | -------------------------------------------------------------------------------- /pkg/controller/namespace/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - derekwaynecarr 3 | - smarterclayton 4 | -------------------------------------------------------------------------------- /pkg/controller/resourcequota/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - derekwaynecarr 3 | - deads2k 4 | -------------------------------------------------------------------------------- /pkg/kubectl/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - sig-cli-maintainers 3 | reviewers: 4 | - sig-cli 5 | -------------------------------------------------------------------------------- /pkg/kubelet/dockertools/fixtures/seccomp/sub/subtest: -------------------------------------------------------------------------------- 1 | { 2 | "abc": "def" 3 | } 4 | -------------------------------------------------------------------------------- /plugin/pkg/client/auth/gcp/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - cjcullen 3 | - jlowdermilk 4 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/pkg/endpoints/request/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - sttts 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 1.5 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/nohup.out: -------------------------------------------------------------------------------- 1 | QProcess::start: Process is already running 2 | -------------------------------------------------------------------------------- /cluster/addons/cluster-monitoring/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - DirectXMan12 3 | - piosz 4 | -------------------------------------------------------------------------------- /cluster/images/hyperkube/cni-conf/99-loopback.conf: -------------------------------------------------------------------------------- 1 | { 2 | "type": "loopback" 3 | } 4 | -------------------------------------------------------------------------------- /cluster/juju/layers/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - jsafrane 3 | - david-mcmahon 4 | - ivan4th 5 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/fluentd-gcp/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - Crassirostris 3 | - piosz 4 | -------------------------------------------------------------------------------- /pkg/api/pod/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - kargakis 4 | - david-mcmahon 5 | -------------------------------------------------------------------------------- /pkg/cloudprovider/providers/azure/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - brendandburns 3 | - colemickens 4 | -------------------------------------------------------------------------------- /pkg/controller/daemon/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mikedanese 3 | - kargakis 4 | - lukaszo 5 | -------------------------------------------------------------------------------- /pkg/controller/scheduledjob/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - erictune 3 | - janetkuo 4 | - soltysh 5 | -------------------------------------------------------------------------------- /pkg/kubelet/eviction/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - derekwaynecarr 3 | - vishh 4 | - dchen1107 5 | -------------------------------------------------------------------------------- /pkg/registry/extensions/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - hongchaodeng 4 | - mbohlool 5 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TODO 3 | tmp/**/* 4 | *.coverprofile -------------------------------------------------------------------------------- /cluster/addons/fluentd-elasticsearch/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - Crassirostris 3 | - piosz 4 | -------------------------------------------------------------------------------- /logo/name_blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/name_blue.pdf -------------------------------------------------------------------------------- /logo/name_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/name_blue.png -------------------------------------------------------------------------------- /logo/name_white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/name_white.pdf -------------------------------------------------------------------------------- /logo/name_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/name_white.png -------------------------------------------------------------------------------- /pkg/genericapiserver/authorizer/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - dims 4 | - ericchiang 5 | -------------------------------------------------------------------------------- /pkg/volume/photon_pd/OWNERS: -------------------------------------------------------------------------------- 1 | maintainers: 2 | - luomiao 3 | - kerneltime 4 | - abrarshivani 5 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/pkg/apis/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/plugin/pkg/client/auth/oidc/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - ericchiang 3 | -------------------------------------------------------------------------------- /vendor/github.com/abbot/go-http-auth/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.a 3 | *.6 4 | *.out 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/kr/fs/Readme: -------------------------------------------------------------------------------- 1 | Filesystem Package 2 | 3 | http://godoc.org/github.com/kr/fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /cluster/gce/container-linux/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - euank 3 | - yifan-gu 4 | - ethernetdan 5 | -------------------------------------------------------------------------------- /cluster/libvirt-coreos/.gitignore: -------------------------------------------------------------------------------- 1 | /libvirt_storage_pool/ 2 | /coreos_production_qemu_image.img.bz2 3 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/client-gen/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - lavalamp 3 | - wojtek-t 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /docs/images/newgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/images/newgui.png -------------------------------------------------------------------------------- /pkg/controller/disruption/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mml 3 | - davidopp 4 | - kargakis 5 | - mwielgus 6 | -------------------------------------------------------------------------------- /pkg/controller/garbagecollector/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | - lavalamp 4 | - deads2k 5 | -------------------------------------------------------------------------------- /pkg/genericapiserver/endpoints/filters/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - sttts 4 | - soltysh 5 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | *.cov 4 | *.out 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/validate/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | *.cov 4 | *.out 5 | -------------------------------------------------------------------------------- /vendor/github.com/mvdan/xurls/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4.3 5 | - 1.5.1 6 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/openstack/common/extensions/errors.go: -------------------------------------------------------------------------------- 1 | package extensions 2 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /cluster/ubuntu/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kube-system 5 | -------------------------------------------------------------------------------- /docs/proposals/pleg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/proposals/pleg.png -------------------------------------------------------------------------------- /hack/jenkins/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - test-infra-maintainers 3 | reviewers: 4 | - test-infra-maintainers 5 | -------------------------------------------------------------------------------- /pkg/cloudprovider/providers/cloudstack/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - ngtuna 3 | - runseb 4 | - svanharmelen 5 | -------------------------------------------------------------------------------- /pkg/cloudprovider/providers/photon/OWNERS: -------------------------------------------------------------------------------- 1 | maintainers: 2 | - luomiao 3 | - kerneltime 4 | - abrarshivani 5 | -------------------------------------------------------------------------------- /pkg/controller/volume/persistentvolume/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - jsafrane 3 | - saad-ali 4 | - thockin 5 | -------------------------------------------------------------------------------- /pkg/storage/etcd3/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - timothysc 4 | - madhusudancs 5 | - hongchaodeng 6 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/pkg/endpoints/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - jimmidyson 4 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /test/images/volumes-tester/iscsi/initiatorname.iscsi: -------------------------------------------------------------------------------- 1 | InitiatorName=iqn.1994-05.com.redhat:eb59fbe2c4c5 2 | -------------------------------------------------------------------------------- /vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/github.com/abbot/go-http-auth/test.htdigest: -------------------------------------------------------------------------------- 1 | test:example.com:aa78524fceb0e50fd8ca96dd818b8cf9 2 | -------------------------------------------------------------------------------- /vendor/github.com/exponent-io/jsonpath/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.5 5 | - tip 6 | -------------------------------------------------------------------------------- /cluster/juju/kube-system-ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kube-system 5 | -------------------------------------------------------------------------------- /docs/devel/git_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/git_workflow.png -------------------------------------------------------------------------------- /docs/devel/pr_workflow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/pr_workflow.dia -------------------------------------------------------------------------------- /docs/devel/pr_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/pr_workflow.png -------------------------------------------------------------------------------- /logo/logo_with_border.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/logo_with_border.pdf -------------------------------------------------------------------------------- /logo/logo_with_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/logo/logo_with_border.png -------------------------------------------------------------------------------- /pkg/controller/deployment/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - janetkuo 3 | - nikhiljindal 4 | - kargakis 5 | - mfojtik 6 | -------------------------------------------------------------------------------- /pkg/controller/node/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - gmarek 3 | - smarterclayton 4 | - ingvagabund 5 | - aveshagarwal 6 | -------------------------------------------------------------------------------- /pkg/quota/evaluator/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - deads2k 4 | - derekwaynecarr 5 | - vishh 6 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/bertimus9/systemstat/AUTHORS: -------------------------------------------------------------------------------- 1 | [Phillip](http://bitbucket.org/bertimus9) -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/loads/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | profile.cov 4 | profile.out 5 | -------------------------------------------------------------------------------- /vendor/github.com/jmespath/go-jmespath/.gitignore: -------------------------------------------------------------------------------- 1 | jpgo 2 | jmespath-fuzz.zip 3 | cpu.out 4 | go-jmespath.test 5 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Dave Cheney 2 | Saulius Gurklys 3 | -------------------------------------------------------------------------------- /cluster/libvirt-coreos/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kube-system 5 | -------------------------------------------------------------------------------- /docs/proposals/pod-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/proposals/pod-cache.png -------------------------------------------------------------------------------- /pkg/controller/endpoint/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - bprashanth 3 | - bowei 4 | - MrHohn 5 | - thockin 6 | - mrubin 7 | -------------------------------------------------------------------------------- /pkg/controller/replicaset/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | - kargakis 4 | - lavalamp 5 | - bprashanth 6 | -------------------------------------------------------------------------------- /pkg/controller/replication/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | - kargakis 4 | - lavalamp 5 | - bprashanth 6 | -------------------------------------------------------------------------------- /pkg/controller/service/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - bprashanth 3 | - bowei 4 | - MrHohn 5 | - thockin 6 | - mrubin 7 | -------------------------------------------------------------------------------- /pkg/genericapiserver/server/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - yujuhong 3 | - gmarek 4 | - mbohlool 5 | - philips 6 | -------------------------------------------------------------------------------- /pkg/quota/generic/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - derekwaynecarr 4 | - david-mcmahon 5 | - goltermann 6 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/client.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "My Client" 3 | } -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/pkg/apis/imagepolicy/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | - jianhuiz 5 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/plugin/pkg/client/auth/gcp/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - cjcullen 3 | - jlowdermilk 4 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/user-guide/update-demo/images/kitten/html/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": "kitten.jpg" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/user-guide/update-demo/images/nautilus/html/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": "nautilus.jpg" 3 | } 4 | -------------------------------------------------------------------------------- /cluster/addons/addon-manager/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kube-system 5 | -------------------------------------------------------------------------------- /examples/storage/cassandra/image/files/java.list: -------------------------------------------------------------------------------- 1 | # for jre8 2 | deb http://http.debian.net/debian jessie-backports main 3 | -------------------------------------------------------------------------------- /examples/volumes/nfs/nfs-pv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/examples/volumes/nfs/nfs-pv.png -------------------------------------------------------------------------------- /federation/pkg/federation-controller/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - quinton-hoole 3 | - nikhiljindal 4 | - madhusudancs 5 | -------------------------------------------------------------------------------- /pkg/client/chaosclient/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - liggitt 4 | - davidopp 5 | - eparis 6 | - resouer 7 | -------------------------------------------------------------------------------- /pkg/cloudprovider/providers/vsphere/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - abrarshivani 3 | - imkin 4 | - kerneltime 5 | - luomiao 6 | -------------------------------------------------------------------------------- /pkg/controller/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - bprashanth 3 | - derekwaynecarr 4 | - mikedanese 5 | reviewers: 6 | - deads2k 7 | -------------------------------------------------------------------------------- /pkg/proxy/userspace/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - freehan 6 | - bprashanth 7 | -------------------------------------------------------------------------------- /test/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - fejta 3 | - ixdy 4 | - spxtr 5 | approvers: 6 | - fejta 7 | - ixdy 8 | - spxtr 9 | -------------------------------------------------------------------------------- /test/e2e_node/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - Random-Liu 3 | - timstclair 4 | - vishh 5 | reviewers: 6 | - sig-node-reviewers 7 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.0 5 | - 1.1 6 | - 1.2 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/github.com/mvdan/xurls/.gitignore: -------------------------------------------------------------------------------- 1 | cmd/xurls/xurls 2 | generate/tldsgen/tldsgen 3 | generate/regexgen/regexgen 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /cluster/libvirt-coreos/forEmptyDirRegistry.sed: -------------------------------------------------------------------------------- 1 | s/persistentVolumeClaim:/emptyDir: {}/g 2 | s/claimName: kube-registry-pvc//g 3 | -------------------------------------------------------------------------------- /cluster/libvirt-coreos/forShellEval.sed: -------------------------------------------------------------------------------- 1 | s/\"/\\"/g 2 | s/DNS_SERVER_IP/{DNS_SERVER_IP}/g 3 | s/DNS_DOMAIN/{DNS_DOMAIN}/g 4 | -------------------------------------------------------------------------------- /cluster/saltbase/pillar/privilege.sls: -------------------------------------------------------------------------------- 1 | # If true, allow privileged containers to be created by API 2 | allow_privileged: true 3 | -------------------------------------------------------------------------------- /examples/elasticsearch/service-account.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: elasticsearch 5 | -------------------------------------------------------------------------------- /examples/newrelic/nrconfig.env: -------------------------------------------------------------------------------- 1 | export NRSYSMOND_loglevel=debug 2 | export NRSYSMOND_license_key=REPLACE_LICENSE_KEY_HERE 3 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - caesarxuchao 3 | - deads2k 4 | - lavalamp 5 | - smarterclayton 6 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /third_party/forked/etcd237/README.md: -------------------------------------------------------------------------------- 1 | Forked from etcd 2.3 release branch to support migration from 3.0 WAL to 2.3 WAL format 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/criurpc/Makefile: -------------------------------------------------------------------------------- 1 | gen: criurpc.proto 2 | protoc --go_out=. criurpc.proto 3 | -------------------------------------------------------------------------------- /vendor/github.com/russross/blackfriday/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.swp 3 | *.8 4 | *.6 5 | _obj 6 | _test* 7 | markdown 8 | tags 9 | -------------------------------------------------------------------------------- /vendor/github.com/square/go-jose/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .*.swp 3 | *.out 4 | *.test 5 | *.pem 6 | *.cov 7 | jose-util/jose-util 8 | -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: 3 | - go get github.com/vishvananda/netns 4 | -------------------------------------------------------------------------------- /docs/proposals/node-allocatable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/proposals/node-allocatable.png -------------------------------------------------------------------------------- /federation/cmd/federation-controller-manager/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - quinton-hoole 3 | - nikhiljindal 4 | - madhusundancs 5 | -------------------------------------------------------------------------------- /federation/manifests/federation-ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: {{.FEDERATION_NAMESPACE}} 5 | -------------------------------------------------------------------------------- /pkg/client/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - eparis 4 | - krousey 5 | - jayunit100 6 | - fgrzadkowski 7 | - tmrts 8 | -------------------------------------------------------------------------------- /pkg/controller/informers/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - derekwaynecarr 3 | - caesarxuchao 4 | - wojtek-t 5 | - lavalamp 6 | - deads2k 7 | -------------------------------------------------------------------------------- /pkg/controller/statefulset/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - foxish 3 | - bprashanth 4 | - smarterclayton 5 | - janetkuo 6 | - kargakis 7 | -------------------------------------------------------------------------------- /pkg/controller/volume/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - saad-ali 3 | - jsafrane 4 | - jingxu97 5 | - pmorie 6 | - justinsb 7 | - rootfs 8 | -------------------------------------------------------------------------------- /pkg/proxy/iptables/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - smarterclayton 4 | - bprashanth 5 | - justinsb 6 | - freehan 7 | - dcbw 8 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/admin/limitrange/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: limit-example 5 | -------------------------------------------------------------------------------- /cluster/juju/layers/kubernetes/actions.yaml: -------------------------------------------------------------------------------- 1 | guestbook-example: 2 | description: Launch the guestbook example in your k8s cluster 3 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/docker/docker.list: -------------------------------------------------------------------------------- 1 | deb https://apt.dockerproject.org/repo debian-{{ salt['grains.get']('oscodename') }} main 2 | -------------------------------------------------------------------------------- /examples/k8petstore/web-server/dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/examples/k8petstore/web-server/dump.rdb -------------------------------------------------------------------------------- /federation/cmd/federation-apiserver/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - lavalamp 3 | - smarterclayton 4 | - nikhiljindal 5 | - krousey 6 | -------------------------------------------------------------------------------- /pkg/apis/abac/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - deads2k 5 | - liggitt 6 | - mbohlool 7 | - david-mcmahon 8 | -------------------------------------------------------------------------------- /pkg/controller/podautoscaler/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - DirectXMan12 3 | - mwielgus 4 | - piosz 5 | - jszczepkowski 6 | - fgrzadkowski 7 | -------------------------------------------------------------------------------- /pkg/credentialprovider/aws/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - justinsb 3 | - david-mcmahon 4 | - therc 5 | - lixiaobing10051267 6 | - goltermann 7 | -------------------------------------------------------------------------------- /pkg/storage/storagebackend/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - wojtek-t 5 | - timothysc 6 | - hongchaodeng 7 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/admin/resourcequota/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: quota-example 5 | -------------------------------------------------------------------------------- /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/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/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/github.com/godbus/dbus/MAINTAINERS: -------------------------------------------------------------------------------- 1 | Brandon Philips (@philips) 2 | Brian Waldon (@bcwaldon) 3 | -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-project 2 | *.sublime-workspace 3 | *.un~ 4 | *.swp 5 | .idea/ 6 | *.iml 7 | -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.4.3 4 | - 1.5.3 5 | - 1.6.3 6 | - 1.7 7 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/release.go: -------------------------------------------------------------------------------- 1 | // +build !debug 2 | 3 | package sftp 4 | 5 | func debug(fmt string, args ...interface{}) {} 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/xyproto/simpleredis/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | services: 4 | - redis-server 5 | 6 | go: 7 | - 1.4 8 | -------------------------------------------------------------------------------- /docs/devel/gubernator-images/skipping1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/skipping1.png -------------------------------------------------------------------------------- /docs/devel/gubernator-images/skipping2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/skipping2.png -------------------------------------------------------------------------------- /docs/proposals/Kubemark_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/proposals/Kubemark_architecture.png -------------------------------------------------------------------------------- /examples/guestbook-go/guestbook-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/examples/guestbook-go/guestbook-page.png -------------------------------------------------------------------------------- /examples/mysql-wordpress-pd/WordPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/examples/mysql-wordpress-pd/WordPress.png -------------------------------------------------------------------------------- /pkg/proxy/config/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - brendandburns 6 | - bprashanth 7 | - freehan 8 | -------------------------------------------------------------------------------- /pkg/registry/core/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - deads2k 4 | - caesarxuchao 5 | - justinsb 6 | - hongchaodeng 7 | - juanvallejo 8 | -------------------------------------------------------------------------------- /third_party/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /translations/test/en_US/LC_MESSAGES/k8s.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/translations/test/en_US/LC_MESSAGES/k8s.mo -------------------------------------------------------------------------------- /vendor/github.com/abbot/go-http-auth/test.htpasswd: -------------------------------------------------------------------------------- 1 | test:{SHA}qvTGHdzF6KLavt4PO0gs2a6pQ00= 2 | test2:$apr1$a0j62R97$mYqFkloXH0/UOaUnAiV2b0 3 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- 1 | # objx 2 | 3 | * Jump into the [API Documentation](http://godoc.org/github.com/stretchr/objx) 4 | -------------------------------------------------------------------------------- /cluster/juju/layers/kubernetes/tests/tests.yaml: -------------------------------------------------------------------------------- 1 | tests: "*kubernetes*" 2 | bootstrap: false 3 | reset: false 4 | python_packages: 5 | - tox 6 | -------------------------------------------------------------------------------- /docs/devel/gubernator-images/filterpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/filterpage.png -------------------------------------------------------------------------------- /docs/devel/gubernator-images/filterpage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/filterpage1.png -------------------------------------------------------------------------------- /docs/devel/gubernator-images/filterpage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/filterpage2.png -------------------------------------------------------------------------------- /docs/devel/gubernator-images/filterpage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/filterpage3.png -------------------------------------------------------------------------------- /examples/elasticsearch/production_cluster/service-account.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: elasticsearch 5 | -------------------------------------------------------------------------------- /examples/javaweb-tomcat-sidecar/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/examples/javaweb-tomcat-sidecar/workflow.png -------------------------------------------------------------------------------- /pkg/apis/authentication/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - wojtek-t 4 | - deads2k 5 | - sttts 6 | - timothysc 7 | - mbohlool 8 | - jianhuiz 9 | -------------------------------------------------------------------------------- /pkg/quota/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - derekwaynecarr 3 | - vishh 4 | reviewers: 5 | - smarterclayton 6 | - deads2k 7 | - derekwaynecarr 8 | - vishh 9 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apimachinery/pkg/conversion/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - derekwaynecarr 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | -------------------------------------------------------------------------------- /test/images/volumes-tester/rbd/block.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/test/images/volumes-tester/rbd/block.tar.gz -------------------------------------------------------------------------------- /third_party/swagger-ui/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/images/logo_small.png -------------------------------------------------------------------------------- /translations/test/default/LC_MESSAGES/k8s.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/translations/test/default/LC_MESSAGES/k8s.mo -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/.gitignore: -------------------------------------------------------------------------------- 1 | testdata/conf_out.ini 2 | ini.sublime-project 3 | ini.sublime-workspace 4 | testdata/conf_reflect.ini 5 | -------------------------------------------------------------------------------- /vendor/github.com/mesos/mesos-go/upid/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package upid defines the UPID type and some utilities of the UPID. 3 | */ 4 | package upid 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 4 | - 1.3 5 | - 1.4 6 | - 1.5 7 | - tip 8 | -------------------------------------------------------------------------------- /docs/devel/gubernator-images/testfailures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/gubernator-images/testfailures.png -------------------------------------------------------------------------------- /docs/proposals/federation-high-level-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/proposals/federation-high-level-arch.png -------------------------------------------------------------------------------- /pkg/api/endpoints/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - smarterclayton 4 | - mikedanese 5 | - sttts 6 | - eparis 7 | - resouer 8 | - david-mcmahon 9 | -------------------------------------------------------------------------------- /test/images/volumes-tester/iscsi/block.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/test/images/volumes-tester/iscsi/block.tar.gz -------------------------------------------------------------------------------- /third_party/swagger-ui/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/images/pet_store_api.png -------------------------------------------------------------------------------- /third_party/swagger-ui/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/images/wordnik_api.png -------------------------------------------------------------------------------- /translations/kubectl/default/LC_MESSAGES/k8s.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/translations/kubectl/default/LC_MESSAGES/k8s.mo -------------------------------------------------------------------------------- /translations/kubectl/en_US/LC_MESSAGES/k8s.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/translations/kubectl/en_US/LC_MESSAGES/k8s.mo -------------------------------------------------------------------------------- /vendor/github.com/clusterhq/flocker-go/doc.go: -------------------------------------------------------------------------------- 1 | // flocker package allows you to easily interact with a Flocker Control Service. 2 | package flocker 3 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.5 5 | - 1.6 6 | script: 7 | - go test -race -v -bench=. 8 | -------------------------------------------------------------------------------- /cmd/kube-aggregator/artifacts/local-cluster-up/kubernetes-discovery-sa.yaml: -------------------------------------------------------------------------------- 1 | kind: ServiceAccount 2 | apiVersion: v1 3 | metadata: 4 | name: kube-aggregator -------------------------------------------------------------------------------- /cmd/kubelet/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - dchen1107 3 | - derekwaynecarr 4 | - Random-Liu 5 | - vishh 6 | - yujuhong 7 | reviewers: 8 | - sig-node-reviewers 9 | -------------------------------------------------------------------------------- /examples/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - brendandburns 3 | - thockin 4 | - zmerlynn 5 | approvers: 6 | - brendandburns 7 | - thockin 8 | - zmerlynn 9 | -------------------------------------------------------------------------------- /pkg/kubelet/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - Random-Liu 3 | - dchen1107 4 | - derekwaynecarr 5 | - vishh 6 | - yujuhong 7 | reviewers: 8 | - sig-node-reviewers 9 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - eparis 4 | - krousey 5 | - jayunit100 6 | - fgrzadkowski 7 | - tmrts 8 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - deads2k 5 | - liggitt 6 | - krousey 7 | - caesarxuchao 8 | -------------------------------------------------------------------------------- /test/kubemark/resources/kubemark-ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "kind": "Namespace", 3 | "apiVersion": "v1", 4 | "metadata": { 5 | "name": "kubemark" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /third_party/swagger-ui/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/images/explorer_icons.png -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.0 5 | - 1.1 6 | - 1.2 7 | - 1.3 8 | - 1.4 9 | - tip 10 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/stacktrace/stacktrace.go: -------------------------------------------------------------------------------- 1 | package stacktrace 2 | 3 | type Stacktrace struct { 4 | Frames []Frame 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-buffruneio/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.3.3 5 | - 1.4.3 6 | - 1.5.3 7 | - tip 8 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- 1 | ci: 2 | go fmt 3 | go vet 4 | go test -v ./... 5 | go get github.com/golang/lint/golint 6 | golint *.go 7 | -------------------------------------------------------------------------------- /docs/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - brendandburns 3 | - smarterclayton 4 | - thockin 5 | approvers: 6 | - brendandburns 7 | - smarterclayton 8 | - thockin 9 | -------------------------------------------------------------------------------- /docs/devel/local-cluster/k8s-singlenode-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/docs/devel/local-cluster/k8s-singlenode-docker.png -------------------------------------------------------------------------------- /examples/cluster-dns/namespace-dev.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: "development" 5 | labels: 6 | name: "development" 7 | -------------------------------------------------------------------------------- /examples/cluster-dns/namespace-prod.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: "production" 5 | labels: 6 | name: "production" 7 | -------------------------------------------------------------------------------- /pkg/conversion/queryparams/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - caesarxuchao 5 | - mikedanese 6 | - liggitt 7 | - kargakis 8 | - dims 9 | -------------------------------------------------------------------------------- /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/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/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- 1 | y.output 2 | 3 | # ignore intellij files 4 | .idea 5 | *.iml 6 | *.ipr 7 | *.iws 8 | 9 | *.test 10 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/stats_freebsd.go: -------------------------------------------------------------------------------- 1 | package libcontainer 2 | 3 | type Stats struct { 4 | Interfaces []*NetworkInterface 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/stats_windows.go: -------------------------------------------------------------------------------- 1 | package libcontainer 2 | 3 | type Stats struct { 4 | Interfaces []*NetworkInterface 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS: -------------------------------------------------------------------------------- 1 | Tianon Gravi (@tianon) 2 | Aleksa Sarai (@cyphar) 3 | -------------------------------------------------------------------------------- /vendor/github.com/square/go-jose/.gitcookies.sh.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/vendor/github.com/square/go-jose/.gitcookies.sh.enc -------------------------------------------------------------------------------- /vendor/github.com/xyproto/simpleredis/TODO.md: -------------------------------------------------------------------------------- 1 | * Add all the tests from xyproto/db/db_test.go 2 | * Conform to the IHost interface in xyproto/db/interface.go 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/go1_0.go: -------------------------------------------------------------------------------- 1 | // +build !go1.2 2 | 3 | package gcfg 4 | 5 | type textUnmarshaler interface { 6 | UnmarshalText(text []byte) error 7 | } 8 | -------------------------------------------------------------------------------- /examples/spark/namespace-spark-cluster.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: "spark-cluster" 5 | labels: 6 | name: "spark-cluster" 7 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/types.go: -------------------------------------------------------------------------------- 1 | // +build ignore 2 | 3 | package pty 4 | 5 | import "C" 6 | 7 | type ( 8 | _C_int C.int 9 | _C_uint C.uint 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go: -------------------------------------------------------------------------------- 1 | package node 2 | 3 | type Node struct { 4 | Id int 5 | } 6 | 7 | type NodeOrderedSet []Node 8 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces.go: -------------------------------------------------------------------------------- 1 | package configs 2 | 3 | type NamespaceType string 4 | 5 | type Namespaces []Namespace 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /cluster/saltbase/pillar/top.sls: -------------------------------------------------------------------------------- 1 | base: 2 | '*': 3 | - mine 4 | - cluster-params 5 | - logging 6 | - docker-images 7 | - privilege 8 | - systemd 9 | -------------------------------------------------------------------------------- /pkg/storage/testing/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - liggitt 5 | - erictune 6 | - timothysc 7 | - soltysh 8 | - mml 9 | - feihujiang 10 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/root.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "Root-CA", 3 | "ca": { 4 | "expiry": "876000h" 5 | } 6 | } -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/_vendor/k8s.io/apimachinery/pkg/conversion/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - derekwaynecarr 3 | - lavalamp 4 | - smarterclayton 5 | - wojtek-t 6 | -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-700.eot -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-700.ttf -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-700.woff -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/pkg/apis/authentication/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - wojtek-t 4 | - deads2k 5 | - sttts 6 | - timothysc 7 | - mbohlool 8 | - jianhuiz 9 | -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-700.woff2 -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/context.go: -------------------------------------------------------------------------------- 1 | package ansiterm 2 | 3 | type AnsiContext struct { 4 | currentChar byte 5 | paramBuffer []byte 6 | interBuffer []byte 7 | } 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/github.com/godbus/dbus/transport_darwin.go: -------------------------------------------------------------------------------- 1 | package dbus 2 | 3 | func (t *unixTransport) SendNullByte() error { 4 | _, err := t.Write([]byte{0}) 5 | return err 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/testhelper/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package testhelper container methods that are useful for writing unit tests. 3 | */ 4 | package testhelper 5 | -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/types/doc.go: -------------------------------------------------------------------------------- 1 | // Package types defines helpers for type conversions. 2 | // 3 | // The API for this package is not finalized yet. 4 | package types 5 | -------------------------------------------------------------------------------- /examples/newrelic/newrelic-config-template.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: newrelic-config 5 | type: Opaque 6 | data: 7 | config: {{config_data}} 8 | -------------------------------------------------------------------------------- /examples/openshift-origin/openshift-origin-namespace.yaml: -------------------------------------------------------------------------------- 1 | kind: Namespace 2 | apiVersion: v1 3 | metadata: 4 | name: "openshift-origin" 5 | labels: 6 | name: "openshift-origin" -------------------------------------------------------------------------------- /examples/storage/cassandra/image/files/cassandra.list: -------------------------------------------------------------------------------- 1 | deb http://www.apache.org/dist/cassandra/debian 39x main 2 | deb-src http://www.apache.org/dist/cassandra/debian 39x main 3 | -------------------------------------------------------------------------------- /pkg/registry/cachesize/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - wojtek-t 3 | - bprashanth 4 | - gmarek 5 | - soltysh 6 | - madhusudancs 7 | - mml 8 | - ericchiang 9 | - caseydavenport 10 | -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.eot -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.woff -------------------------------------------------------------------------------- /third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/third_party/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2 -------------------------------------------------------------------------------- /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/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/github.com/jmespath/go-jmespath/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | sudo: false 4 | 5 | go: 6 | - 1.4 7 | 8 | install: go get -v -t ./... 9 | script: make test 10 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !windows,!linux,!freebsd 2 | 3 | package configs 4 | 5 | type Cgroup struct { 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/renstrom/dedent/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.0 5 | - 1.1 6 | - 1.2 7 | - 1.3 8 | - 1.4 9 | - 1.5 10 | 11 | sudo: false 12 | -------------------------------------------------------------------------------- /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/gopkg.in/gcfg.v1/go1_2.go: -------------------------------------------------------------------------------- 1 | // +build go1.2 2 | 3 | package gcfg 4 | 5 | import ( 6 | "encoding" 7 | ) 8 | 9 | type textUnmarshaler encoding.TextUnmarshaler 10 | -------------------------------------------------------------------------------- /cluster/saltbase/reactor/highstate-new.sls: -------------------------------------------------------------------------------- 1 | # This runs highstate only on the NEW node, regardless of type. 2 | highstate_new: 3 | cmd.state.highstate: 4 | - tgt: {{ data['id'] }} 5 | -------------------------------------------------------------------------------- /examples/storage/cassandra/image/files/kubernetes-cassandra.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/kubernetes/master/examples/storage/cassandra/image/files/kubernetes-cassandra.jar -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/debian-auto-upgrades/20auto-upgrades: -------------------------------------------------------------------------------- 1 | APT::Periodic::Update-Package-Lists "1"; 2 | APT::Periodic::Unattended-Upgrade "1"; 3 | 4 | APT::Periodic::AutocleanInterval "7"; 5 | -------------------------------------------------------------------------------- /cmd/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - dchen1107 3 | - lavalamp 4 | - mikedanese 5 | - thockin 6 | approvers: 7 | - dchen1107 8 | - lavalamp 9 | - mikedanese 10 | - thockin 11 | -------------------------------------------------------------------------------- /plugin/pkg/scheduler/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - davidopp 3 | - timothysc 4 | - wojtek-t 5 | reviewers: 6 | - davidopp 7 | - timothysc 8 | - wojtek-t 9 | - jayunit100 10 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/intermediate.csr.json: -------------------------------------------------------------------------------- 1 | { 2 | "CN": "Intermediate-CA", 3 | "ca": { 4 | "expiry": "876000h" 5 | } 6 | } -------------------------------------------------------------------------------- /staging/src/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 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/user-guide/configmap/configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: test-configmap 5 | data: 6 | data-1: value-1 7 | data-2: value-2 8 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/mount/mountinfo_windows.go: -------------------------------------------------------------------------------- 1 | package mount 2 | 3 | func parseMountTable() ([]*Info, error) { 4 | // Do NOT return an error! 5 | return nil, nil 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/mesos/mesos-go/mesosutil/constants.go: -------------------------------------------------------------------------------- 1 | package mesosutil 2 | 3 | const ( 4 | // MesosVersion indicates the supported mesos version. 5 | MesosVersion = "0.24.0" 6 | ) 7 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/interrupthandler/sigquit_swallower_windows.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package interrupthandler 4 | 5 | func SwallowSigQuit() { 6 | //noop 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "math" 4 | 5 | func Odd(n int) bool { 6 | return math.Mod(float64(n), 2.0) == 1.0 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/stats_solaris.go: -------------------------------------------------------------------------------- 1 | package libcontainer 2 | 3 | // Solaris - TODO 4 | 5 | type Stats struct { 6 | Interfaces []*NetworkInterface 7 | } 8 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/kube-client-tools.sls: -------------------------------------------------------------------------------- 1 | /usr/local/bin/kubectl: 2 | file.managed: 3 | - source: salt://kube-bins/kubectl 4 | - user: root 5 | - group: root 6 | - mode: 755 7 | -------------------------------------------------------------------------------- /federation/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - madhusudancs 3 | - mml 4 | - nikhiljindal 5 | - colhom 6 | approvers: 7 | - madhusudancs 8 | - mml 9 | - nikhiljindal 10 | - colhom 11 | -------------------------------------------------------------------------------- /staging/src/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 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/user-guide/secrets/secret.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: test-secret 5 | data: 6 | data-1: dmFsdWUtMQ0K 7 | data-2: dmFsdWUtMg0KDQo= 8 | -------------------------------------------------------------------------------- /test/fixtures/pkg/kubectl/cmd/create/tokenreview.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": "authentication.k8s.io/v1beta1", 3 | "kind": "TokenReview", 4 | "spec": { 5 | "token": "test-token" 6 | } 7 | } -------------------------------------------------------------------------------- /vendor/github.com/mesos/mesos-go/detector/zoo/doc.go: -------------------------------------------------------------------------------- 1 | // Zookeeper-based mesos-master leaderhip detection. 2 | // Implements support for optional detector.AllMasters interface. 3 | package zoo 4 | -------------------------------------------------------------------------------- /examples/volumes/cephfs/secret/ceph-secret.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: ceph-secret 5 | data: 6 | key: QVFCMTZWMVZvRjVtRXhBQTVrQ1FzN2JCajhWVUxSdzI2Qzg0SEE9PQ== 7 | -------------------------------------------------------------------------------- /pkg/volume/util/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - saad-ali 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - pmorie 7 | - saad-ali 8 | - justinsb 9 | - rootfs 10 | - jingxu97 11 | - screeley44 12 | -------------------------------------------------------------------------------- /test/e2e_node/README.md: -------------------------------------------------------------------------------- 1 | See [e2e-node-tests](../../docs/devel/e2e-node-tests.md) 2 | 3 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/test/e2e_node/README.md?pixel)]() 4 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_386.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | package pty 5 | 6 | type ( 7 | _C_int int32 8 | _C_uint uint32 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_arm.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | package pty 5 | 6 | type ( 7 | _C_int int32 8 | _C_uint uint32 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/debug.go: -------------------------------------------------------------------------------- 1 | // +build debug 2 | 3 | package sftp 4 | 5 | import "log" 6 | 7 | func debug(fmt string, args ...interface{}) { 8 | log.Printf(fmt, args...) 9 | } 10 | -------------------------------------------------------------------------------- /vendor/gopkg.in/gcfg.v1/README: -------------------------------------------------------------------------------- 1 | Gcfg reads INI-style configuration files into Go structs; 2 | supports user-defined types and subsections. 3 | 4 | Package docs: https://godoc.org/gopkg.in/gcfg.v1 5 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/ntp/init.sls: -------------------------------------------------------------------------------- 1 | ntp: 2 | pkg: 3 | - installed 4 | 5 | ntp-service: 6 | service: 7 | - running 8 | - name: ntp 9 | - watch: 10 | - pkg: ntp 11 | 12 | -------------------------------------------------------------------------------- /examples/volumes/nfs/nfs-web-service.yaml: -------------------------------------------------------------------------------- 1 | kind: Service 2 | apiVersion: v1 3 | metadata: 4 | name: nfs-web 5 | spec: 6 | ports: 7 | - port: 80 8 | selector: 9 | role: web-frontend 10 | -------------------------------------------------------------------------------- /pkg/registry/certificates/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - deads2k 5 | - mikedanese 6 | - liggitt 7 | - timothysc 8 | - dims 9 | - hongchaodeng 10 | - david-mcmahon 11 | -------------------------------------------------------------------------------- /staging/src/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/github.com/kr/pty/ztypes_amd64.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | package pty 5 | 6 | type ( 7 | _C_int int32 8 | _C_uint uint32 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/vmware/govmomi/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.6 7 | 8 | before_install: 9 | - make vendor 10 | 11 | script: 12 | - make check test 13 | -------------------------------------------------------------------------------- /cmd/mungedocs/testdata/pod.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: nginx 5 | spec: 6 | containers: 7 | - name: nginx 8 | image: nginx 9 | ports: 10 | - containerPort: 80 -------------------------------------------------------------------------------- /docs/devel/README.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/README.md](https://github.com/kubernetes/community/blob/master/contributors/devel/README.md) 2 | -------------------------------------------------------------------------------- /docs/devel/bazel.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/bazel.md](https://github.com/kubernetes/community/blob/master/contributors/devel/bazel.md) 2 | -------------------------------------------------------------------------------- /docs/devel/collab.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/collab.md](https://github.com/kubernetes/community/blob/master/contributors/devel/collab.md) 2 | -------------------------------------------------------------------------------- /docs/devel/godep.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/godep.md](https://github.com/kubernetes/community/blob/master/contributors/devel/godep.md) 2 | -------------------------------------------------------------------------------- /docs/devel/issues.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/issues.md](https://github.com/kubernetes/community/blob/master/contributors/devel/issues.md) 2 | -------------------------------------------------------------------------------- /docs/devel/owners.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/owners.md](https://github.com/kubernetes/community/blob/master/contributors/devel/owners.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kube-proxy.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-cp.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-get.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-run.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-set.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-top.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubelet.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /pkg/api/install/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - deads2k 5 | - caesarxuchao 6 | - liggitt 7 | - nikhiljindal 8 | - dims 9 | - krousey 10 | - david-mcmahon 11 | - feihujiang 12 | -------------------------------------------------------------------------------- /staging/src/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/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- 1 | package winio 2 | 3 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall.go file.go pipe.go sd.go fileinfo.go privilege.go backup.go 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/client_darwin.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | // DefaultDockerHost defines os specific default if DOCKER_HOST is unset 4 | const DefaultDockerHost = "tcp://127.0.0.1:2375" 5 | -------------------------------------------------------------------------------- /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/github.com/pelletier/go-toml/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # fail out of the script if anything here fails 3 | set -e 4 | 5 | # clear out stuff generated by test.sh 6 | rm -rf src test_program_bin toml-test 7 | -------------------------------------------------------------------------------- /docs/devel/go-code.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/go-code.md](https://github.com/kubernetes/community/blob/master/contributors/devel/go-code.md) 2 | -------------------------------------------------------------------------------- /docs/devel/logging.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md](https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md) 2 | -------------------------------------------------------------------------------- /docs/devel/testing.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/testing.md](https://github.com/kubernetes/community/blob/master/contributors/devel/testing.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kube-apiserver.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kube-scheduler.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-annotate.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-apply.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-attach.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-convert.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-cordon.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-delete.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-describe.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-drain.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-edit.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-exec.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-explain.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-expose.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-label.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-logs.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-options.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-patch.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-proxy.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-replace.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rollout.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-scale.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-stop.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-taint.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-top-node.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-top-pod.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-uncordon.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-version.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /examples/cluster-dns/dns-backend-service.yaml: -------------------------------------------------------------------------------- 1 | kind: Service 2 | apiVersion: v1 3 | metadata: 4 | name: dns-backend 5 | spec: 6 | ports: 7 | - port: 8000 8 | selector: 9 | name: dns-backend 10 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/pkg/admission/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - davidopp 3 | - derekwaynecarr 4 | - erictune 5 | - lavalamp 6 | - liggitt 7 | reviewers: 8 | - deads2k 9 | - ncdc 10 | - smarterclayton 11 | -------------------------------------------------------------------------------- /staging/src/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/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/github.com/pkg/sftp/.gitignore: -------------------------------------------------------------------------------- 1 | .*.swo 2 | .*.swp 3 | 4 | server_standalone/server_standalone 5 | 6 | examples/sftp-server/id_rsa 7 | examples/sftp-server/id_rsa.pub 8 | examples/sftp-server/sftp-server 9 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/openstack/compute/v2/extensions/volumeattach/doc.go: -------------------------------------------------------------------------------- 1 | // Package volumeattach provides the ability to attach and detach volumes 2 | // to instances 3 | package volumeattach 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /docs/devel/e2e-tests.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/e2e-tests.md](https://github.com/kubernetes/community/blob/master/contributors/devel/e2e-tests.md) 2 | -------------------------------------------------------------------------------- /docs/devel/profiling.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/profiling.md](https://github.com/kubernetes/community/blob/master/contributors/devel/profiling.md) 2 | -------------------------------------------------------------------------------- /docs/devel/scheduler.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/scheduler.md](https://github.com/kubernetes/community/blob/master/contributors/devel/scheduler.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-api-versions.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-autoscale.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-certificate.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-cluster-info.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-completion.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-set.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-unset.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-view.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-quota.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-secret.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-port-forward.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rollout-pause.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rollout-undo.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-set-image.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-set-resources.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-set-selector.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_apply.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_attach.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_config.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_cordon.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_cp.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_create.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_delete.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_drain.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_edit.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_exec.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_expose.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_get.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_label.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_logs.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_patch.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_proxy.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_run.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_scale.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_set.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_stop.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_taint.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_top.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /hack/autogenerated_placeholder.txt: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /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/github.com/miekg/dns/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Alex A. Skinner 2 | Andrew Tunnell-Jones 3 | Ask Bjørn Hansen 4 | Dave Cheney 5 | Dusty Wilson 6 | Marek Majkowski 7 | Peter van Dijk 8 | Omri Bahumi 9 | Alex Sergeyev 10 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/pagination/pkg.go: -------------------------------------------------------------------------------- 1 | /* 2 | Package pagination contains utilities and convenience structs that implement common pagination idioms within OpenStack APIs. 3 | */ 4 | package pagination 5 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/rackspace/compute/v2/volumeattach/doc.go: -------------------------------------------------------------------------------- 1 | // Package volumeattach provides the ability to attach and detach volume 2 | // to instances to Rackspace servers 3 | package volumeattach 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- 1 | Steve Francia 2 | Bjørn Erik Pedersen 3 | Fabiano Franz 4 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /cluster/saltbase/pillar/cluster-params.sls: -------------------------------------------------------------------------------- 1 | # This file is meant to be replaced with cluster specific parameters if necessary. 2 | 3 | # Examples: 4 | # node_instance_prefix: 5 | -------------------------------------------------------------------------------- /docs/devel/api_changes.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/api_changes.md](https://github.com/kubernetes/community/blob/master/contributors/devel/api_changes.md) 2 | -------------------------------------------------------------------------------- /docs/devel/automation.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/automation.md](https://github.com/kubernetes/community/blob/master/contributors/devel/automation.md) 2 | -------------------------------------------------------------------------------- /docs/devel/cli-roadmap.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/cli-roadmap.md](https://github.com/kubernetes/community/blob/master/contributors/devel/cli-roadmap.md) 2 | -------------------------------------------------------------------------------- /docs/devel/controllers.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/controllers.md](https://github.com/kubernetes/community/blob/master/contributors/devel/controllers.md) 2 | -------------------------------------------------------------------------------- /docs/devel/development.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/development.md](https://github.com/kubernetes/community/blob/master/contributors/devel/development.md) 2 | -------------------------------------------------------------------------------- /docs/devel/flaky-tests.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/flaky-tests.md](https://github.com/kubernetes/community/blob/master/contributors/devel/flaky-tests.md) 2 | -------------------------------------------------------------------------------- /docs/devel/gubernator.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/gubernator.md](https://github.com/kubernetes/community/blob/master/contributors/devel/gubernator.md) 2 | -------------------------------------------------------------------------------- /docs/devel/how-to-doc.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/how-to-doc.md](https://github.com/kubernetes/community/blob/master/contributors/devel/how-to-doc.md) 2 | -------------------------------------------------------------------------------- /docs/devel/mesos-style.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/mesos-style.md](https://github.com/kubernetes/community/blob/master/contributors/devel/mesos-style.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kube-controller-manager.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-certificate-deny.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-cluster-info-dump.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-set-cluster.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-set-context.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-use-context.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-configmap.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-deployment.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-namespace.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-rolebinding.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-secret-tls.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-service.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rolling-update.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rollout-history.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rollout-resume.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-rollout-status.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_annotate.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_autoscale.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_certificate.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_completion.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_convert.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_describe.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_explain.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_options.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_replace.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_rollout.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_top-node.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_top-pod.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_uncordon.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_version.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /examples/volumes/rbd/secret/ceph-secret.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: ceph-secret 5 | type: "kubernetes.io/rbd" 6 | data: 7 | key: QVFCMTZWMVZvRjVtRXhBQTVrQ1FzN2JCajhWVUxSdzI2Qzg0SEE9PQ== 8 | -------------------------------------------------------------------------------- /pkg/client/testing/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - caesarxuchao 5 | - mikedanese 6 | - pmorie 7 | - saad-ali 8 | - krousey 9 | - '249043822' 10 | - lixiaobing10051267 11 | - goltermann 12 | -------------------------------------------------------------------------------- /pkg/credentialprovider/gcp/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - deads2k 4 | - yujuhong 5 | - derekwaynecarr 6 | - vishh 7 | - mikedanese 8 | - davidopp 9 | - eparis 10 | - dims 11 | - david-mcmahon 12 | - therc 13 | -------------------------------------------------------------------------------- /pkg/genericapiserver/endpoints/testing/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - smarterclayton 3 | - wojtek-t 4 | - caesarxuchao 5 | - liggitt 6 | - erictune 7 | - timothysc 8 | - soltysh 9 | - mml 10 | - mbohlool 11 | - jianhuiz 12 | -------------------------------------------------------------------------------- /staging/src/k8s.io/apiserver/.import-restrictions: -------------------------------------------------------------------------------- 1 | { 2 | "Rules": [ 3 | { 4 | "SelectorRegexp": "k8s[.]io/kubernetes", 5 | "ForbiddenPrefixes": [ 6 | "" 7 | ] 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/client_windows.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | // DefaultDockerHost defines os specific default if DOCKER_HOST is unset 4 | const DefaultDockerHost = "npipe:////./pipe/docker_engine" 5 | -------------------------------------------------------------------------------- /vendor/github.com/jteeuwen/go-bindata/LICENSE: -------------------------------------------------------------------------------- 1 | This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication 2 | license. Its contents can be found at: 3 | http://creativecommons.org/publicdomain/zero/1.0 4 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/rackspace/identity/v2/tokens/doc.go: -------------------------------------------------------------------------------- 1 | // Package tokens provides information and interaction with the token 2 | // API resource for the Rackspace Identity service. 3 | package tokens 4 | -------------------------------------------------------------------------------- /cluster/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - eparis 3 | - jbeda 4 | - mikedanese 5 | - roberthbailey 6 | - zmerlynn 7 | approvers: 8 | - eparis 9 | - jbeda 10 | - mikedanese 11 | - roberthbailey 12 | - zmerlynn 13 | -------------------------------------------------------------------------------- /docs/devel/cherry-picks.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md](https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md) 2 | -------------------------------------------------------------------------------- /docs/devel/pull-requests.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/pull-requests.md](https://github.com/kubernetes/community/blob/master/contributors/devel/pull-requests.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-certificate-approve.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-current-context.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-delete-cluster.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-delete-context.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-get-clusters.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-get-contexts.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-config-set-credentials.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-secret-generic.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-service-nodeport.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-serviceaccount.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/proposals/job.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/job.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/job.md) 2 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_api-versions.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_cluster-info.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_port-forward.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/yaml/kubectl/kubectl_rolling-update.yaml: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/user-guide/ingress.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: extensions/v1beta1 2 | kind: Ingress 3 | metadata: 4 | name: test-ingress 5 | spec: 6 | backend: 7 | serviceName: testsvc 8 | servicePort: 80 9 | 10 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_arm64.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | // +build arm64 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_ppc64.go: -------------------------------------------------------------------------------- 1 | // +build ppc64 2 | 3 | // Created by cgo -godefs - DO NOT EDIT 4 | // cgo -godefs types.go 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_s390x.go: -------------------------------------------------------------------------------- 1 | // +build s390x 2 | 3 | // Created by cgo -godefs - DO NOT EDIT 4 | // cgo -godefs types.go 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/rackspace/compute/v2/servers/doc.go: -------------------------------------------------------------------------------- 1 | // Package servers provides information and interaction with the server 2 | // API resource for the Rackspace Cloud Servers service. 3 | package servers 4 | -------------------------------------------------------------------------------- /cmd/kubeadm/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - errordeveloper 3 | - jbeda 4 | - luxas 5 | - mikedanese 6 | reviewers: 7 | - mikedanese 8 | - luxas 9 | - justinsb 10 | - errordeveloper 11 | - pires 12 | - lukemarsden 13 | - dgoodwin 14 | -------------------------------------------------------------------------------- /docs/design/README.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/README.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/README.md) 2 | -------------------------------------------------------------------------------- /docs/design/access.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/access.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/access.md) 2 | -------------------------------------------------------------------------------- /docs/design/daemon.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/daemon.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/daemon.md) 2 | -------------------------------------------------------------------------------- /docs/design/seccomp.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/seccomp.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/seccomp.md) 2 | -------------------------------------------------------------------------------- /docs/design/secrets.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/secrets.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/secrets.md) 2 | -------------------------------------------------------------------------------- /docs/design/selinux.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/selinux.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/selinux.md) 2 | -------------------------------------------------------------------------------- /docs/devel/e2e-node-tests.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/e2e-node-tests.md](https://github.com/kubernetes/community/blob/master/contributors/devel/e2e-node-tests.md) 2 | -------------------------------------------------------------------------------- /docs/devel/faster_reviews.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/faster_reviews.md](https://github.com/kubernetes/community/blob/master/contributors/devel/faster_reviews.md) 2 | -------------------------------------------------------------------------------- /docs/devel/getting-builds.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/getting-builds.md](https://github.com/kubernetes/community/blob/master/contributors/devel/getting-builds.md) 2 | -------------------------------------------------------------------------------- /docs/devel/kubemark-guide.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/kubemark-guide.md](https://github.com/kubernetes/community/blob/master/contributors/devel/kubemark-guide.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-clusterrolebinding.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-poddisruptionbudget.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-service-clusterip.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-service-externalname.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-service-loadbalancer.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/proposals/deploy.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/deploy.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/deploy.md) 2 | -------------------------------------------------------------------------------- /examples/volumes/nfs/nfs-pvc.yaml: -------------------------------------------------------------------------------- 1 | kind: PersistentVolumeClaim 2 | apiVersion: v1 3 | metadata: 4 | name: nfs 5 | spec: 6 | accessModes: 7 | - ReadWriteMany 8 | resources: 9 | requests: 10 | storage: 1Mi 11 | -------------------------------------------------------------------------------- /examples/volumes/vsphere/vsphere-volume-sc-fast.yaml: -------------------------------------------------------------------------------- 1 | kind: StorageClass 2 | apiVersion: storage.k8s.io/v1beta1 3 | metadata: 4 | name: fast 5 | provisioner: kubernetes.io/vsphere-volume 6 | parameters: 7 | diskformat: zeroedthick -------------------------------------------------------------------------------- /hack/testdata/prune-reap/a.yml: -------------------------------------------------------------------------------- 1 | kind: PersistentVolumeClaim 2 | apiVersion: v1 3 | metadata: 4 | name: a-pvc 5 | spec: 6 | accessModes: 7 | - ReadWriteOnce 8 | resources: 9 | requests: 10 | storage: 10G 11 | -------------------------------------------------------------------------------- /hack/testdata/prune-reap/b.yml: -------------------------------------------------------------------------------- 1 | kind: PersistentVolumeClaim 2 | apiVersion: v1 3 | metadata: 4 | name: b-pvc 5 | spec: 6 | accessModes: 7 | - ReadWriteOnce 8 | resources: 9 | requests: 10 | storage: 10G 11 | -------------------------------------------------------------------------------- /plugin/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - brendandburns 3 | - davidopp 4 | - dchen1107 5 | - lavalamp 6 | - thockin 7 | approvers: 8 | - brendandburns 9 | - davidopp 10 | - dchen1107 11 | - lavalamp 12 | - thockin 13 | -------------------------------------------------------------------------------- /vendor/bitbucket.org/bertimus9/systemstat/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | gofmt -s -w . 3 | go test ./... 4 | go get bitbucket.org/bertimus9/systemstat 5 | 6 | coverage: 7 | go get github.com/axw/gocov/gocov 8 | gocov test . | gocov report 9 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_ppc64le.go: -------------------------------------------------------------------------------- 1 | // +build ppc64le 2 | 3 | // Created by cgo -godefs - DO NOT EDIT 4 | // cgo -godefs types.go 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /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/github.com/rackspace/gophercloud/rackspace/blockstorage/v1/volumes/doc.go: -------------------------------------------------------------------------------- 1 | // Package volumes provides information and interaction with the volume 2 | // API resource for the Rackspace Block Storage service. 3 | package volumes 4 | -------------------------------------------------------------------------------- /cluster/centos/.gitignore: -------------------------------------------------------------------------------- 1 | binaries 2 | 3 | master/bin/etcd 4 | master/bin/etcdctl 5 | master/bin/kube* 6 | 7 | node/bin/docker 8 | node/bin/etcd 9 | node/bin/etcdctl 10 | node/bin/flanneld 11 | node/bin/kube* 12 | local-test.sh 13 | -------------------------------------------------------------------------------- /cluster/libvirt-coreos/network_kubernetes_pods.xml: -------------------------------------------------------------------------------- 1 | 2 | kubernetes_pods 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/design/security.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/security.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/security.md) 2 | -------------------------------------------------------------------------------- /docs/devel/api-conventions.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md](https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md) 2 | -------------------------------------------------------------------------------- /docs/devel/client-libraries.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/client-libraries.md](https://github.com/kubernetes/community/blob/master/contributors/devel/client-libraries.md) 2 | -------------------------------------------------------------------------------- /docs/devel/instrumentation.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/instrumentation.md](https://github.com/kubernetes/community/blob/master/contributors/devel/instrumentation.md) 2 | -------------------------------------------------------------------------------- /docs/devel/running-locally.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/running-locally.md](https://github.com/kubernetes/community/blob/master/contributors/devel/running-locally.md) 2 | -------------------------------------------------------------------------------- /docs/man/man1/kubectl-create-secret-docker-registry.1: -------------------------------------------------------------------------------- 1 | This file is autogenerated, but we've stopped checking such files into the 2 | repository to reduce the need for rebases. Please run hack/generate-docs.sh to 3 | populate this file. 4 | -------------------------------------------------------------------------------- /docs/proposals/volumes.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/volumes.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/volumes.md) 2 | -------------------------------------------------------------------------------- /staging/src/k8s.io/client-go/pkg/api/install/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - lavalamp 3 | - smarterclayton 4 | - deads2k 5 | - caesarxuchao 6 | - liggitt 7 | - nikhiljindal 8 | - dims 9 | - krousey 10 | - david-mcmahon 11 | - feihujiang 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /docs/design/clustering.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/clustering.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/clustering.md) 2 | -------------------------------------------------------------------------------- /docs/design/configmap.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/configmap.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/configmap.md) 2 | -------------------------------------------------------------------------------- /docs/design/expansion.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/expansion.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/expansion.md) 2 | -------------------------------------------------------------------------------- /docs/design/ha_master.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/ha_master.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/ha_master.md) 2 | -------------------------------------------------------------------------------- /docs/design/namespaces.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/namespaces.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/namespaces.md) 2 | -------------------------------------------------------------------------------- /docs/design/networking.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/networking.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/networking.md) 2 | -------------------------------------------------------------------------------- /docs/design/principles.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/principles.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/principles.md) 2 | -------------------------------------------------------------------------------- /docs/design/resources.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/resources.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/resources.md) 2 | -------------------------------------------------------------------------------- /docs/design/versioning.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/versioning.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/versioning.md) 2 | -------------------------------------------------------------------------------- /docs/devel/adding-an-APIGroup.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/adding-an-APIGroup.md](https://github.com/kubernetes/community/blob/master/contributors/devel/adding-an-APIGroup.md) 2 | -------------------------------------------------------------------------------- /docs/devel/coding-conventions.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/coding-conventions.md](https://github.com/kubernetes/community/blob/master/contributors/devel/coding-conventions.md) 2 | -------------------------------------------------------------------------------- /docs/devel/on-call-build-cop.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/on-call-build-cop.md](https://github.com/kubernetes/community/blob/master/contributors/devel/on-call-build-cop.md) 2 | -------------------------------------------------------------------------------- /docs/devel/on-call-rotations.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/on-call-rotations.md](https://github.com/kubernetes/community/blob/master/contributors/devel/on-call-rotations.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/api-group.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/api-group.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/api-group.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/apparmor.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/apparmor.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/apparmor.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/kubemark.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/kubemark.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/kubemark.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/protobuf.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/protobuf.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/protobuf.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/templates.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/templates.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/templates.md) 2 | -------------------------------------------------------------------------------- /examples/persistent-volume-provisioning/gce-pd.yaml: -------------------------------------------------------------------------------- 1 | kind: StorageClass 2 | apiVersion: storage.k8s.io/v1beta1 3 | metadata: 4 | name: slow 5 | provisioner: kubernetes.io/gce-pd 6 | parameters: 7 | type: pd-standard 8 | zone: us-central1-a 9 | -------------------------------------------------------------------------------- /examples/persistent-volume-provisioning/quobyte/quobyte-admin-secret.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: quobyte-admin-secret 5 | data: 6 | password: cXVvYnl0ZQ== 7 | user: YWRtaW4= 8 | type: kubernetes.io/quobyte 9 | -------------------------------------------------------------------------------- /pkg/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - brendandburns 3 | - dchen1107 4 | - lavalamp 5 | - smarterclayton 6 | - thockin 7 | approvers: 8 | - brendandburns 9 | - dchen1107 10 | - lavalamp 11 | - smarterclayton 12 | - thockin 13 | -------------------------------------------------------------------------------- /pkg/apis/policy/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - thockin 3 | - lavalamp 4 | - smarterclayton 5 | - deads2k 6 | - caesarxuchao 7 | - sttts 8 | - ncdc 9 | - timothysc 10 | - dims 11 | - mml 12 | - mbohlool 13 | - david-mcmahon 14 | - jianhuiz 15 | -------------------------------------------------------------------------------- /pkg/client/leaderelection/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - mikedanese 3 | - timothysc 4 | reviewers: 5 | - wojtek-t 6 | - deads2k 7 | - mikedanese 8 | - gmarek 9 | - eparis 10 | - timothysc 11 | - ingvagabund 12 | - resouer 13 | - goltermann 14 | -------------------------------------------------------------------------------- /pkg/proxy/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - thockin 3 | - bprashanth 4 | - matchstick 5 | reviewers: 6 | - thockin 7 | - lavalamp 8 | - smarterclayton 9 | - brendandburns 10 | - vishh 11 | - bprashanth 12 | - justinsb 13 | - freehan 14 | - dcbw 15 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: nginx 5 | spec: 6 | containers: 7 | - name: nginx 8 | image: nginx 9 | ports: 10 | - containerPort: 80 11 | -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.1 5 | - 1.2 6 | - 1.3 7 | - 1.4 8 | - 1.5 9 | - 1.6 10 | - tip 11 | 12 | notifications: 13 | email: 14 | - bwatas@gmail.com 15 | -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/boltsync_unix.go: -------------------------------------------------------------------------------- 1 | // +build !windows,!plan9,!linux,!openbsd 2 | 3 | package bolt 4 | 5 | // fdatasync flushes written data to a file descriptor. 6 | func fdatasync(db *DB) error { 7 | return db.file.Sync() 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/pty_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux,!darwin,!freebsd 2 | 3 | package pty 4 | 5 | import ( 6 | "os" 7 | ) 8 | 9 | func open() (pty, tty *os.File, err error) { 10 | return nil, nil, ErrUnsupported 11 | } 12 | -------------------------------------------------------------------------------- /cmd/libs/go2idl/client-gen/README.md: -------------------------------------------------------------------------------- 1 | See [generating-clientset.md](../../../../docs/devel/generating-clientset.md) 2 | 3 | 4 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/cmd/libs/go2idl/client-gen/README.md?pixel)]() 5 | -------------------------------------------------------------------------------- /docs/design/architecture.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/architecture.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/architecture.md) 2 | -------------------------------------------------------------------------------- /docs/design/identifiers.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/identifiers.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/identifiers.md) 2 | -------------------------------------------------------------------------------- /docs/design/indexed-job.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/indexed-job.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/indexed-job.md) 2 | -------------------------------------------------------------------------------- /docs/design/nodeaffinity.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/nodeaffinity.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/nodeaffinity.md) 2 | -------------------------------------------------------------------------------- /docs/design/podaffinity.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/podaffinity.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/podaffinity.md) 2 | -------------------------------------------------------------------------------- /docs/design/resource-qos.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/resource-qos.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/resource-qos.md) 2 | -------------------------------------------------------------------------------- /docs/devel/kubectl-conventions.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/kubectl-conventions.md](https://github.com/kubernetes/community/blob/master/contributors/devel/kubectl-conventions.md) 2 | -------------------------------------------------------------------------------- /docs/devel/local-cluster/local.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/local-cluster/local.md](https://github.com/kubernetes/community/blob/master/contributors/devel/local-cluster/local.md) 2 | -------------------------------------------------------------------------------- /docs/devel/scheduler_algorithm.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/scheduler_algorithm.md](https://github.com/kubernetes/community/blob/master/contributors/devel/scheduler_algorithm.md) 2 | -------------------------------------------------------------------------------- /docs/devel/update-release-docs.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/update-release-docs.md](https://github.com/kubernetes/community/blob/master/contributors/devel/update-release-docs.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/deployment.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/deployment.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/deployment.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/federation.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/federation.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/federation.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/gpu-support.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/gpu-support.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/gpu-support.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/rescheduler.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/rescheduler.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/rescheduler.md) 2 | -------------------------------------------------------------------------------- /examples/volumes/vsphere/vsphere-volume-pvc.yaml: -------------------------------------------------------------------------------- 1 | kind: PersistentVolumeClaim 2 | apiVersion: v1 3 | metadata: 4 | name: pvc0001 5 | spec: 6 | accessModes: 7 | - ReadWriteOnce 8 | resources: 9 | requests: 10 | storage: 2Gi -------------------------------------------------------------------------------- /hack/testdata/pod.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: test-pod 5 | labels: 6 | name: test-pod-label 7 | spec: 8 | containers: 9 | - name: kubernetes-pause 10 | image: gcr.io/google-containers/pause:2.0 11 | -------------------------------------------------------------------------------- /hack/testdata/prune/a.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: a 5 | labels: 6 | prune-group: "true" 7 | spec: 8 | containers: 9 | - name: kubernetes-pause 10 | image: gcr.io/google-containers/pause:2.0 11 | -------------------------------------------------------------------------------- /hack/testdata/prune/b.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: b 5 | labels: 6 | prune-group: "true" 7 | spec: 8 | containers: 9 | - name: kubernetes-pause 10 | image: gcr.io/google-containers/pause:2.0 11 | -------------------------------------------------------------------------------- /staging/src/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 | -------------------------------------------------------------------------------- /staging/src/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 | -------------------------------------------------------------------------------- /cluster/addons/cluster-loadbalancing/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # Maintainers 2 | 3 | Prashanth.B 4 | 5 | 6 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/cluster/addons/cluster-loadbalancing/MAINTAINERS.md?pixel)]() 7 | -------------------------------------------------------------------------------- /cluster/addons/node-problem-detector/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # Maintainers 2 | 3 | Lantao Liu 4 | 5 | 6 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/cluster/addons/node-problem-detector/MAINTAINERS.md?pixel)]() 7 | -------------------------------------------------------------------------------- /docs/design/extending-api.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/extending-api.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/extending-api.md) 2 | -------------------------------------------------------------------------------- /docs/devel/generating-clientset.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/generating-clientset.md](https://github.com/kubernetes/community/blob/master/contributors/devel/generating-clientset.md) 2 | -------------------------------------------------------------------------------- /docs/devel/local-cluster/docker.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/local-cluster/docker.md](https://github.com/kubernetes/community/blob/master/contributors/devel/local-cluster/docker.md) 2 | -------------------------------------------------------------------------------- /docs/devel/local-cluster/vagrant.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/local-cluster/vagrant.md](https://github.com/kubernetes/community/blob/master/contributors/devel/local-cluster/vagrant.md) 2 | -------------------------------------------------------------------------------- /docs/devel/on-call-user-support.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/on-call-user-support.md](https://github.com/kubernetes/community/blob/master/contributors/devel/on-call-user-support.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/kubelet-auth.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/kubelet-auth.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/kubelet-auth.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/rescheduling.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/rescheduling.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/rescheduling.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/scheduledjob.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduledjob.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduledjob.md) 2 | -------------------------------------------------------------------------------- /examples/spark/zeppelin-service.yaml: -------------------------------------------------------------------------------- 1 | kind: Service 2 | apiVersion: v1 3 | metadata: 4 | name: zeppelin 5 | spec: 6 | ports: 7 | - port: 80 8 | targetPort: 8080 9 | selector: 10 | component: zeppelin 11 | type: LoadBalancer 12 | -------------------------------------------------------------------------------- /examples/storage/hazelcast/hazelcast-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | labels: 5 | name: hazelcast 6 | name: hazelcast 7 | spec: 8 | ports: 9 | - port: 5701 10 | selector: 11 | name: hazelcast 12 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/admin/namespaces/namespace-dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "kind": "Namespace", 3 | "apiVersion": "v1", 4 | "metadata": { 5 | "name": "development", 6 | "labels": { 7 | "name": "development" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/fixtures/doc-yaml/admin/namespaces/namespace-prod.json: -------------------------------------------------------------------------------- 1 | { 2 | "kind": "Namespace", 3 | "apiVersion": "v1", 4 | "metadata": { 5 | "name": "production", 6 | "labels": { 7 | "name": "production" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/fixtures/pkg/kubectl/cmd/apply/service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: test-service 5 | labels: 6 | name: test-service 7 | spec: 8 | ports: 9 | - port: 80 10 | selector: 11 | name: test-rc 12 | -------------------------------------------------------------------------------- /vendor/github.com/lpabon/godbc/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.1 5 | - 1.2 6 | - tip 7 | 8 | install: 9 | - go get github.com/stretchr/testify 10 | 11 | script: 12 | - go test 13 | - go test -tags 'prod' 14 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_windows.go: -------------------------------------------------------------------------------- 1 | package configs 2 | 3 | // TODO Windows: This can ultimately be entirely factored out on Windows as 4 | // cgroups are a Unix-specific construct. 5 | type Cgroup struct { 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/criu_opts_windows.go: -------------------------------------------------------------------------------- 1 | package libcontainer 2 | 3 | // TODO Windows: This can ultimately be entirely factored out as criu is 4 | // a Unix concept not relevant on Windows. 5 | type CriuOpts struct { 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/attrs_stubs.go: -------------------------------------------------------------------------------- 1 | // +build !cgo,!plan9 windows android 2 | 3 | package sftp 4 | 5 | import ( 6 | "os" 7 | ) 8 | 9 | func fileStatFromInfoOs(fi os.FileInfo, flags *uint32, fileStat *FileStat) { 10 | // todo 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/openstack/identity/v3/tokens/urls.go: -------------------------------------------------------------------------------- 1 | package tokens 2 | 3 | import "github.com/rackspace/gophercloud" 4 | 5 | func tokenURL(c *gophercloud.ServiceClient) string { 6 | return c.ServiceURL("auth", "tokens") 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/README.md: -------------------------------------------------------------------------------- 1 | [![GoDoc](http://godoc.org/github.com/robfig/cron?status.png)](http://godoc.org/github.com/robfig/cron) 2 | [![Build Status](https://travis-ci.org/robfig/cron.svg?branch=master)](https://travis-ci.org/robfig/cron) 3 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/docker/docker-healthcheck.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Run docker-healthcheck once 3 | 4 | [Service] 5 | Type=oneshot 6 | ExecStart=/opt/kubernetes/helpers/docker-healthcheck 7 | 8 | [Install] 9 | WantedBy=multi-user.target 10 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/docker/docker-healthcheck.timer: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Trigger docker-healthcheck periodically 3 | 4 | [Timer] 5 | OnUnitInactiveSec=10s 6 | Unit=docker-healthcheck.service 7 | 8 | [Install] 9 | WantedBy=multi-user.target 10 | -------------------------------------------------------------------------------- /cluster/vsphere/README.md: -------------------------------------------------------------------------------- 1 | Please use [Kubernetes-anywhere](https://github.com/kubernetes/kubernetes-anywhere) to get started on vSphere. 2 | 3 | 4 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/cluster/vsphere/README.md?pixel)]() 5 | -------------------------------------------------------------------------------- /docs/design/metadata-policy.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/metadata-policy.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/metadata-policy.md) 2 | -------------------------------------------------------------------------------- /docs/devel/community-expectations.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/community-expectations.md](https://github.com/kubernetes/community/blob/master/contributors/devel/community-expectations.md) 2 | -------------------------------------------------------------------------------- /docs/devel/writing-good-e2e-tests.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/writing-good-e2e-tests.md](https://github.com/kubernetes/community/blob/master/contributors/devel/writing-good-e2e-tests.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/container-init.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/container-init.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/container-init.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/controller-ref.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/controller-ref.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/controller-ref.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/kubectl-login.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/kubectl-login.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/kubectl-login.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/multi-platform.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/multi-platform.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/multi-platform.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/network-policy.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/network-policy.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/network-policy.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/release-notes.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release-notes.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release-notes.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/runtimeconfig.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/runtimeconfig.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/runtimeconfig.md) 2 | -------------------------------------------------------------------------------- /docs/proposals/stateful-apps.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/stateful-apps.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/stateful-apps.md) 2 | -------------------------------------------------------------------------------- /examples/nodesjs-mongodb/mongo-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | labels: 5 | name: mongo 6 | name: mongo 7 | spec: 8 | ports: 9 | - port: 27017 10 | targetPort: 27017 11 | selector: 12 | name: mongo -------------------------------------------------------------------------------- /hack/testdata/pod-apply.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: test-pod 5 | labels: 6 | name: test-pod-applied 7 | spec: 8 | containers: 9 | - name: kubernetes-pause 10 | image: gcr.io/google-containers/pause:2.0 11 | -------------------------------------------------------------------------------- /pkg/volume/gce_pd/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - saad-ali 3 | - thockin 4 | reviewers: 5 | - thockin 6 | - smarterclayton 7 | - bprashanth 8 | - pmorie 9 | - saad-ali 10 | - justinsb 11 | - jsafrane 12 | - markturansky 13 | - jingxu97 14 | - matchstick 15 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/symlink/fs_unix.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package symlink 4 | 5 | import ( 6 | "path/filepath" 7 | ) 8 | 9 | func evalSymlinks(path string) (string, error) { 10 | return filepath.EvalSymlinks(path) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ioctl.go: -------------------------------------------------------------------------------- 1 | package pty 2 | 3 | import "syscall" 4 | 5 | func ioctl(fd, cmd, ptr uintptr) error { 6 | _, _, e := syscall.Syscall(syscall.SYS_IOCTL, fd, cmd, ptr) 7 | if e != 0 { 8 | return e 9 | } 10 | return nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/openstack/compute/v2/extensions/diskconfig/doc.go: -------------------------------------------------------------------------------- 1 | // Package diskconfig provides information and interaction with the Disk 2 | // Config extension that works with the OpenStack Compute service. 3 | package diskconfig 4 | -------------------------------------------------------------------------------- /vendor/github.com/rackspace/gophercloud/openstack/identity/v2/tenants/urls.go: -------------------------------------------------------------------------------- 1 | package tenants 2 | 3 | import "github.com/rackspace/gophercloud" 4 | 5 | func listURL(client *gophercloud.ServiceClient) string { 6 | return client.ServiceURL("tenants") 7 | } 8 | -------------------------------------------------------------------------------- /cluster/addons/dns-horizontal-autoscaler/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # Maintainers 2 | 3 | Zihong Zheng 4 | 5 | 6 | [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/cluster/addons/dns-horizontal-autoscaler/MAINTAINERS.md?pixel)]() 7 | -------------------------------------------------------------------------------- /cluster/ovirt/ovirt-cloud.conf: -------------------------------------------------------------------------------- 1 | # ovirt-cloud.conf 2 | [connection] 3 | uri = https://localhost:8443/ovirt-engine/api 4 | username = admin@internal 5 | password = admin 6 | 7 | [filters] 8 | # Search queries used to find minions 9 | vms = tag=kubernetes 10 | -------------------------------------------------------------------------------- /cluster/photon-controller/templates/README: -------------------------------------------------------------------------------- 1 | The scripts in this directory are not meant to be invoked 2 | directly. Instead they are partial scripts that are combined into full 3 | scripts by util.sh and are run on the Kubernetes nodes are part of the 4 | setup. 5 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/logrotate/docker-containers: -------------------------------------------------------------------------------- 1 | /var/lib/docker/containers/*/*-json.log { 2 | rotate 5 3 | copytruncate 4 | missingok 5 | notifempty 6 | compress 7 | maxsize 10M 8 | daily 9 | create 0644 root root 10 | } 11 | -------------------------------------------------------------------------------- /cluster/saltbase/salt/supervisor/docker.conf: -------------------------------------------------------------------------------- 1 | [program:docker] 2 | command=/usr/sbin/docker-checker.sh 3 | stderr_logfile=/var/log/supervisor/docker-stderr.log 4 | stdout_logfile=/var/log/supervisor/docker-stdout.log 5 | autorestart=true 6 | startretries=1000000 7 | -------------------------------------------------------------------------------- /cmd/kube-aggregator/artifacts/local-cluster-up/etcd-svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: etcd 5 | spec: 6 | ports: 7 | - port: 4001 8 | protocol: TCP 9 | targetPort: 4001 10 | selector: 11 | etcd: "true" 12 | -------------------------------------------------------------------------------- /docs/design/admission_control.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/admission_control.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/admission_control.md) 2 | -------------------------------------------------------------------------------- /docs/design/clustering/README.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/clustering/README.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/clustering/README.md) 2 | -------------------------------------------------------------------------------- /docs/design/event_compression.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/event_compression.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/event_compression.md) 2 | -------------------------------------------------------------------------------- /docs/design/security_context.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/security_context.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/security_context.md) 2 | -------------------------------------------------------------------------------- /docs/design/service_accounts.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/design-proposals/service_accounts.md](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/service_accounts.md) 2 | -------------------------------------------------------------------------------- /docs/devel/developer-guides/vagrant.md: -------------------------------------------------------------------------------- 1 | This file has moved to [https://github.com/kubernetes/community/blob/master/contributors/devel/developer-guides/vagrant.md](https://github.com/kubernetes/community/blob/master/contributors/devel/developer-guides/vagrant.md) 2 | --------------------------------------------------------------------------------