- 23 May, 2017 7 commits
-
-
Balu Dontu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38990, 45781, 46225, 44899, 43663) Fix command exec -- COMMAND can not contain spaces Fixes https://github.com/kubernetes/kubernetes/issues/7688 the problem is when you execute command: `cluster/kubectl.sh exec -p client-blue-8yw37 -c client -i -t -- 'ls -t /usr'` the args is [`client-blue-8yw37` , `ls -t /usr`] **instead of** [`client-blue-8yw37`, `ls`, `-t`, `/usr`] @kubernetes/sig-cli-pr-reviews, so I add a warning, wdyt ? cc @ymqytw @adohe @fabianofranz
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38990, 45781, 46225, 44899, 43663) Support parallel scaling on StatefulSets Fixes #41255 ```release-note StatefulSets now include an alpha scaling feature accessible by setting the `spec.podManagementPolicy` field to `Parallel`. The controller will not wait for pods to be ready before adding the other pods, and will replace deleted pods as needed. Since parallel scaling creates pods out of order, you cannot depend on predictable membership changes within your set. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38990, 45781, 46225, 44899, 43663) Fix missing close file None
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38990, 45781, 46225, 44899, 43663) kubectl: fixes issues #45736 and #45737 **What this PR does / why we need it**: This PR improves the help displayed by the `kubectl proxy` command. **Which issue this PR fixes**: fixes #45736, fixes #45737 **Special notes for your reviewer**: NONE **Release note**: NONE ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38990, 45781, 46225, 44899, 43663) migrate set generation to go_genrule Depends on https://github.com/kubernetes/release/pull/238
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix kubelet event recording **What this PR does / why we need it**: There are numerous areas where the kubelet was not properly recording events due to an incorrect type. To keep this small, I updated all references to `RefManager` that result in throwing an event to ensure it does a conversion. **Which issue this PR fixes** Fixes https://github.com/kubernetes/kubernetes/issues/46241 Fixes #44348 Fixes #44652 **Special notes for your reviewer**: I updated all references I could find to the existing RefManager in kubelet. **Release note**: ```release-note fix kubelet event recording for selected events. ```
-
- 22 May, 2017 33 commits
-
-
Roberto J Rojas authored
Adds long description from #45902
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46133, 46211, 46224, 46205, 45910) Correct client-go TPR example type registration **What this PR does / why we need it**: Eliminate duplicate registration of third-party resource types in the _client-go_ example, precluding any number of readers from copying the mistake into their own applications as they adapt the example to their own needs. **Special notes for your reviewer**: See [the preceding discussion](https://github.com/kubernetes/kubernetes/commit/a6c97715ed7e24581dd9a02a256d57e56b70ac44#commitcomment-22146536) about a6c97715, committed as part of #45463 but only noticed after the merge. It's possible that we could take a few of the changes proposed here and apply them more broadly throughout the rest of the code, such as not exporting the `AddToScheme` var in favor of an actual function declaration. Given the flux in #44784, I'd prefer that we don't hold up these small touch-ups on a broader unification. People I expect will want to weigh in: @sttts, @caesarxuchao, and @nilebox.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46133, 46211, 46224, 46205, 45910) test/images/network-tester:bump rc/pod image version to 1.9 Current image version is 1.9,update the image version of the associated json file to 1.9 ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46133, 46211, 46224, 46205, 45910) Make CPU request for heapster in kubemark scale with the number of Nodes
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46133, 46211, 46224, 46205, 45910) Add more logs to kubelet_stats Ref. #46198
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46133, 46211, 46224, 46205, 45910) clientgo/examples/in-cluster: add instructions to run the example
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue LocalStorage api **What this PR does / why we need it**: API changes to support persistent local volumes, as described [here](https://github.com/kubernetes/community/pull/306) **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # Part of #43640 **Special notes for your reviewer**: There were a few items I was concerned about. Will add review comments in those places. **Release note**: NONE Note will be added in subsequent PR with the volume plugin changes
-
Derek Carr authored
-
Eric Tune authored
Move PDB controller and type ownership to SIG-Apps
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make Stackdriver Logging e2e tests less restrictive To reduce flakiness, as described in https://github.com/kubernetes/kubernetes/issues/45998, until further investigation /cc @fgrzadkowski
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Moved qos to api.helpers. **What this PR does / why we need it**: The `GetPodQoS` is also used by other components, e.g. kube-scheduler and it's not bound to kubelet; moved it to api helpers so client-go. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #N/A **Release note**: ```release-note-none ```
-
Eric Tune authored
Created OWNERS_ALIASES called sig-apps-reviewers from the union of reviewers in: pkg/controller/{cronjob,deployment,daemon,job,replicaset,statefulset}/OWNERS except removed inactive user bprashanth Created OWNERS_ALIASES called sig-apps-api-reviewers as the intersection of sig-apps-reviewers and the approvers from pkg/api/OWNERS. Used those OWNERS_ALIASES as the reviewers/approvers for the disruption controller, and API. -
Kubernetes Submit Queue authored
Automatic merge from submit-queue improve type assertion error Per discussion https://github.com/kubernetes/kubernetes/pull/45980#issuecomment-302524829. ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Disambiguate schedule, assume, and bind in functions as well as in Addresses my comments in #45972 about how these metrics need to be disambiguated. - separates schedule, assume, and bind. - renames variables like `dest` to be explicit. - removes the logging statement to occur outside of the timed portion of the metric measurement. Generally makes `sheduleOne` a happy function to read :)
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46164, 45471, 46037) NS controller: don't stop deleting GVRs on error **What this PR does / why we need it**: If the namespace controller encounters an error trying to delete a single GroupVersionResource, add the error to an aggregated list of errors and continue attempting to delete all the GroupVersionResources instead of stopping at the first error. Return the aggregated error list (if any) when done. This allows us to delete as much of the content in the namespace as we can in each pass. **Special notes for your reviewer**: This may help with some of the namespace deletions taking too long in our e2e tests. **Release note**: ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 46164, 45471, 46037) validate oidc flags This change validate oidc flags for kube-apiserver. **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**: ```NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add script to dump kubemark master logs First step towards solving the issue https://github.com/kubernetes/kubernetes/issues/46109. cc @kubernetes/test-infra-maintainers @wojtek-t @gmarek
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 45864, 46169) Account newly ready replicas as progress @kubernetes/sig-apps-pr-reviews
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 45864, 46169) Fix unit tests for autoregister_controller.go reliable Fixes https://github.com/kubernetes/kubernetes/issues/45538 Still wip, and just have some questions which I left some comments in original issue above
-
gmarek authored
-
FengyunPan authored
-
gmarek authored
-
Steven E. Harris authored
Since NewSchemeBuilder registers the supplied Scheme transformation functions synchronously, there's no need for a subsequent call to (*SchemeBuilder).Register against the same instance.
-
Steven E. Harris authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert "Scheduler should use shared informer for pods" This reverts commit 479f01d3. @smarterclayton @deads2k - I don't really have time to debug this today, so for now I'm reverting this commit. We should try to understand what does it change with respect to #46196 (assuming that this will fix the problem).
-
Cao Shufeng authored
This change validate oidc flags for kube-apiserver.
-
billy2180 authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add version for fluentd-gcp config Fluentd-gcp config should be versioned, because otherwise during the update race can happen and the new pod can mount the old config
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix missing argument Signed-off-by:Ma Shimiao <mashimiao.fnst@cn.fujitsu.com> **What this PR does / why we need it**: format reads arg 3, have only 2 args ```release-note ```
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Use TabWriter to keep output of "kubectl get xx -w" aligned. Use TabWriter to keep output of "kubectl get xx -w" aligned. fixed #43126
-
Wojciech Tyczynski authored
This reverts commit 479f01d3.
-