- 21 Aug, 2017 10 commits
-
-
mtanino authored
-
Mitsuhiro Tanino authored
This PR adds iSCSI initiatorname parameter to ISCSIVolumeSource to enable automatic configuration of initiator name per volume. This would allow for more fine grained configuration, and remove the need to configure the initiator name on the host by administrator. fixes: #47311
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 47896, 50678, 50620, 50631, 51005) Made the difference between scale-up timeout and cluster set-up timeout explicit. **What this PR does / why we need it**: **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 47896, 50678, 50620, 50631, 51005) kubeadm: Adds dry-run support for kubeadm using the `--dry-run` option **What this PR does / why we need it**: Adds dry-run support to kubeadm by creating a fake clientset that can get totally fake values (like in the init case), or delegate GETs/LISTs to a real API server but discard all edits like POST/PUT/PATCH/DELETE **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # fixes: https://github.com/kubernetes/kubeadm/issues/389 **Special notes for your reviewer**: This PR depends on https://github.com/kubernetes/kubernetes/pull/50626, first three commits are from there This PR is a dependency for https://github.com/kubernetes/kubernetes/pull/48899 (kubeadm upgrades) I have some small things to fixup and I'll yet write unit tests, but PTAL if you think this is going in the right direction **Release note**: ```release-note kubeadm: Adds dry-run support for kubeadm using the `--dry-run` option ``` cc @kubernetes/sig-cluster-lifecycle-pr-reviews @kubernetes/sig-api-machinery-pr-reviews
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 47896, 50678, 50620, 50631, 51005) allow heapster option defaults to be set - kubectl top node|pod **Release note**: ```release-note NONE ``` Allows downstream / outside consumers of `NewCmdTopNode` and `NewCmdTopPod` commands to set project or case-specific heapster option defaults. Related downstream PR: https://github.com/openshift/origin/pull/15764 cc @fabianofranz
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 47896, 50678, 50620, 50631, 51005) Remove deprecated lookup cache flags. **What this PR does / why we need it**: Remove deprecated lookup cache flags: `replication-controller-lookup-cache-size, replicaset-lookup-cache-size, daemonset-lookup-cache-size` **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #43388 **Special notes for your reviewer**: /cc @enisoc **Release note**: ```release-note The following deprecated flags have been removed from `kube-controller-manager`: `replication-controller-lookup-cache-size`, `replicaset-lookup-cache-size`, and `daemonset-lookup-cache-size`. Make sure you no longer attempt to set them. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 47896, 50678, 50620, 50631, 51005) MakeEventRecorder function cleanup delete KubeletConfiguration arg since it is unused fixes #50969 ```release-note NONE ```
-
Shyam JVS authored
Revert "Don't register the kubeletconfig group with the default Scheme"
-
Andrzej Wasylkowski authored
-
Shyam JVS authored
-
- 19 Aug, 2017 4 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Don't register the kubeletconfig group with the default Scheme See https://github.com/kubernetes/kubernetes/pull/49051#discussion_r132527078
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46512, 50146) Make metav1.(Micro)?Time functions take pointers Is there any reason for those functions not to be on pointers?
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46512, 50146) Default NODE_OS to gci on GCE installs Looking at https://github.com/kubernetes/test-infra/tree/master/jobs, any job with "cvm" in the name explicitly sets this variable, so I hope it is only the default. **Release note**: ```release-note Change GCE installs (kube-up.sh) to use GCI/COS for node OS, by default. ``` @mtaufen @dchen1107 @ixdy
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Reduce one time url redirection Reduce one time url direction **What this PR does / why we need it**: **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/kubernetes/issues/50954 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-
- 18 Aug, 2017 26 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix initial exec terminal dimensions **What this PR does / why we need it**: Delay attempting to send a terminal resize request to docker until after the exec has started; otherwise, the initial resize request will fail. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #47990 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-
Michael Taufen authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update OWNERS files for networking components This will reduce the approval load for the top level tree owners ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Use CollisionCount for collision avoidance in StatefulSet controller **What this PR does / why we need it**: This PR uses the newly added `CollisionCount` in `StatefulSetStatus` for name collision avoidance when the `StatefulSet` controller creates `ControllerRevision`s. The `CreateControllerRevision` method of the `ControllerHistory` interface was augmented to use a user-specified `collisionCount` instead of the internal probe that always starts with 0. The `StatefulSet` controller uses the `CreateControllerRevision` to create `ControllerRevision`s and when it calls it, it passes in the `CollisionCount` of the `StatefulSet` it manipulates. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #49909. **Special notes for your reviewer**: /assign @kow3ns **Release note**: ```release-note Use CollisionCount for collision avoidance when creating ControllerRevisions in StatefulSet controller ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Proposal to add @wlan0 to appropriate owner files @thockin @luxas
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 50911, 50839) Fix admission plugin registration **What this PR does / why we need it**: The current registration of admission plug-ins happen too late so the command line help is not yielding correct/useful information to users. This is already causing confusion as mentioned in some issues. This patch fixes it by moving plugins.go down to options package because "plugins" in this context are themselves options for users. Registration of plugins is not an expensive operation and it is already done in most execution paths. **Which issue this PR fixes** fixes #50833 **Special notes for your reviewer**: There might be other thoughts on how to better align this with other efforts. This PR is leaving them to future work. For example: in future, we may want to revisit these plugins and migrate them to the shared apiserver repo when appropriate. **Release note**: I'm not sure if a release note is needed for this. Maybe there is a need. ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add diff details to pod validation error This adds a basic (large) diff to the `ValidatePodUpdate` method, but we've been waiting on the "perfect" diff for a long time and it hasn't appeared.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 50904, 50691) Make Kubeadm phase certs codebase consistent with other phases **What this PR does / why we need it:** This PR is a refactoring of [#48196](https://github.com/kubernetes/kubernetes/pull/48196), that makes this part of kubeadm more consistent with other parts of kubeadm recently changed, e.g. [controlplane & etcd phase #50302](https://github.com/kubernetes/kubernetes/pull/50302) and [kubeconfig phase #49419](https://github.com/kubernetes/kubernetes/pull/49419) **Which issue this PR fixes:** none **Special notes for your reviewer:** cc @luxas
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 50904, 50691) Stackdriver Logging e2e: Explicitly check for docker and kubelet logs presence Check for kubelet and docker logs explicitly in the Stackdriver Logging e2e tests
-
Yinan Li authored
-
Lucas Käldström authored
-
David Eads authored
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add enj as reviewer to OWNERS Adding myself as a reviewer for the following areas: - API - auth - registry - storage (etcd) Signed-off-by:Monis Khan <mkhan@redhat.com> **Release note**: ```release-note NONE ``` @kubernetes/sig-api-machinery-pr-reviews @kubernetes/sig-auth-pr-reviews
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue remove useless argument "name" **Release note**: ``` NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 50255, 50885) remove dead code for cloner I found some dead code in audit webhook backend. This change do some clean work for: https://github.com/kubernetes/kubernetes/pull/48544/commits/2bbe72d4e09f7c95e1ad851187d4733a54644fbe **Release note**: ``` NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 50255, 50885) AWS: Arbitrarily choose first (lexicographically) subnet in AZ When there is more than one subnet for an AZ on AWS choose arbitrarily chose the first one lexicographically for consistency. **What this PR does / why we need it**: If two subnets were to be used appear in the same aws az which one is chosen is currently not consistent. This could lead to difficulty in diagnosing issues. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #45983 **Special notes for your reviewer**: **Release note**: ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 50303, 50856) Make route-controller list only relevant routes instead of all of them Ref https://github.com/kubernetes/kubernetes/issues/50854 (somewhat related issue) IIUC from the code, route-controller memory is mainly being used in storing routes and nodes (also CIDRs, but that's not much). This should help reduce that memory usage (particularly when running in a project with large no. of routes), by moving filtering to server-side. For e.g in kubernetes-scale project we have ~5000 routes (each about 600B) => 3 MB of routes This doesn't help with reducing time to list the routes as filtering is also linear. cc @kubernetes/sig-scalability-misc @wojtek-t @gmarek
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue delete ineffectual assginment **What this PR does / why we need it**: delete ineffectual assignment **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**:
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add enj to OWNERS for test/integration/etcd/etcd_storage_path_test.go @deads2k is the bot smart enough to not spam me with every test change? Perhaps I should create an `OWNERS` file in `test/integration/etcd`? **Release note**: ```release-note NONE ``` @kubernetes/sig-api-machinery-pr-reviews
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Rename k8s.io/{kube-gen -> code-generator} -
fabriziopandini authored
-
fabriziopandini authored
-
fabriziopandini authored
-
NickrenREN authored
drop KubeletConfiguration arg since it is unused
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix typo **What this PR does / why we need it**: **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-