Commit Graph

90940 Commits

Author SHA1 Message Date
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
Kubernetes Prow Robot
b48f5af260
Merge pull request #90603 from deads2k/beta-annotations-13-policy
add prerelease lifecycle tags to policy
2020-05-05 05:59:08 -07:00
andyzhangx
05d7570713 fix: azure disk dangling attach issue
fix: change parsing of vmas providerID

fix GetNodeNameByProviderID

fix spelling
2020-05-05 12:34:02 +00:00
Wei Huang
8c2a540cdc
Refine schedulerQueue test to avoid unneeded locks
- revert PR 88331
- remove createAndRunPriorityQueue()
- PriorityQueue is created and not run by default
- flushXYZ() is called on demand by manipulating FakeClock and Step()
2020-05-05 00:11:04 -07:00
Kubernetes Prow Robot
de66c643c4
Merge pull request #85564 from MorrisLaw/document-import-boss
create a file to hold documentation of import-boss in one place
2020-05-04 22:07:08 -07:00
Yu Liao
eb6ee368b9 Removed leftover comments for the deleted function Get_MgmtSubnet 2020-05-04 21:25:51 -07:00
Kubernetes Prow Robot
3365ed5625
Merge pull request #89193 from zshihang/master
set proper file permission for projected service account volume
2020-05-04 20:05:07 -07:00
Shihang Zhang
3db7275b54 set proper file permission for projected service account volume 2020-05-04 18:25:23 -07:00
Kubernetes Prow Robot
fbacb6e264
Merge pull request #90335 from pohly/cleanup-late-binding
e2e storage: wait for PV deletion also for late binding
2020-05-04 18:05:07 -07:00
Pavithra Ramesh
069381edec Bump up the kube-dns version to 1.15.10 2020-05-04 16:14:53 -07:00
Pavithra Ramesh
aaa0d12cc7 Add back anti-affinity to kube-dns pods.
This change also updates to the latest kube-dns images. The
anti-affinity change was previously rolled back in https://github.com/kubernetes/kubernetes/pull/59357
Adding this back as there have been imrpovements in scheduler
performance since.
2020-05-04 15:40:19 -07:00
Indeed
3af3ed8e7d remove TODO item about NodeAddresses
that indicates it is only used for getting addresses of calling instance,
which is no longer true for most cloud providers.

Original PR: #8899
2020-05-04 14:59:40 -07:00
Kubernetes Prow Robot
e8d6d3768e
Merge pull request #90561 from cici37/util
Copy patchNodeStatus logic to cloud-provider
2020-05-04 13:46:43 -07:00
Kubernetes Prow Robot
03a927e756
Merge pull request #90535 from gnufied/azure-zone-e2e
Azure - fix create azure disk PV in regions that don't have zones
2020-05-04 13:46:27 -07:00
Kubernetes Prow Robot
dc6c640a12
Merge pull request #90375 from cici37/removeConfigz
move pkg/util/configz to k8s.io/component-base
2020-05-04 13:46:09 -07:00
Kubernetes Prow Robot
ffec75da81
Merge pull request #90730 from brianpursley/kubernetes-90726
Fixed bug that caused TestKubeletDefault unit test to fail when run on systems that have systemd-resolved active
2020-05-04 12:16:41 -07:00
Kubernetes Prow Robot
b15c38e343
Merge pull request #90617 from CecileRobertMichon/find-bsd-util
Update find-binary-for-platform to work with non-GNU versions of find
2020-05-04 12:16:27 -07:00
Kubernetes Prow Robot
501781abe4
Merge pull request #90671 from deads2k/beta-annotations-15-storage
add prerelease lifecycle tags to storage.k8s.io
2020-05-04 10:20:26 -07:00
Brian Pursley
f8cd4a06ef Fixed bug that caused TestKubeletDefault to fail when run on systems that have systemd-resolved active 2020-05-04 11:55:54 -04:00
wojtekt
d1de6295bb Update duration to be kept in watchcache 2020-05-04 17:21:40 +02:00
Kubernetes Prow Robot
a509a8e123
Merge pull request #90670 from deads2k/beta-annotations-14-scheduling
add prerelease lifecycle tags to scheduling.k8s.io
2020-05-04 08:10:34 -07:00
Kubernetes Prow Robot
dca3e3f6ed
Merge pull request #90486 from aojea/iperf
Fix e2e network performance test
2020-05-04 08:10:26 -07:00
Vincent Boulineau
3bff11244b
kubelet: fix /stats/summary endpoint on Windows when init-containers are present on the node
Following changes in #87730, Kubelet is directly hcsshim to gather stats.
However, unlike `docker stats` API that was used before, hcsshim does not
keep information about exited containers.

