- 15 Sep, 2016 23 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix logging in cacher @smarterclayton @liggitt @hongchaodeng
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue restrict discoverable versions to those that have resources Prevents versions with no resources from appearing in discovery. @soltysh ptal. I think you have some issues for this, mind wiring them up? ``` kubectl api-versions apps/v1alpha1 authentication.k8s.io/v1beta1 authorization.k8s.io/v1beta1 autoscaling/v1 batch/v1 certificates.k8s.io/v1alpha1 extensions/v1beta1 policy/v1alpha1 rbac.authorization.k8s.io/v1alpha1 storage.k8s.io/v1beta1 v1 ``` Fixes #29998.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Exit scheduler retry loop correctly The error was being eaten and shadowed, which means we would never exit this loop. This might lead to a goroutine in the scheduler being used forever without exiting at maximum backoff. Switched to use the real client to make later refactors easier. @wojtek-t this may lead to scheduler informer exhaustion - not that familiar with retries
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert "Use PV shared informer in PV controller" Fixes #32497 Reverts kubernetes/kubernetes#30825
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert "Revert "Allow webhook authenticator to use TokenReviewsInterface"" Reverts https://github.com/kubernetes/kubernetes/pull/32591 (commit 0a02c827) Readds https://github.com/kubernetes/kubernetes/pull/32547 Holding until GKE webhook authenticator is updated by @cjcullen
-
Wojciech Tyczynski authored
Reduce maximum number of net-proxy pods to make test work in large cl…
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Kubelet: add garbage collection for new runtime API This PR adds garbage collection for new runtime API. Note that this PR also adds `CreatedAt` and `PodSandboxId` to `ListContainers()` result. CC @yujuhong @Random-Liu @kubernetes/sig-node @kubernetes/sig-rktnetes
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Added --log-facility flag to enhance dnsmasq logging Fix #31010. Dnsmasq in kube-dns pod is logging in default setting, which is somehow hard to locate. Add --log-facility=- flag to redirect logs to std. @girishkalele
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Unstructured methods belong in unstructured.go Simple code move @krousey just movement
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Set Dashboard UI to final 1.4 version Release info: https://github.com/kubernetes/dashboard/releases/tag/v1.4.0 Diff since beta2: a few bug fixes. This is final release for this quarter.
-
Phillip Wittrock authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Set --alsologtostderr=true in integration test Without the flag, no glog output are stored in the test results. The logs are useful for debugging flaky tests like https://github.com/kubernetes/kubernetes/issues/30228. The change also reveals a lot of messages like `W0912 14:19:32.306719 25386 cacher.go:468] Terminating all watchers from cacher *api.LimitRange`, which doesn't seem right.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix audit_test regex for iso8601 timestamps <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: The audit_test unit test fails as some iso8601 timestamps are of the form 2016-09-13T10:32:50.823081217Z and the current regex doesn't allow T's or Z's. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**:NONE <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note ``` Signed-off-by:
Johnny Bieren <jbieren@redhat.com>
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add glusterfs-client in hyperkube image. When we run kubernete in a docker container, the glusterfs volume doesn't work. This PR add glusterfs-client package in hyperkube image to fix the bug.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix hack/verify-golint.sh on a Mac Relax the location of the files a bit (Don't assume the k8s.io/kubernetes always!) Fixes #31905
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue EnableGarbageCollection should be part of generic.RESTOptions
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Do not report warning event when an unknown deleter is requested When Kubernetes does not have a plugin to delete a PV it should wait for either external deleter or storage admin to delete the volume instead of throwing an error. This is the same approach as in #32077 @kubernetes/sig-storage
-
Clayton Coleman authored
-
Clayton Coleman authored
Not a global. Now that we have RESTOptions this was an easy change.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Etcd3 v3client + grpc client leak fix This re-enables the client and plumbs through the destroyFunc to cleanup clients. Fix for https://github.com/kubernetes/kubernetes/issues/31262
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue AWS: Reduce frequency of volume-mount poll
-
Saad Ali authored
fully verify client-gen in verification tests
-
- 14 Sep, 2016 17 commits
-
-
Mike Danese authored
-
Mike Danese authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue To improve error messages, validate the existence of a namespace. Fixes #15542 @deads2k @kubernetes/kubectl
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fixed #32366: wrong master pd name during kube-down.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make it possible to run local kubelet independently of cluster Makes it possible to start a cluster and kubelet independently (was necessary when debugging issues related to restarting kubelet for existing node).
-
Justin Santa Barbara authored
When we are mounting a lot of volumes, we frequently hit rate limits. Reduce the frequency with which we poll the status; introduces a bit of latency but probably matches common attach times pretty closely, and avoids causing rate limit problems everywhere. Also, we now poll for longer, as when we timeout, the volume is in an indeterminate state: it may be about to complete. The volume controller can tolerate a slow attach/detach, but it is harder to tolerate the indeterminism. Finally, we ignore a sequence of errors in DescribeVolumes (up to 5 in a row currently). So we will eventually return an error, but a one off-failure (e.g. due to rate limits) does not cause us to spuriously fail.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue plugin/pkg: add ericchiang to owners for OpenID Connect plugins On the CoreOS side I'm taking over these components. @erictune has suggested `pkg/registry/{cluster}role{binding}s/OWNERS` as well but I'd feel more comfortable as a reviewer for those specific parts of RBAC for a couple more cycles since @liggitt and @deads2k have had way more experience in the registry code. Beyond that the only existing OWNERS files for auth are `pkg/auth/OWNERS` and `plugin/pkg/auth/OWNERS` both of which include @liggitt and @erictune. There's also nothing in the `plugin/pkg/client` path. I'm a little unclear on the implications for future PRs that are assigned to me (e.g. webhook or RBAC reviews). cc @kubernetes/sig-auth -
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix clientcmd for a non-host cluster client running in a pod. This is based on @errordeveloper's PR #32438. It fixes a case where default config is invalid and original config, i.e. `mergedConfig` is empty. It also adds a test for the case where default config is invalid and original config is neither invalid nor empty. cc @errordeveloper @kubernetes/sig-cluster-federation @pwittrock @colhom
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Docker digest validation is too strict Docker 1.10 does not guarantee that the pulled digest matches the digest on disk when dealing with v1 schemas stored in a Docker registry. This is the case for images like centos/ruby-23-centos7@sha256:940584acbbfb0347272112d2eb95574625c0c60b4e2fdadb139de5859cf754bf which as a result of #30366 cannot be pulled by Kube from a Docker 1.10 system. This partially reverts commit 875fd16e.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix printing container usage in kubectl top **What this PR does / why we need it**: Fix a bug in kubectl top, which showed the same value of usage for all containers in a pod. **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Vendor github.com/square/go-jose for kubeadm and kube-discovery **What this PR does / why we need it**: This is to be used by `kubeadm` (#31221) and @dgoodwin's `kube-discovery` (PR pending). ***[xref kubernetes/features#11]*** ***[cc @kubernetes/sig-cluster-lifecycle]*** **Special notes for your reviewer**: This is first time I've used `godep`, so please verify if all is quite right about the diff. I'm not 100% sure if there should be secondary dependencies or not. ```release-note NONE ```
-
Clayton Coleman authored
Docker 1.10 does not guarantee that the pulled digest matches the digest on disk when dealing with v1 schemas stored in a Docker registry. This is the case for images like centos/ruby-23-centos7@sha256:940584acbbfb0347272112d2eb95574625c0c60b4e2fdadb139de5859cf754bf which as a result of #30366 cannot be pulled by Kube from a Docker 1.10 system. Instead, use RepoDigests field as the primary match, validating the digest, and then fall back to ID (also validating the match). Adds more restrictive matching.
-
Johnny Bieren authored
Signed-off-by:Johnny Bieren <jbieren@redhat.com>
-
Harry Fei authored
To make glusterfs volume workable when running kubernetes in a docker container.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update Google Cloud API client import paths
-
Ilya Dmitrichenko authored
This is to be used by kubeadm (#31221) and kube-discovery. It adds dummy code to make verification scripts pass. [xref kubernetes/features#11]
-
Brendan Burns authored
-