- 18 Nov, 2016 16 commits
-
-
David Ashpole authored
added eviction minimum reclaim flags to test flags, and changed gce default config for eviction-hard to match what tests are using
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Append newline to the "deleted context ... " and "deleted cluster" message **What this PR does / why we need it**: Append newline to the "deleted context ... " message. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #35966 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Extend logging for unschedulable nodes
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue remove TPR registration, ease validation requirements Fixes https://github.com/kubernetes/kubernetes/issues/36007 . This removes the special casing for TPRs inside of the `UnstructuredObject`, which should allow CRUD against skewed kube api server levels. @kubernetes/kubectl @kubernetes/sig-cli @janetkuo
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Allow storing events on a separate disk Need to test possible performance improvements. cc @saad-ali
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Change image-puller restart policy to OnFailure This should help with some of the failures from #33380 cc @dchen1107 @bprashanth
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Require at least one version in ThirdPartyResource objects Fixes #36991
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue improve readme for contributor experience **What this PR does / why we need it**: This improves the top-level README. Removes broken links, removes links to make you bounce to another page, adds proper links to docs. Shuffles things around a bit and improves reading. @kubernetes/contributor-experience
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix leaking memory backed volumes of terminated pods Currently, we allow volumes to remain mounted on the node, even though the pod is terminated. This creates a vector for a malicious user to exhaust memory on the node by creating memory backed volumes containing large files. This PR removes memory backed volumes (emptyDir w/ medium Memory, secrets, configmaps) of terminated pods from the node. @saad-ali @derekwaynecarr
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Enable restart statefulset clusters in e2e tests cc @bprashanth @erictune @foxish @kow3ns @kubernetes/sig-apps
-
Jordan Liggitt authored
-
Janet Kuo authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Adding statefulset to the list of things kubectl says it knows about **What this PR does / why we need it**: Adding statefulset to the list of things kubectl says it knows about. **Special notes for your reviewer**: **Release note**: <!-- 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 NONE ``` cc @kubernetes/sig-apps @erictune
-
- 17 Nov, 2016 24 commits
-
-
Anirudh authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Bump fluentd-gcp image version To propagate https://github.com/kubernetes/kubernetes/pull/36993 Including release noted for the whole bunch of fluentd changes (https://github.com/kubernetes/kubernetes/pull/35618 mainly): ```release-note Default logging subsystem's resiliency was greatly improved, fluentd memory consumption and OOM error probability was reduced. ``` @piosz
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Node E2E: Remove kubelet related flags This PR: 1. **Add `KubeletConfig` in test context.** The configuration is dynamically retrieved from kubelet `configz/` endpoint after test node registers itself. 2. **Change tests to look at `KubeletConfig` instead of other kubelet related fields in test context.** 3. **Remove kubelet related flags from node e2e.** Add `kubelet-flags` to pass kubelet flags all together. Why do we need this change? 1. This is required by **node soaking test and node conformance test**. * **For node soaking test.** We'll have one job start the test environment, and another job running the actual test again and again. It's hard to tell the test by flag how kubelet is configured. * **For node conformance test.** Kubelet is usually started by user. It's hard and troublesome to tell the test by flag how kubelet is configured. 2. **No need to add another flag in node e2e for each kubelet flag we want to set in the test.** Just directly add the kubelet flag into `kubelet-flags`. In the future, 1. Kubelet start logic should be moved outside of the test. We should have standard kubelet launcher or standard cloud-init node setup script etc. 2. The test should validate kubelet configuration: * Whether the configuration is production ready? * Whether the configuration has conflicts? * Whether some configuration conflict with node e2e/conformance test is turned on (cloud provider etc.)? (Some configurations need to be turned off when running node e2e/conformance test) * ... /cc @kubernetes/sig-node
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove fixed docker daemon log time format in fluentd configs Fix https://github.com/kubernetes/kubernetes/issues/36893 Also, probably will fix https://github.com/kubernetes/kubernetes/issues/36890 @piosz
-
Random-Liu authored
-
Random-Liu authored
Remove kubelet related flags from node e2e. Add a single flag `kubelet-flags` to pass kubelet flags all together.
-
Random-Liu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add e2e test for statefulset updates Verify that one can (manually) update statefulset template cc @erictune @foxish @kow3ns @kubernetes/sig-apps
-
Ray Tsang authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Wait for all Nodes to be schedulable before running e2e tests This should fix the problem we're seeing when running tests on large clusters. cc @dchen1107
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Delete taint annotation when removing last taint It messes with debugging of tests failures. cc @davidopp @kevin-wangzefeng
-
sebgoa authored
-
gmarek authored
-
gmarek authored
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Allow passing custom list of admission plugins to kubemark Ref. #36985
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add more test cases to k8s e2e upgrade tests **Special notes for your reviewer**: Added guestbook, secrets, daemonsets, configmaps, jobs to e2e upgrade tests according to the discussions in #35078 Still need to run these test cases in real setup, raised a PR here for initial comments @quinton-hoole
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix hostname truncate. Fixes https://github.com/kubernetes/kubernetes/issues/36951. This PR will keep truncating the hostname until the ending character is valid. /cc @kubernetes/sig-node Mark v1.5 because this is a bug fix. /cc @saad-ali
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue make kubectl create --edit iterate `kubectl create --edit` is broken after #36148 merged. `kubectl create --edit` will fail when a manifest that contains multiple resources. I guess the root cause is that dynamic typer doesn't support a list of resources currently. This PR makes `kubectl create --edit` iterate again as `kubectl create`.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Federation: allow specification of dns zone by ID
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Replace controller presence checking logic fixes #36912
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert "add e2e test for kubectl in a Pod" Reverts kubernetes/kubernetes#33850 That PR introduced a test `Kubectl should be able to talk to api server kubectl running in a pod could talk to api server` that runs against GKE. Ever since the PR merged the test has been failing against [kubernetes-e2e-gke](https://k8s-gubernator.appspot.com/builds/kubernetes-jenkins/logs/kubernetes-e2e-gke) though it was initially passing in [kubernetes-e2e-gci-gke](https://k8s-gubernator.appspot.com/builds/kubernetes-jenkins/logs/kubernetes-e2e-gci-gke). Presumably this was because the path to kubectl was different between GCI and container-vm (the two test suites). PR https://github.com/kubernetes/kubernetes/pull/36864 attempted to fix this, but ended up breaking the test in both suites. That PR has been reverted (https://github.com/kubernetes/kubernetes/pull/36971). Because the test introduced in kubernetes/kubernetes#33850 is still broken, it is being reverted (we should've reverted immediately after it merged instead of waiting this long).
-