When the Kubelet lists containers (`docker_container.go:ListContainers()`),
it sets `All: true`, retrieving non-running containers.

When docker stats is called with such container id, it'll return a valid JSON
with all values set to 0. The non-running containers are filtered later on in the process.

When the hcsshim is called with such container id, it'll return an error, effectively
stopping the stats retrieval for all containers.
2020-05-04 14:42:02 +02:00
Jan Safranek
de09560cf0 Ignore NotFound error when cleaning up Gluster tests
"Volumes GlusterFS should be mountable" is a bit flaky in a downstream CI.

This PR make "should be mountable" test on par with the other GlusterFS
tests (in_tree.go: DeleteVolume())
2020-05-04 12:57:45 +02:00
Giuseppe Scrivano
b21b1a5436
test, e2e_node: drop superfluous systemd properties
commit 43c56eb403 introduced a change
where CPUAccounting, CPUAccounting and TasksAccounting are enabled for
the systemd service.

It causes a regression on RHEL 7.8 where systemd-run doesn't allow to
set TasksAccounting.

Since Delegate= already enables all the controllers, it is superfluous
to specify them.

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2020-05-04 09:22:35 +02:00
Kubernetes Prow Robot
4ccfeb18d9
Merge pull request #90702 from dims/use-bionic-repo-for-docker
Use bionic repo for docker as focal is not yet available
2020-05-03 17:36:26 -07:00
Davanum Srinivas
0d38f21932
Use bionic repo for docker as focal is not yet available
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2020-05-03 16:50:49 -04:00
Jesus Herrera
aeb654495b Fix usage of incorrect TestContext variable 2020-05-03 15:34:43 -04:00
Stephen Augustus
7109a86f47 build: Build debian-iptables:v12.1.0 image
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-02 23:09:12 -04:00
Stephen Augustus
64300d8fff deps: Update dependents to use debian-base:v2.1.0
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-02 23:09:09 -04:00
Stephen Augustus
f828821eea releng: Point debian-base image references to K8s Infra
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-02 22:51:40 -04:00
Stephen Augustus
0357843651 build: Fixup GCB configs for debian-{base,iptables} images
- Fix dir arguments
- Drop 'BASE_REGISTRY' env var from debian-iptables config

Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-02 21:38:14 -04:00
Kubernetes Prow Robot
b943e49e76
Merge pull request #90567 from deads2k/beta-annotations-09.discovery
add prerelease lifecycle tags to discovery
2020-05-02 18:20:25 -07:00
MorrisLaw
7b208b6a83 create a file to hold documentation of import-boss in one place 2020-05-02 14:03:26 +00:00
Kubernetes Prow Robot
e01f553ddd
Merge pull request #90135 from claudiubelu/tests/subpath-retry-exec
tests: Retries exec after container restart due to liveness
2020-05-02 06:02:25 -07:00
Kubernetes Prow Robot
4a7360debf
Merge pull request #90665 from justaugustus/base-images
cleanup: Base image workflow improvements
2020-05-02 01:54:26 -07:00
Kubernetes Prow Robot
3f4f018acd
Merge pull request #90672 from deads2k/beta-annotations-16-apiservice
add prerelease lifecycle tags to apiregistration.k8s.io
2020-05-01 22:08:25 -07:00
Kubernetes Prow Robot
3e6161883f
Merge pull request #90347 from fejta/own
Update to repo-infra v0.0.4
2020-05-01 18:40:25 -07:00
Stephen Augustus
410b388ad0 build: Fix base image versions on dependents
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-01 20:39:07 -04:00
Stephen Augustus
99e6e06f5d build: Build debian-base:v2.1.0 image
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-01 20:38:58 -04:00
Stephen Augustus
03a1489623 build: Build pause:3.3 image
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
2020-05-01 20:35:48 -04:00