- 09 Sep, 2016 1 commit
-
-
Lucas Käldström authored
Make it possible to compile both etcd2 and etcd3 in the Makefile and compile attachlease for multiple arches as well
-
- 08 Sep, 2016 24 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix allow for non-ready nodes in e2e framework Ref #32257
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Pin ingresses etcd prefix for 1.3 compatibility fixes https://github.com/kubernetes/kubernetes/issues/32255
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue FakeWatcher with channel size constructor Follow up for #32234. Items in the PR: * Chan size option in watcher to prevent deadlock via buffering. * WatcherDispatcher refactoring.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix some error comment in create_service.go some comments were error. mofify these to match the real.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue the created path should be closed in test case
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Instruct PLEG to detect pod sandbox state changes This PR adds a Sandboxes list in `kubecontainer.Pod`, so that PLEG can check sandbox changes using `GetPods()` . The sandboxes are treated as regular containers (type `kubecontainer.Container`) for now to avoid additional changes in PLEG. /cc @feiskyer @yifan-gu @euank
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubectl rollout status waits for available pods <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: This changes kubectl rollout status to wait until all updated replicas are available before finishing. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #31130 **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 Changes 'kubectl rollout status' to wait until all updated replicas are available before finishing. ``` Currently kubectl rollout status finishes when Deployment.Spec.Replicas == Deployment.Status.UpdatedReplicas, but it's less surprising to the user for kubectl rollout status to wait until Deployment.Status.UpdatedReplicas == Deployment.Status.Replics == Deployment.Status.AvailableReplicas
-
Marcin Wielgus authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Extend logging for scalability tests debugging Ref #32257
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue api storage: Decouple Decorator from Filter Continue #28249 What? This PR decouples Decorator from Filter, i.e. remove Decorator in createFilter(). - For List, Decorator is called on returned list object. - For Watch, we implement a new watcher to pipe through decorator. Error will be returned as a watch event. Why? - We want to change filter to SelectionPredicate struct. But Decorator is designed to be coupled with filtering. - Per the discussion in #28249, decorator shouldn't be coupled to filter and error from Decorator should be returned instead of assuming false filtering.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue privatize, document, and scrub GenericAPIServer I've gone through more of the `GenericAPIServer` struct, started documenting what the fields do and privatizing ones that aren't used elsewhere or are only used by components that need some refactoring too.
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Kubelet rkt CRI use ImageService Implements `container.ImageService` and refactors the `pkg/kubelet/rkt` to use it
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add selfsubjectaccessreview API Exposes the REST API for self subject access reviews. This allows a user to see whether or not they can perform a particular action. @kubernetes/sig-auth
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add kubectl describe cmd support for vSphere volume This PR does following, Add kubectl describe cmd support for vSphere volume Examples: > kubectl describe pod redis ....... Volumes: vmdk-storage: Type: vSphereVolume (a Persistent Disk resource in vSphere) VolumePath: [Datastore] test1 FSType: ext4 ......... > kubectl describe pv pv0001 Name: pv0001 Labels: <none> Status: Available Claim: Reclaim Policy: Recycle Access Modes: RWO Capacity: 2Gi Message: Source: Type: vSphereVolume (a Persistent Disk resource in vSphere) VolumePath: [vsanDatastore] volumes/test11 FSType: ext4 No events. -
Kubernetes Submit Queue authored
Automatic merge from submit-queue vSphere Cloud provider null pointer exception This PR addresses issue #31823. SelectByType function in govmomi will panic if deviceType is not Array, Chan, Map, Ptr, or Slice. Also checking if vmDevices or vm are nil, there is nothing to cleanup.
-
Jordan Liggitt authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Save stderr since it may become nil fixes #32206 opts.Run() may set Err to nil
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Do not report warning event when an unknown provisioner is requested. with `StorageClass.Provisioner == <unknown plugin>`, we should wait for either external provisioner or volume admin to provide a PV for a claim instead of reporting an error. Fixes #31723
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add eviction e2e tests. This also disables the tests on GKE.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue choose a particular directory test-integration Enables `make test-integration WHAT=auth` or whatever particular integration test director you want to run.
-
Matt Liggett authored
-
Matt Liggett authored
Also refactor the test a bit.
-
- 07 Sep, 2016 15 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue updated client document
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix downward api tests to output node allocatable not node capacity @kubernetes/rh-cluster-infra @derekwaynecarr
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue tag scheduledjob e2e as [Feature:ScheduledJob] [Feature:...] tag is recognized by most e2e suites and will prevent test from being run in suites where it should not. This pattern is used by other alpha feature tests. This change will allow #31957 to be reapplied without breaking gke tests. Side note, I'm collecting all alpha feature e2e tests to run in the [kubernetes-e2e-gce-alpha](http://kubekins.dls.corp.google.com/job/kubernetes-e2e-gce-alpha-features/) suite. This will be run there, alongside [Feature:ExternalTrafficLocalOnly] and [Feature:PetSet]. cc @timstclair @erictune
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue WatcherDispatcher for federated controller tests This PR fixes a problem when 2 informers create a watch for the same resource using the same client. Previously only one informer would receive updates. cc: @quinton-hoole @wojtek-t @kubernetes/sig-cluster-federation quinton-hoole: To provide some more context to those doing cherrypicking, the bug that this PR fixes makes federated unit tests fail intermittently, and generally behave very poorly.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Openstack heat network add lbaas subnet and floating network configuration support lbaas v2 add environment variable for fixed network ~~fix lb creation failed because of no 'name' for pool members according to lbaas v2 api~~ #27810 #25987 @dagnello @lavalamp @mikedanese []()
-
Michael Fraenkel authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Rename ConnectToDockerOrDie to CreateDockerClientOrDie This function does not actually attempt to connect to the docker daemon, it just creates a client object that can be used to do so later. The old name was confusing, as it implied that a failure to touch the docker daemon could cause program termination (rather than just a failure to create the client).
-
Marcin Wielgus authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Call push-ci-build.sh from the kubernetes/release repo.
-
Jeff Lowdermilk authored
[Feature:...] tag is recognized by most e2e suites and will prevent test from being run in suites where it should not. This pattern is used by other alpha feature tests.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Log an event when container runtime exceeds grace-period during eviction While debugging flakes in eviction, I encountered scenarios where the container run-time did not evict a pod within the allowed grace period. This could result in situations where a BE pod would not get killed fast enough and therefore a Bu pod was killed next (assuming there were no other BE pods) /cc @mtaufen @vishh
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Delete resources in federated namespce The more generic namespace cleanup will be done in 1.5. Issue to track: https://github.com/kubernetes/kubernetes/issues/31975 cc: @quinton-hoole @wojtek-t @kubernetes/sig-cluster-federation
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue renable hazelcast example test
-
David McMahon authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Enabled Rescheduler e2e for gke
-