Maciej Szulik
25507e8c3a
Provide more verbose empty config error for all config load actions
2020-05-07 15:57:00 +02:00
Clayton Coleman
3c9959a5d4
netexec: Allow graceful shutdown testing from netexec
...
The current /exit method is not sufficient to test graceful shutdown
behaviors within Kube that allow services to remain available during
rolling restarts. Add support for `wait=DURATION` and
`timeout=DURATION` to the exit handler and wire that to the Go http
server's graceful termination.
With these methods netexec can be used in a pod to simulate graceful
shutdown by adding a preStop handler that hits the exit endpoint with
a timeout and wait period.
2020-05-07 09:18:27 -04:00
Rostislav M. Georgiev
b46259b7af
kubeadm: Move IPv6DualStack feature gate to component config
...
kubeadm is setting the IPv6DualStack feature gate in the command line of the kubelet.
However, the kubelet is gradually moving away from command line flags towards component config use.
Hence, we should set the IPv6DualStack feature gate in the component config instead.
Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>
2020-05-07 14:28:07 +03:00
Kubernetes Prow Robot
9f76518c40
Merge pull request #90804 from dims/new-go-runner-image-for-distroless
...
New go-runner image for distroless scenarios
2020-05-07 03:03:08 -07:00
t-qini
991aadab42
Fix the flaky test for azure vmss.
2020-05-07 17:28:08 +08:00
wojtekt
7a65760f6e
Request for bookmarks in RetryWatcher
2020-05-07 10:26:28 +02:00
dopelsunce
d8b9095551
Fix race condition between Pop and Close FIFO queue
...
Fixes: kubernetes#90581 (the first part)
When `Close()` is invoked on an empty queue, the control loop inside `Pop()` has a small chance of missing the signal and blocks indefinitely due to a race condition. This PR eliminates the race and allows the control loop inside any blocking `Pop()` to successfully exit after Close() is called.
2020-05-07 00:40:35 -05:00
Kubernetes Prow Robot
be02fe5785
Merge pull request #90782 from justaugustus/base-images
...
base-images: Use new debian-iptables:v12.1.0
2020-05-06 22:23:22 -07:00
Kubernetes Prow Robot
7f78048594
Merge pull request #90781 from msau42/increase-timeout
...
Increase timeout waiting for driver to start on nodes
2020-05-06 22:23:08 -07:00
Gaurav Singh
37458b350e
Fix date race in storage
2020-05-06 22:57:08 -04:00
Gaurav Singh
254a21b66e
Apimachinery test: Fix date race
2020-05-06 22:50:00 -04:00
Davanum Srinivas
393e0952e9
New go-runner image for distroless scenarios
...
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2020-05-06 21:29:46 -04:00
Kubernetes Prow Robot
b144eec878
Merge pull request #90778 from msau42/update-mock
...
Update sidecars for csi mock driver
2020-05-06 17:57:08 -07:00
Walter Fender
339918d206
Add admin account on master for kube-up
...
Creates a master local admin account.
If you are on the master you can now run kubectl.
For issue 87481.
2020-05-06 17:19:58 -07:00
Aldo Culquicondor
2935480cc8
Move Plugin Args defaults to versioned packages
...
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2020-05-06 18:00:23 -04:00
Anago GCB
8c4e3faed3
CHANGELOG: Update directory for v1.15.12 release
2020-05-06 20:40:38 +00:00
Kubernetes Prow Robot
3416442e4b
Merge pull request #90644 from tanjunchen/remove-controller-dependency
...
test/e2e/framework:remove the direct dependency for k8s.io/kubernetes/pkg
2020-05-06 11:47:12 -07:00
Stephen Augustus
8e8a1a4038
build: Update guidance for updating base image tags and digests
...
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-06 13:38:19 -04:00
Aldo Culquicondor
883e4860d3
Clarify usage of MaxSkew and WheUnsatisfiable
...
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2020-05-06 13:15:51 -04:00
Kubernetes Prow Robot
0a6c826d3e
Merge pull request #90715 from jsafrane/gluster-ignore-notfound
...
Ignore NotFound error when cleaning up Gluster tests
2020-05-06 05:25:09 -07:00
Danil-Grigorev
9770574aa6
Ensure the server FQIN is stored and searched in lowercase (vsphere)
2020-05-06 12:09:03 +02:00
Patrick Ohly
5aa3805a5f
mock e2e test: reduce flakiness by not testing all calls
...
kubelet sometimes calls NodeStageVolume an NodePublishVolume too
often, which breaks this test and leads to flakiness. The test isn't
about that, so we can relax the checking and it still covers what it
was meant to cover.
2020-05-06 11:43:16 +02:00
Jan Safranek
fadc670c95
Send a nicer event when resizing attached Cinder volume
...
Cinder volumes cannot be resized when they're attached. Send a nicer event
when it happens:
error expanding volume "default/pvc1" of plugin "kubernetes.io/cinder": PVC used by a Pod can not be expanded, please ensure the PVC is not used by any Pod and is fully detached from a node
2020-05-06 11:11:48 +02:00
Kubernetes Prow Robot
c30da3839c
Merge pull request #90148 from deads2k/force-beta-to-have-tags
...
enforce prerelease-lifecycle generation for beta APIs
2020-05-06 01:19:08 -07:00
Xianglin Gao
6c6a702a99
kubeadm: delete prepull ds
...
Signed-off-by: Xianglin Gao <xianglin.gxl@alibaba-inc.com>
2020-05-06 15:52:19 +08:00
Kubernetes Prow Robot
4d813c1360
Merge pull request #90749 from andyzhangx/dangling-error
...
fix: azure disk dangling attach issue on VMSS which would cause API throttling
2020-05-05 23:43:09 -07:00
Stephen Augustus
aa79da2696
deps: Update dependents to use debian-iptables:v12.1.0
...
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-06 01:14:01 -04:00
Kubernetes Prow Robot
fecc66aa1f
Merge pull request #90755 from Huang-Wei/refine-schedQueue-test
...
Refine schedulerQueue test to avoid unneeded locks
2020-05-05 20:03:22 -07:00
Kubernetes Prow Robot
14eb291084
Merge pull request #90751 from yliaog/windep
...
Removed leftover comments for the deleted function Get_MgmtSubnet
2020-05-05 20:03:09 -07:00
Michelle Au
fc08f74157
Increase timeout waiting for driver to start on nodes to reduce test flakiness
...
Change-Id: Id553943e4473b387bf0ae14a18a90cb3a1bcd5c1
2020-05-05 18:10:10 -07:00
Kubernetes Prow Robot
d8a513ef99
Merge pull request #90697 from justaugustus/base-images
...
base-images: Use new debian-base:v2.1.0 and build new debian-iptables:v12.1.0
2020-05-05 18:01:23 -07:00
Kubernetes Prow Robot
8e3766f2a8
Merge pull request #90215 from jasimmons/pr_agnhost_netexec_http
...
Adds HTTPS logic to agnhost netexec
2020-05-05 18:01:09 -07:00
cici37
32411016cc
Copy RemoveTaintOffNode logic to k8s.io/cloud-provider
2020-05-05 16:47:09 -07:00
Tim Hockin
dff449ee9e
Set umask 0022 when building
...
Some binaries now run as non-root (kube-scheduler). When umask is 0027,
for example, the container image we build has the binary 0750, which is
not executable by the non-root UID.
2020-05-05 16:28:43 -07:00
Michelle Au
b34ad7e8ad
Update sidecars for csi mock driver
...
Change-Id: Ica8ca20404fd15dcfdbb912602934a5b9f24e4c6
2020-05-05 16:21:19 -07:00
Kubernetes Prow Robot
68cbb35ebc
Merge pull request #90737 from jiahuif/node-lifecyecle-controller-shutdown-order
...
CloudNodeLifecycleController: check node existence before shutdown status
2020-05-05 14:31:09 -07:00
Julian V. Modesto
df0ee9f88b
Mark the server-side dry-run feature as GA
2020-05-05 17:13:24 -04:00
Kubernetes Prow Robot
27f06962d8
Merge pull request #90744 from prameshj/kubedns-version
...
Bump up the kube-dns version to 1.15.10
2020-05-05 12:39:22 -07:00
Kubernetes Prow Robot
ff45f0d311
Merge pull request #90742 from jiahuif/remove-cloud-node-addresses-todo
...
remove obsolete TODO item of NodeAddresses
2020-05-05 12:39:09 -07:00
Stephen Augustus
d95dcc61f3
cluster/images/etcd: Bump etcd image tags for new debian-base
...
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-05 15:16:38 -04:00
Anago GCB
dac4f810f5
CHANGELOG: Update directory for v1.19.0-alpha.3 release
2020-05-05 16:40:14 +00:00
Kubernetes Prow Robot
a441f869d9
Merge pull request #90729 from wojtek-t/reduce_cache_size
...
Update duration to be kept in watchcache
2020-05-05 08:59:08 -07:00
Indeed
3117b6a084
fix case where node exists but shutdown.
2020-05-05 08:57:58 -07:00
Indeed
78ace24670
check node existence before shutdown status.
2020-05-05 08:57:58 -07:00
Indeed
84dfaace5d
add test about shutdown but non-existing node.
2020-05-05 08:51:21 -07:00
David Eads
83035890ad
refactor the CSR controller into distinct controllers to allow easy configuration of multiple signing keys
2020-05-05 10:18:04 -04:00
David Eads
d9d6b5804a
remove unnecessary removed tags since they can be auto-applied via policy
2020-05-05 09:49:34 -04:00
David Eads
24af2ed592
Revert "add prerelease lifecycle tags to apiregistration.k8s.io"
...
This reverts commit 823baa1fd0
.
2020-05-05 09:48:21 -04:00
David Eads
1aee03f8c8
add prerelease lifecycle tags to apiregistration.k8s.io
2020-05-05 09:48:21 -04:00
David Eads
8e43b5e5ea
add prerelease-lifecycle verification to all beta APIs
2020-05-05 09:47:31 -04:00