- 22 Feb, 2017 13 commits
-
-
Andy Goldstein authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41844, 41803, 39116, 41129, 41240) NPD: Update NPD test. For https://github.com/kubernetes/node-problem-detector/issues/58. Update NPD e2e test based on the new behavior. Note that before merging this PR, we need to merge all pending PRs in npd, and release the v0.3.0-alpha.1 version of NPD. /cc @dchen1107 @kubernetes/node-problem-detector-reviewers
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41844, 41803, 39116, 41129, 41240) Cleanup client example **What this PR does / why we need it**: - Package level `config` variable in `third-party-resources/main.go` is not used, it is shadowed by the one defined in `main()`. Should probably be deleted. - Package level `kubeconfig ` variable in `out-of-cluster/main.go` is global - make it private to `main()`. **Which issue this PR fixes** This fixes https://github.com/kubernetes/client-go/issues/59, except the part about global `api.Scheme`, also adds test with interface check. Supersedes https://github.com/kubernetes/client-go/pull/61. **Special notes for your reviewer**: This is my first PR to Kubernetes :)
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41844, 41803, 39116, 41129, 41240) core/v1/event_expansion.go use v1.GetReference Fix https://github.com/kubernetes/client-go/issues/47.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41844, 41803, 39116, 41129, 41240) Allow for not-ready pods in large clusters This is to workaround issues with non-starting pods in large clusters in roughly 1/3rd of runs.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41844, 41803, 39116, 41129, 41240) test: fetch updated deployment before finding new and old rss @krousey @janetkuo ptal Ref https://github.com/kubernetes/kubernetes/issues/41518
-
Wojciech Tyczynski authored
HPA: Don't mutate the shared informer cache
-
Wojciech Tyczynski authored
Increase cpu for kubeproxy in kubemark in large clusters
-
Wojciech Tyczynski authored
Fix broken build
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
fix misspell "roughly" in config.go
-
Wojciech Tyczynski authored
-
Saad Ali authored
Move kube-dns ConfigMap creation/deletion out of federated services e2e tests.
-
- 21 Feb, 2017 27 commits
-
-
Michail Kargakis authored
-
Tim Hockin authored
modify-comment
-
Tim Hockin authored
Add owner file in /pkg/util/mount package
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Log that debug handlers have been turned on. **What this PR does / why we need it**: PR allows user to have a message in logs that debug handlers are on. It should allow the operator to know and automate a check for the case where debug has been left on. **Release note**: ``` NONE ```
-
Chao Xu authored
-
Madhusudan.C.S authored
Move kube-dns ConfigMap creation/deletion out of federated services e2e tests to federation-up.sh/federation-down.sh where the clusters are joined/unjoined.
-
Shyam JVS authored
Whitelist kubemark in node_ssh_supported_providers for log dump
-
Solly Ross authored
Conversions can mutate the underlying object (and ours were). Make a deepcopy before our first conversion at the very start of the reconciler method in order to avoid mutating the shared informer cache during conversion. Fixes #41768
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Adds owners for hack/verify-flags SIG-CLI as the owners of `hack/verify-flags`. ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Prompt user to use secure config in kubeadm If don't set the kubeconfig, the default action is to use insecure port to connect to apiserver. It's necessary to tell people to use the admin.kubeconfig ``` #kubectl cluster-info Kubernetes master is running at http://localhost:8080 KubeDNS is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kube-dns To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41364, 40317, 41326, 41783, 41782) Speedup dns-autoscaling test in large clusters
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41364, 40317, 41326, 41783, 41782) Debug what is hapening in large clusters What I'm seeing in large clusters is: ``` I0219 19:34:29.994] [90m/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/secrets.go:44[0m I0219 19:34:29.994] [90m------------------------------[0m I0219 21:27:11.421] Dumping master and node logs to /workspace/_artifacts I0219 21:27:11.422] Master SSH not supported for gke ``` i have no idea what is happening during those 2 hours, and would like to understand this.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41364, 40317, 41326, 41783, 41782) Add ability to enable cache mutation detector in GCE Add the ability to enable the cache mutation detector in GCE. The current default behavior (disabled) is retained. When paired with https://github.com/kubernetes/test-infra/pull/1901, we'll be able to detect shared informer cache mutations in gce e2e PR jobs.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41364, 40317, 41326, 41783, 41782) changes to cleanup the volume plugin for recycle **What this PR does / why we need it**: Code cleanup. Changing from creating a new interface from the plugin, that then calls a function to recycle a volume, to adding the function to the plugin itself. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #26230 **Special notes for your reviewer**: Took same approach from closed PR #28432. Do you want the approach to be the same for NewDeleter(), NewMounter(), NewUnMounter() and should they be in this same PR or submit different PR's for those? **Release note**: ```NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue [Federation] Modify the comments in Federation E2E tests to use standard Go conventions for documentation comments ```release-note NONE ```
-
Fabiano Franz authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add scheduler predicate to filter for max Azure disks attached **What this PR does / why we need it**: This PR adds scheduler predicates for maximum Azure Disks count. This allows to use the environment variable KUBE_MAX_PD_VOLS on scheduler the same as it's already possible with GCE and AWS. This is needed as we need a way to specify the maximum attachable disks on Azure to avoid permanently failing disk attachment in cases k8s scheduled too many PODs with AzureDisk volumes onto the same node. I've chosen 16 as the default value for DefaultMaxAzureDiskVolumes even though it may be too high for many smaller VM types and too low for the larger VM types. This means, the default behavior may change for clusters with large VM types. For smaller VM types, the behavior will not change (it will keep failing attaching). In the future, the value should be determined at run time on a per node basis, depending on the VM size. I know that this is already implemented in the ongoing Azure Managed Disks work, but I don't remember where to find this anymore and also forgot who was working on this. Maybe @colemickens can help here. **Release note**: ```release-note Support KUBE_MAX_PD_VOLS on Azure ``` CC @colemickens @brendandburns
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Spew replica sets in any deployment upgrade test failure Should help identifying whether the new replica set is considered as old after the upgrade (or maybe it's something else too). For debugging https://github.com/kubernetes/kubernetes/issues/41518 https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gke-latest-upgrade-master/5/ The failure seems suspiciously related to https://github.com/kubernetes/kubernetes/issues/40415 but it may not be related at all too... @kubernetes/sig-apps-bugs
-
Shyam Jeedigunta authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41709, 41685, 41754, 41759, 37237) Projected volume plugin This is a WIP volume driver implementation as noted in the commit for https://github.com/kubernetes/kubernetes/pull/35313.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41709, 41685, 41754, 41759, 37237) kubeadm: Add the --use-service-account-credentials to controller-manager **What this PR does / why we need it**: As outlined in https://docs.google.com/document/d/1PqI--ql3LQsA69fEvRq1nQWgiIoE5Dyftja5Um9ML7Q/edit, the controller-manager should run with `--use-service-account-credentials` for new clusters. Also removing a totally unnecessary flag **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 ``` @dmmcquay @deads2k @liggitt @mikedanese
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41709, 41685, 41754, 41759, 37237) Ignore Bootstrap Token secrets that don't use predictable names.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 41709, 41685, 41754, 41759, 37237) Tolerate unknown fields in strategic merge patch When using `apply` or `edit` with an object that has a compiled-in struct, if an unknown server-side field is sent, or is present in a provided file, the strategic merge patch computation fails looking up type info from the go struct If the field only exists in one side of the patch (is being added or removed), or is identical in both sides of the patch, we should tolerate missing type info, since it doesn't affect the patch.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubeadm: Hide the unnecessary --fuzz-iters flag super straightforward. We don't want this flag to leak into our UX. cc @jbeda @dmmcquay @deads2k
-
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-