- 18 Jul, 2016 1 commit
-
-
Rodrigo Campos authored
This is a proposal to address https://github.com/kubernetes/kubernetes/issues/28317.
-
- 04 Jul, 2016 11 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue e2e: increase timeout when waiting for deployment pods to be deleted Use the same timeout as the one used for waiting for the deployment reaper to complete. Takes a stab at https://github.com/kubernetes/kubernetes/issues/28067 @kubernetes/deployment PTAL
-
k8s-merge-robot authored
Automatic merge from submit-queue Simplify registries initialization
-
k8s-merge-robot authored
Automatic merge from submit-queue Increase timeouts in multiple node pool e2e tests for cluster autoscaler cc: @piosz @fgrzadkowski @jszczepkowski
-
k8s-merge-robot authored
Automatic merge from submit-queue Unify DeleteAllEtcdKeys in integration tests & start using namespaces in some tests Getting rid of DeleteAllEtcdKeys() and running all tests in separate namespace is necessary to run integration tests in parallel. Aside from that, this is first step of reducing amount of annoying logs in integration tests...
-
Wojciech Tyczynski authored
-
Marcin Wielgus authored
-
k8s-merge-robot authored
Automatic merge from submit-queue WIP - Handle map[]struct{} in DeepCopy Deep copy was not properly handling the empty struct case we use for Sets. @lavalamp I need your expertise when you have some time - the go2idl parser is turning sets.String into the following tree: type: sets.String kind: Alias underlying: map[string]sets.Empty kind: Map key: string kind: Builtin elem: set.Empty kind: Struct ^ should be Alias Looking at tc.Named, I'm not sure what the expected outcome would be and why you flatten there. -
Wojciech Tyczynski authored
-
Wojciech Tyczynski authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Make generated build tag parameterizable for go2idl Downstream generators that want to reuse the upstream generated types need to be able to define a different ignore tag (so that they can see the already generated types). @wojtek-t allows third parties to reuse conversions in api/v1 (for instance) because otherwise they are hidden when go2idl parses the dependency packages.
-
k8s-merge-robot authored
Automatic merge from submit-queue Run builds as the calling user This means no 'sudo' is needed to copy files out. @wojtek-t @smarterclayton
-
- 03 Jul, 2016 16 commits
-
-
Tim Hockin authored
-
Tim Hockin authored
-
Tim Hockin authored
-
Tim Hockin authored
This means no 'sudo' is needed to copy files out.
-
k8s-merge-robot authored
Automatic merge from submit-queue Cleanup a TODO from godeps -> vendor change This logs a false "error" message, so it's time to go. It was needed to ensure nobody has stale build images laying around, but that was quite a while ago, so it's probably safe now.
-
Clayton Coleman authored
-
k8s-merge-robot authored
Automatic merge from submit-queue kubectl: ignore only update conflicts in the scaler @kubernetes/kubectl is there any reason to retry any other errors?
-
Clayton Coleman authored
While testing this fix in OpenShift it was discovered that the PackageConstraint was overly aggressive - types that declare a public copy function should always return true. PackageConstraint is intended to limit packages where we might generate deep copy function, rather than to prevent external packages from being consumed.
-
Clayton Coleman authored
Downstream generators that want to reuse the upstream generated types need to be able to define a different ignore tag (so that they can see the already generated types).
-
k8s-merge-robot authored
Automatic merge from submit-queue Make validators return error strings Part of the larger validation PR, broken out for easier review and merge. Builds on previous PRs in the series. This is a group of smaller commits, so I don't waster precious PR numbers.
-
Tim Hockin authored
-
Tim Hockin authored
-
Tim Hockin authored
-
Tim Hockin authored
Also treat 0.0.0.0 as special, like loopback and multicast.
-
Tim Hockin authored
-
Tim Hockin authored
-
- 02 Jul, 2016 12 commits
-
-
Tim Hockin authored
This logs a false "error" message, so it's time to go. It was needed to ensure nobody has stale build images laying around, but that was quite a while ago, so it's probably safe now.
-
k8s-merge-robot authored
Automatic merge from submit-queue Only build essential targets for node e2e Roll-forward of https://github.com/kubernetes/kubernetes/pull/26830 (added ginkgo to targets)
-
k8s-merge-robot authored
Automatic merge from submit-queue Break deployment controller into separate self-contained files Fixes https://github.com/kubernetes/kubernetes/issues/25867 * rolling.go (has all the logic for rolling deployments) * recreate.go (has all the logic for recreate deployments) * sync.go (has all the logic for getting and scaling replica sets) * rollback.go (has all the logic for rolling back a deployment) * util.go (contains all the utilities used throughout the controller) Leave back at deployment_controller.go all the necessary bits for creating, setting up, and running the controller loop. Also add package documentation. @kubernetes/deployment @mfojtik this is an honest refactoring of the controller. In the long term, I believe it will help a lot with maintainance.
-
Michail Kargakis authored
* rolling.go (has all the logic for rolling deployments) * recreate.go (has all the logic for recreate deployments) * sync.go (has all the logic for getting and scaling replica sets) * rollback.go (has all the logic for rolling back a deployment) * util.go (contains all the utilities used throughout the controller) Leave back at deployment_controller.go all the necessary bits for creating, setting up, and running the controller loop. Also add package documentation.
-
k8s-merge-robot authored
Automatic merge from submit-queue Reorganize volume controllers and manager * Move both PV and attach/detach volume controllers to `controllers/volume` (closes #26222) * Rename `kubelet/volume` to `kubelet/volumemanager` * Add/update OWNER files
-
k8s-merge-robot authored
Automatic merge from submit-queue Move ungraceful PD tests out of flaky
-
k8s-merge-robot authored
Automatic merge from submit-queue Add links to issues referenced in some design documents Add link to issues referenced in `nodeaffinity.md` and `podaffinity.md`. It would be helpful to visit the issue directly. Also fix broken format of `podaffinity.md` when # is at the beginning of a line.
-
k8s-merge-robot authored
Automatic merge from submit-queue integration: cleanup unused API
-
k8s-merge-robot authored
Automatic merge from submit-queue Make GKE detect-instance-groups work on Mac. Make the fix from #27803 also work on mac. The GNU `expr` command supports both the `expr match STRING REGEXP` and `expr STRING : REGEXP` command syntax. The BSD `expr` command only has the `expr STRING : REGEXP` syntax. @fabioy @a-robinson
-
k8s-merge-robot authored
Automatic merge from submit-queue Declare out of disk when there is no free inodes #21546
-
k8s-merge-robot authored
Automatic merge from submit-queue Add MinReadySeconds to rolling updater Add MinReadySeconds support to RollingUpdater that allows to specify the number of seconds to wait on top of the pod is "ready" because its readiness probe passed.
-
saadali authored
-