- 03 Jul, 2016 12 commits
-
-
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.
-
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?
-
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 21 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
-
xiangpengzhao authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Includes the number of free inodes in stat summary #21546
-
xiangpengzhao authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Adding inode availability in eviction policy Updates the proposal to include inodes as an eviction parameter.
-
saadali authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Remove reference to documentation webpage from kubectl describe nodes output Fixes #23778
-
Eric Tune authored
Update CHANGELOG
-
Eric Tune authored
Summarized what I thought were the most interesting changes for all users, and for specific cloud providers. Still need better list of breaking changes.
-
Eric Tune authored
-
- 01 Jul, 2016 7 commits
-
-
k8s-merge-robot authored
Automatic merge from submit-queue Add a new container runtime interface This PR includes a proposal and a Go file to re-define the container runtime interface. This is based on the original doc: https://docs.google.com/document/d/1ietD5eavK0aTuMQTw6-21r67UU73_vqYSUIPFdA0J5Q/ The umbrella issues is #22964 /cc @kubernetes/sig-node
-
k8s-merge-robot authored
Automatic merge from submit-queue Use `CreatedByAnnotation` constant A nit but didn't want the strings to get out of sync. Signed-off-by:Doug Davis <dug@us.ibm.com>
-
Hongchao Deng authored
-
k8s-merge-robot authored
Automatic merge from submit-queue Add additional testing scenarios for compute resource requests=0 I was asked about the qos tier of a pod that specified `--requests=cpu=0,memory=0 --limits=cpu=100m,memory=1Gi` and in just investigating current behavior, realized we should have an explicit test case to ensure that 0 values are preserved in defaulting passes, and that this is still a burstable pod (but the lowest for that tier as it related to eviction) /cc @vishh
-
Yu-Ju Hong authored
This commit includes a proposal and a Go file to re-define the container runtime interface. Note that this is an experimental interface and is expected to go through multiple revisions once developers start implementing against it. As stated in the proposal, there are also individual issues to carry discussions of specific features.
-
k8s-merge-robot authored
Automatic merge from submit-queue Update scheduler_extender.md []() The filter call should actually return a schedulerapi.ExtenderFilterResult with an api.NodeList in it, instead of a raw api.NodeList.
-
k8s-merge-robot authored
Automatic merge from submit-queue Update "kubectl get all" to display resource type as part of name fixes #23838 release-note-none When running "kubectl get all", or printing any output with mixed resource kinds, an additional column is added to the output with each resource's kind: `kubectl get all --all-namespaces` ``` NAMESPACE NAME DESIRED CURRENT AGE default rc/docker-registry-1 1 1 23h testproject rc/node-1 0 0 2d NAMESPACE NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE default svc/docker-registry 172.30.36.42 <none> 5000/TCP 23h default svc/kubernetes 172.30.0.1 <none> 443/TCP,53/UDP,53/TCP 7d testproject svc/ruby-ex 172.30.187.128 <none> 8080/TCP 6d NAMESPACE NAME READY STATUS RESTARTS AGE default po/docker-registry-1-cpf8o 1/1 Running 1 23h ``` []()
-