- 12 Jan, 2017 19 commits
-
-
Timothy St. Clair authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39773, 39739) Fixed cluster validation in e2e tests for HA master.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39773, 39739) Wait until kubernetes-src.tar.gz is built before building node/server. **What this PR does / why we need it**: both the server and node release tarballs depend on kubernetes-src.tar.gz, but we weren't waiting for it to exist. how this ever worked is a mystery to me. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes https://github.com/kubernetes/test-infra/pull/1546#issuecomment-272024058 **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 37557, 39545) Add e2e test for external pv provisioning fixes https://github.com/kubernetes/kubernetes/issues/36170
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update ugorji/go/codec godep In order to pick-up https://github.com/ugorji/go/issues/119 and to get rid of the workaround at https://github.com/kubernetes/kubernetes/pull/36909/files#diff-a09eb061a0fb0ef3c9ef9d696f1ad0b4R426.
-
Dr. Stefan Schimanski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue proxy/iptables: don't sync proxy rules if services map didn't change Build the service map in a separate testable function. Return that map instead of changing proxier.serviceMap directly. Use reflect.DeepEqual() to skip syncing proxy rules if nothing actually changed. @thockin @kubernetes/rh-networking @kubernetes/sig-network-misc @timothysc @wojtek-t @jeremyeder @caseydavenport
-
saadali authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39768, 39463) modify Umask() and delete ErrorTimeout function ErrorTimeout() is never used,remove it. And modify Umask() args
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39768, 39463) Check if path exists before performing unmount This is part 3 of an effort to check if path exists before performing an unmount operation. [Part 1](https://github.com/kubernetes/kubernetes/pull/38547) and [part 2](https://github.com/kubernetes/kubernetes/pull/39311) involved auditing the different volume plugins and refactoring their `TearDownAt()s` to use the common util function/or create one if absent. The ideal way to do this change would involve refactoring of the `TearDownAt()s` of these plugins and make a common util function that checks path. (The plugins involved in this PR use someway of unmounting a bind mount and unmounting a global path, there is also refactoring needed to consolidate disk_manager of fc, rbd and iscsi). A non-goal part of this effort can also involve refactoring all the `SetupAt()s` In the interest of time and considering other higher priority issues that I am caught up with, I am unable to give the time the refactoring needs. Hence I've made the minimum change that would give the desired output. I am tracking the work pending in this issue: https://github.com/kubernetes/kubernetes/issues/39251 ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix bug when printing replicas in Deployment Describer Deployment describer is printing replicas using pointer instead of integer. This bug is introduced by #36673 which updates the describer to use versioned API. cc @caesarxuchao Fixes #38697
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39171, 39771) remove BUILD spammy output leftover from debugging
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add [Volume] tag to all the volume-related E2E tests. **What this PR does / why we need it**: Tags all the volume/storage related e2e tests to make it easier to run a volume test suite. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # fixes #35542 **Special notes for your reviewer**: Please let me know if there are tests that should/should not be included. **Release note**: NONE ```release-note ```
-
NickrenREN authored
ErrorTimeout is never used
-
Jess Frazelle authored
-
Mike Danese authored
Revert "controller: unit tests for overlapping and recreate deployments"
-
Dawn Chen authored
-
Janet Kuo authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [CRI] Don't include user data in CRI streaming redirect URLs Fixes: https://github.com/kubernetes/kubernetes/issues/36187 Avoid userdata in the redirect URLs by caching the {Exec,Attach,PortForward}Requests with a unique token. When the redirect URL is created, the token is substituted for the request params. When the streaming server receives the token request, the token is used to fetch the actual request parameters out of the cache. For additional security, the token is generated using the secure random function, is single use (i.e. the first request with the token consumes it), and has a short expiration time. /cc @kubernetes/sig-node
-
- 11 Jan, 2017 21 commits
-
-
Jeff Grafton authored
-
Mike Danese authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39483, 39088, 38787) daemonset: differentiate between cases in nodeShouldRun specifically we need to differentiate between wanting to run, should run and should continue running. This is required to support all taint effects and will improve reporting and end user debuggability. fixes https://github.com/kubernetes/kubernetes/issues/28839 among other things
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 39483, 39088, 38787) controller: unit tests for overlapping and recreate deployments Belated unit tests for https://github.com/kubernetes/kubernetes/pull/38080 and https://github.com/kubernetes/kubernetes/pull/36748. @kubernetes/sig-apps-misc
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue move no k8s.io/kubernetes dep packages for genericapiserver Move the next set of no-dep packages for genericapiserver. Feel the ratchet click! ``` k8s.io/kubernetes/pkg/auth/authenticator/bearertoken -> k8s.io/apiserver/pkg/authentication/request/bearertoken k8s.io/kubernetes/pkg/auth/authorizer/union -> k8s.io/apiserver/pkg/authorization/union k8s.io/kubernetes/pkg/auth/group -> k8s.io/apiserver/pkg/authentication/group k8s.io/kubernetes/pkg/httplog -> k8s.io/apiserver/pkg/httplog k8s.io/kubernetes/pkg/ssh -> k8s.io/apiserver/pkg/ssh k8s.io/kubernetes/pkg/storage/etcd/metrics -> k8s.io/apiserver/pkg/storage/etcd/metrics k8s.io/kubernetes/pkg/util/cache -> k8s.io/apiserver/pkg/util/cache k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/anonymous -> k8s.io/apiserver/pkg/authentication/request/anonymous k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/union -> k8s.io/apiserver/pkg/authentication/request/union k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/x509 -> k8s.io/apiserver/pkg/authentication/request/x509 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/tokenfile -> k8s.io/apiserver/pkg/authentication/token/tokenfile ``` @sttts
-
rkouj authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue delete unused variable in etcd_help_test.go **What this PR does / why we need it**: delete unused variable validEtcdVersion ,for keep the code clean **Special notes for your reviewer**: none **Release note**: none
-
Tim St. Clair authored
-
Mike Danese authored
-
Mike Danese authored
secifically we need to differentiate between wanting to run, should run and should continue running. This is required to support all taint effects and will improve reporting and end user debuggability.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Split out server-only code from api packages shared with the client Fixes staging/copy.sh.
-
Dan Williams authored
Instead of copying the map, like OnServicesUpdate() used to do and which was copied into buildServiceMap() to preserve semantics while creating testcases, start with a new empty map and do deletion checking later.
-
Dr. Stefan Schimanski authored
-
Dan Williams authored
-
Dan Williams authored
The API docs say: // ServiceTypeExternalName means a service consists of only a reference to // an external name that kubedns or equivalent will return as a CNAME // record, with no exposing or proxying of any pods involved. which implies that ExternalName services should be ignored for proxy purposes.
-
Dan Williams authored
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
-
deads2k authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Enable kubernetes_metadata by default for ELK stack Looks like it was accidentally removed and was not restored back in this PR https://github.com/kubernetes/kubernetes/pull/29883 Because actually this plugin still exists in the image, but new ELK deployment don't allow you to index namespaces, pod names, etc.
-