Kubernetes Submit Queue
beddc4f68d
Merge pull request #42535 from kargakis/require-deployment-requeue-for-rollback
...
Automatic merge from submit-queue (batch tested with PRs 31783, 41988, 42535, 42572, 41870)
controller: ensure deployment rollback is re-entrant
Make rollbacks re-entrant in the Deployment controller, otherwise
fast enqueues of a Deployment may end up in undesired behavior
- redundant rollbacks.
Fixes https://github.com/kubernetes/kubernetes/issues/36703
@kubernetes/sig-apps-bugs
2017-03-06 11:30:16 -08:00
Michail Kargakis
0eeef8e683
controller: ensure deployment rollback is re-entrant
...
Make rollbacks re-entrant in the Deployment controller, otherwise
fast enqueues of a Deployment may end up in undesired behavior
- redundant rollbacks.
2017-03-06 14:30:32 +01:00
Kubernetes Submit Queue
90a4eda96b
Merge pull request #41809 from kargakis/rollout-status-fix
...
Automatic merge from submit-queue
kubectl: respect deployment strategy parameters for rollout status
Fixes https://github.com/kubernetes/kubernetes/issues/40496
`rollout status` now respects the strategy parameters for a RollingUpdate Deployment. This means that it will exit as soon as minimum availability is reached for a rollout (note that if you allow maximum availability, `rollout status` will succeed as soon as the new pods are created)
@janetkuo @AdoHe ptal
2017-03-04 19:35:21 -08:00
Michail Kargakis
d70e63c231
controller: reduce log verbosity for deployments
2017-03-03 14:34:11 +01:00
Michail Kargakis
d20ac8766e
kubectl: respect deployment strategy parameters for rollout status
2017-03-03 14:12:08 +01:00
Łukasz Oleś
b27308c317
DaemonSet updates
...
It implements https://github.com/kubernetes/community/blob/master/contributors/design-proposals/daemonset-update.md
Feature https://github.com/kubernetes/features/issues/124
2017-02-27 09:15:56 +01:00
Kubernetes Submit Queue
3f4ef9ae11
Merge pull request #41250 from kargakis/switch-get-from-cache
...
Automatic merge from submit-queue (batch tested with PRs 41621, 41946, 41941, 41250, 41729)
controller: poll replica sets from the cache
2017-02-26 06:47:00 -08:00
Janet Kuo
51ba4d1e01
Sort slices before comparing in deployment util test
2017-02-23 12:42:42 -08:00
Janet Kuo
3718749c4a
Fix deployment helper - no assumptions on only one new ReplicaSet
2017-02-22 13:18:33 -08:00
Kubernetes Submit Queue
beed2ea460
Merge pull request #41252 from kargakis/drop-unnecessary-helper
...
Automatic merge from submit-queue (batch tested with PRs 41196, 41252, 41300, 39179, 41449)
Remove redundant pod helper
2017-02-15 04:14:12 -08:00
Michail Kargakis
fe137a8123
Remove redundant pod helper
2017-02-10 17:58:59 +01:00
Michail Kargakis
7bbf7b0473
controller: poll replica sets from the cache
2017-02-10 17:46:42 +01:00
Michail Kargakis
e13c3e481c
Add more logs during the progress check
2017-02-10 14:27:07 +01:00
Andy Goldstein
70c6087600
Replace hand-written informers with generated ones
...
Replace existing uses of hand-written informers with generated ones.
Follow-up commits will switch the use of one-off informers to shared
informers.
2017-02-06 13:49:27 -05:00
deads2k
c9a008dff3
move util/intstr to apimachinery
2017-01-30 12:46:59 -05:00
Dr. Stefan Schimanski
44ea6b3f30
Update generated files
2017-01-29 21:41:45 +01:00
Dr. Stefan Schimanski
79adb99a13
pkg/api: move Semantic equality to k8s.io/apimachinery/pkg/api/equality
2017-01-29 21:41:45 +01:00
Kubernetes Submit Queue
aace5a7b87
Merge pull request #40449 from deads2k/client-15-types
...
Automatic merge from submit-queue (batch tested with PRs 40239, 40397, 40449, 40448, 40360)
move the discovery and dynamic clients
Moved the dynamic client, discovery client, testing/core, and testing/cache to `client-go`. Dependencies on api groups we don't have generated clients for have dropped out, so federation, kubeadm, and imagepolicy.
@caesarxuchao @sttts
approved based on https://github.com/kubernetes/kubernetes/issues/40363
2017-01-26 14:23:42 -08:00
Kubernetes Submit Queue
5b75980c32
Merge pull request #40261 from kargakis/fix-deployment-completeness
...
Automatic merge from submit-queue
controller: old pods should block deployment completeness
Fixes https://github.com/kubernetes/kubernetes/issues/40207
2017-01-26 11:08:03 -08:00
deads2k
9488e2ba30
move testing/core to client-go
2017-01-26 13:54:40 -05:00
deads2k
5a8f075197
move authoritative client-go utils out of pkg
2017-01-24 08:59:18 -05:00
Clayton Coleman
469df12038
refactor: move ListOptions references to metav1
2017-01-23 17:52:46 -05:00
Michail Kargakis
506e71485f
controller: old pods should block deployment completeness
2017-01-21 23:52:05 +01:00
deads2k
1ce0637b27
move listers out of cache to reduce import tree
2017-01-20 15:01:38 -05:00
deads2k
c47717134b
move utils used in restclient to client-go
2017-01-19 07:55:14 -05:00
Clayton Coleman
9a2a50cda7
refactor: use metav1.ObjectMeta in other types
2017-01-17 16:17:19 -05:00
Kubernetes Submit Queue
a9f5065833
Merge pull request #39794 from kargakis/updated-unit-tests
...
Automatic merge from submit-queue
Updated unit tests
@janetkuo updated the flaky unit test to have the same structure with regard to uncasting as the rest of the tests. ptal
2017-01-13 18:39:55 -08:00
Michail Kargakis
9c4195c50b
Fix and tests for SelectorUpdatedBefore
2017-01-13 10:23:08 +01:00
Dawn Chen
3648eaae04
Revert "controller: unit tests for overlapping and recreate deployments"
2017-01-11 17:33:46 -08:00
Kubernetes Submit Queue
9eb7060892
Merge pull request #39088 from kargakis/unit-tests-for-the-d-controller
...
Automatic merge from submit-queue (batch tested with PRs 39483, 39088, 38787)
controller: unit tests for overlapping and recreate deployments
Belated unit tests for https://github.com/kubernetes/kubernetes/pull/38080 and https://github.com/kubernetes/kubernetes/pull/36748 .
@kubernetes/sig-apps-misc
2017-01-11 15:35:46 -08:00
Michail Kargakis
6013186ac3
Update deployment equality helper
2017-01-11 18:34:12 +01:00
deads2k
6a4d5cd7cc
start the apimachinery repo
2017-01-11 09:09:48 -05:00
Michail Kargakis
5dc96b5238
Fix and tests for SelectorUpdatedBefore
2017-01-10 12:57:38 +01:00
NickrenREN
639572ac68
fix redundant alias and remove unused function
2017-01-09 17:13:09 +08:00
Kubernetes Submit Queue
25e836010f
Merge pull request #39527 from kargakis/tests-and-benchmarks-for-adler-and-fnv
...
Automatic merge from submit-queue (batch tested with PRs 39466, 39490, 39527)
Test and benchmark adler and fnv
Split out of https://github.com/kubernetes/kubernetes/pull/38714
@kubernetes/sig-apps-misc
2017-01-06 11:30:15 -08:00
Michail Kargakis
c6a3af5521
Test and benchmark adler and fnv
2017-01-06 17:51:20 +01:00
Jeff Grafton
20d221f75c
Enable auto-generating sources rules
2017-01-05 14:14:13 -08:00
Michail Kargakis
ce04ee6170
extensions: add readyReplicas in Deployments
2017-01-02 11:59:15 +01:00
Mike Danese
161c391f44
autogenerated
2016-12-29 13:04:10 -08:00
Michail Kargakis
d19a1109e2
controller: sync deployments once they don't overlap anymore
2016-12-19 14:04:15 +01:00
Chao Xu
03d8820edc
rename /release_1_5 to /clientset
2016-12-14 12:39:48 -08:00
Mike Danese
c87de85347
autoupdate BUILD files
2016-12-12 13:30:07 -08:00
Wojciech Tyczynski
e8d1cba875
GetOptions in client calls
2016-12-09 09:42:01 +01:00
Jordan Liggitt
6819706adf
Pass addressable values to DeepCopy
2016-12-08 14:16:01 -05:00
Kubernetes Submit Queue
3519ba4099
Merge pull request #36648 from kargakis/follow-up-to-perma-failed
...
Automatic merge from submit-queue (batch tested with PRs 38377, 36365, 36648, 37691, 38339)
controller: sync stuck deployments in a secondary queue
@kubernetes/deployment this makes Deployments not depend on a tight resync interval in order to estimate progress.
2016-12-08 10:51:59 -08:00
Michail Kargakis
b3765c4df9
Backoff correctly when adopting replica sets/pods
2016-12-07 16:13:18 +01:00
Michail Kargakis
a8a7ca28f0
controller: sync stuck deployments in a secondary queue
2016-12-06 18:08:35 +01:00
Clayton Coleman
3454a8d52c
refactor: update bazel, codec, and gofmt
2016-12-03 19:10:53 -05:00
Clayton Coleman
5df8cc39c9
refactor: generated
2016-12-03 19:10:46 -05:00
yarntime@163.com
1e4c0f33a8
fix typo
2016-11-29 18:20:09 +08:00