Jing Xu
b01e2a387d
Update the dynamic volume limit in GCE PD
...
Currently GCE PD support 128 maximum disks attached to a node for all
machines types except shared-core. This PR updates the limit number to
date.
Change-Id: Id9dfdbd24763b6b4138935842c246b1803838b78
2019-05-01 10:38:14 -07:00
Kubernetes Prow Robot
803a14d47a
Merge pull request #77270 from grayluck/automated-cherry-pick-of-#75997-upstream-release-1.14
...
Automated cherry pick of #75997 : Bump debian-iptables versions to v11.0.2.
2019-04-30 23:48:56 -07:00
Kubernetes Prow Robot
4207ddebdd
Merge pull request #76510 from neolit123/automated-cherry-pick-of-#76505-origin-release-1.14
...
Automated cherry pick of #76505 : kubeadm: Don't error out on join with --cri-socket override
2019-04-30 18:42:56 -07:00
Kubernetes Prow Robot
ba432573fc
Merge pull request #76886 from andyzhangx/automated-cherry-pick-of-#76573-upstream-release-1.14
...
Automated cherry pick of #76573 : refactor detach azure disk retry operation
2019-04-30 17:27:09 -07:00
Kubernetes Prow Robot
f747e39e51
Merge pull request #76753 from feiskyer/automated-cherry-pick-of-#76691-upstream-release-1.14
...
Automated cherry pick of #76691 : Fix Azure SLB support for multiple backend pools
2019-04-30 17:26:56 -07:00
Kubernetes Prow Robot
d88be4d966
Merge pull request #77199 from andyzhangx/automated-cherry-pick-of-#77187-upstream-release-1.14
...
Automated cherry pick of #77187 : fix disk list corruption issue
2019-04-30 15:39:09 -07:00
Kubernetes Prow Robot
8c00490d9b
Merge pull request #76223 from frankgreco/automated-cherry-pick-of-#76216-upstream-release-1.14
...
Automated cherry pick of #76216 : ensuring that logic is checking for differences in listener
2019-04-30 15:38:56 -07:00
yankaiz
0ab612bdc2
Bump debian-iptables versions to v11.0.2.
2019-04-30 08:28:35 -07:00
Kubernetes Prow Robot
c72a5b2c10
Merge pull request #75719 from DataDog/automated-cherry-pick-of-#75295-upstream-release-1.14
...
Automated cherry pick of #75295 upstream release 1.14
2019-04-30 00:05:36 -07:00
Kubernetes Prow Robot
e9a577fe94
Merge pull request #77239 from mtaufen/fix-godeps
...
Fix verify godeps failure on 1.14
2019-04-29 20:17:36 -07:00
Michael Taufen
9a816bc411
Fix verify godeps failure
...
github.com/evanphx/json-patch added a new tag at the same sha this
morning: https://github.com/evanphx/json-patch/releases/tag/v4.2.0
This confused godeps. This PR updates our file to match godeps
expectation.
Fixes issue 77238
2019-04-29 16:19:17 -07:00
andyzhangx
c01eca5802
fix disk list corruption issue
2019-04-29 06:55:25 +00:00
Kubernetes Prow Robot
b8f2b772e3
Merge pull request #76829 from serathius/automated-cherry-pick-of-#76819-upstream-release-1.14
...
Automated cherry pick of #76819 : Restore metrics-server using of IP
2019-04-26 12:06:27 -07:00
andyzhangx
77d1d3f3bb
move disk lock process to azure cloud provider
...
fix comments
fix import keymux check error
add unit test for attach/detach disk funcs
2019-04-22 05:28:27 +00:00
andyzhangx
5376b645e3
refactor detach azure disk retry operation
2019-04-22 05:28:27 +00:00
Marek Siarkowicz
a98d10ba0b
Restore metrics-server using of IP addresses
...
This preference list matches is used to pick prefered field from k8s
node object. It was introduced in metrics-server 0.3 and changed default
behaviour to use DNS instead of IP addresses. It was merged into k8s
1.12 and caused breaking change by introducing dependency on DNS
configuration.
2019-04-19 16:55:38 +02:00
Pengfei Ni
9f8ceb05ed
Fix Azure SLB support for multiple backend pools
...
Azure VM and vmssVM support multiple backend pools for the same SLB, but
not for different LBs.
2019-04-18 16:12:50 +08:00
Kubernetes Prow Robot
3c949c7d41
Merge pull request #76446 from namreg/automated-cherry-pick-of-#76334-upstream-release-1.14
...
[1.14] Automated cherry pick of #76334 : proxy: Take into account exclude CIDRs while deleting legacy
2019-04-12 22:50:02 -07:00
Kubernetes Prow Robot
f1440798bb
Merge pull request #76528 from tpepper/release-1.14
...
Bump coreos/go-semver
2019-04-12 18:28:04 -07:00
Tim Pepper
d399072d3d
Bump coreos/go-semver
...
The https://github.com/coreos/go-semver/ dependency has formally release
v0.3.0 at commit e214231b295a8ea9479f11b70b35d5acf3556d9b. This is the
commit point we've been using, but the hack/verify-godeps.sh script
notices the discrepancy and causes ci-kubernetes-verify job to fail.
Fixes : #76526
Signed-off-by: Tim Pepper <tpepper@vmware.com>
2019-04-12 17:13:17 -07:00
Rostislav M. Georgiev
8921f03347
kubeadm: Don't error out on join with --cri-socket override
...
In the case where newControlPlane is true we don't go through
getNodeRegistration() and initcfg.NodeRegistration.CRISocket is empty.
This forces DetectCRISocket() to be called later on, and if there is more than
one CRI installed on the system, it will error out, while asking for the user
to provide an override for the CRI socket. Even if the user provides an
override, the call to DetectCRISocket() can happen too early and thus ignore it
(while still erroring out).
However, if newControlPlane == true, initcfg.NodeRegistration is not used at
all and it's overwritten later on.
Thus it's necessary to supply some default value, that will avoid the call to
DetectCRISocket() and as initcfg.NodeRegistration is discarded, setting
whatever value here is harmless.
Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>
2019-04-12 19:46:19 +03:00
Kubernetes Prow Robot
69b2bc0bc2
Merge pull request #76287 from wangzhen127/automated-cherry-pick-of-#76211-upstream-release-1.14
...
Automated cherry pick of #76211 to release-1.14: Use Node-Problem-Detector v0.6.3 on GCI
2019-04-12 03:18:47 -07:00
Igor German
dc734edb3c
proxy: Take into account exclude CIDRs while deleting legacy real servers
2019-04-11 18:13:13 +03:00
Kubernetes Prow Robot
e5a4a92fef
Merge pull request #76274 from krzysztof-jastrzebski/automated-cherry-pick-of-#76060-upstream-release-1.14
...
Automated cherry pick of #76060 : Delete only unscheduled pods if node doesn't exist anymore.
2019-04-09 00:15:07 -07:00
Zhen Wang
412a892706
Use Node-Problem-Detector v0.6.3 on GCI
2019-04-08 13:16:28 -07:00
Anago GCB
c749f6775e
Add/Update CHANGELOG-1.14.md for v1.14.1.
2019-04-08 18:21:48 +00:00
Krzysztof Jastrzebski
319930fe97
Delete only unscheduled pods if node doesn't exist anymore.
2019-04-08 19:31:57 +02:00
Anago GCB
2f2a038e16
Kubernetes version v1.14.2-beta.0 openapi-spec file updates
2019-04-08 17:02:01 +00:00
GRECO, FRANK
6a45dd9a22
ensuring that logic is checking for differences in listener
2019-04-05 18:20:23 -07:00
Kubernetes Prow Robot
b7394102d6
Merge pull request #76100 from yujuhong/automated-cherry-pick-of-#76099-upstream-release-1.14
...
Automated cherry pick of #76099 : GCE/Windows: disable stackdriver logging agent
2019-04-05 15:50:29 -07:00
Kubernetes Prow Robot
7fc21ccf92
Merge pull request #76102 from vllry/automated-cherry-pick-of-#75772-upstream-release-1.14
...
Automated cherry pick of #75772 : Avoid panic in cronjob sorting
2019-04-05 14:29:52 -07:00
Kubernetes Prow Robot
b5e1ea4a5e
Merge pull request #75742 from rhockenbury/automated-cherry-pick-of-#75515-upstream-release-1.14
...
Automated cherry pick of #75515 : godeps: update vmware/govmomi to v0.20 release
2019-04-05 13:11:22 -07:00
Kubernetes Prow Robot
530d3dbb22
Merge pull request #76208 from kewu1992/automated-cherry-pick-of-#76111-upstream-release-1.14
...
Automated cherry pick of #76111 : Fix empty array expansion error in cluster/gce/util.sh
2019-04-05 11:53:20 -07:00
Kubernetes Prow Robot
19d66e9a41
Merge pull request #75885 from kawych/automated-cherry-pick-of-#75362-upstream-release-1.14
...
Automated cherry pick of #75362 : Update gcp images with security patches
2019-04-05 10:05:22 -07:00
Ke Wu
aff81e2b0d
Fix empty array expansion error in cluster/gce/util.sh
...
Empty array expansion causes "unbound variable" error in
bash 4.2 and bash 4.3.
2019-04-05 09:55:08 -07:00
Kubernetes Prow Robot
da6808f1da
Merge pull request #76179 from vllry/automated-cherry-pick-of-#76109-upstream-release-1.14
...
Automated cherry pick of #76109 : Removed cleanup for non-current kube-proxy modes in
2019-04-05 08:41:20 -07:00
Vallery Lancey
18e4a87b6c
Fixed --cleanup-ipvs help text
2019-04-04 22:59:53 -07:00
Vallery Lancey
dfb1caf504
Revert "Fixed old function signature in kube-proxy tests."
...
This reverts commit 29ba1b0372
.
2019-04-04 22:59:53 -07:00
Vallery Lancey
8b10712192
Revert "Deprecated --cleanup-ipvs flag in kube-proxy"
...
This reverts commit 4f1bb2bd2f
.
2019-04-04 22:59:53 -07:00
Vallery Lancey
8378f7bcb8
Fixed old function signature in kube-proxy tests.
2019-04-04 22:59:53 -07:00
Vallery Lancey
4034cad269
Depricated --cleanup-ipvs flag in kube-proxy
2019-04-04 22:59:53 -07:00
Vallery Lancey
21340c50d0
Removed cleanup for non-current kube-proxy modes in newProxyServer()
2019-04-04 22:59:53 -07:00
Kubernetes Prow Robot
e169638264
Merge pull request #75956 from fabriziopandini/fix-kubeadm-upgrade-12-13-14
...
kubeadm : fix-kubeadm-upgrade-12-13-14
2019-04-04 16:07:19 -07:00
Kubernetes Prow Robot
2cd1cfe0b3
Merge pull request #76046 from liggitt/automated-cherry-pick-of-#75887-upstream-release-1.14
...
Automated cherry pick of #75887 : Explicitly flush headers when proxying
2019-04-04 10:33:53 -07:00
Kubernetes Prow Robot
4e0bcf3cf7
Merge pull request #75996 from roycaihw/automated-cherry-pick-of-#75781-upstream-release-1.14
...
Automated cherry pick of #75781 : kube-aggregator: bump openapi aggregation log level
2019-04-04 05:54:50 -07:00
Kubernetes Prow Robot
ea325751f1
Merge pull request #75733 from losipiuk/automated-cherry-pick-of-#75480-upstream-release-1.14
...
Automated cherry pick of #75480 : Update Cluster Autscaler version to 1.14.0
2019-04-04 02:28:52 -07:00
Kubernetes Prow Robot
71e429a832
Merge pull request #76101 from johnSchnake/automated-cherry-pick-of-#76039-upstream-release-1.14
...
Automated cherry pick of #76039 : Finish saving test results on failure
2019-04-04 01:12:50 -07:00
Kubernetes Prow Robot
e862736800
Merge pull request #75908 from pjh/automated-cherry-pick-of-#75855-upstream-release-1.14
...
Automated cherry pick of #75855 : Disable GCE agent address management on Windows nodes.
2019-04-03 23:47:22 -07:00
Kubernetes Prow Robot
7151a59cbf
Merge pull request #75901 from neolit123/automated-cherry-pick-of-#75900-origin-release-1.14
...
Automated cherry pick of #75900 : kubeadm: fix "upgrade plan" not working without k8s version
2019-04-03 23:47:15 -07:00
Kubernetes Prow Robot
9e2d66a1cb
Merge pull request #75851 from neolit123/automated-cherry-pick-of-#75847-origin-release-1.14
...
Automated cherry pick of #75847 : fix-external-etcd
2019-04-03 23:47:08 -07:00