Kubernetes Release Robot
661899f1a1
CHANGELOG: Update directory for v1.22.14 release
2022-09-15 14:46:03 +00:00
Kubernetes Release Robot
994250a223
CHANGELOG: Update directory for v1.25.1 release
2022-09-15 14:42:13 +00:00
Kubernetes Prow Robot
7a68c8a21a
Merge pull request #112091 from xyz-li/master
...
kubectl: fix memory leaks in port forwarding client
2022-09-15 06:47:25 -07:00
Kubernetes Prow Robot
0c8f17f560
Merge pull request #112471 from flant/who-am-i-fix-flaky-test
...
Fix WhoAmI flaky test
2022-09-15 05:29:24 -07:00
Kubernetes Prow Robot
918f84cd90
Merge pull request #112463 from Nordix/fix-ipvs-filter
...
Corrects target in the KUBE-IPVS-FILTER chain
2022-09-15 02:45:22 -07:00
m.nabokikh
378d7f8f2b
Fix WhoAmI flaky test
...
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
2022-09-15 11:02:42 +02:00
Kubernetes Prow Robot
21dfce2d7d
Merge pull request #112437 from yangjunmyfm192085/cleanupproxy
...
cleanup useless check about CIDR
2022-09-15 01:23:21 -07:00
Lars Ekman
639b9bca5d
Corrects target in the KUBE-IPVS-FILTER chain
...
The target was "ACCEPT" which disabled any other check like
loadBalancerSourceRanges in the KUBE-PROXY-FIREWALL chain.
The target is now "RETURN".
2022-09-15 07:49:12 +02:00
Kubernetes Prow Robot
657776e52b
Merge pull request #112350 from chenk008/reduce_kubeadm_tls_wait
...
Reduce kubeadm tls bootstrap wait
2022-09-14 22:21:22 -07:00
chenk008
c601c7fd4c
reduce kubeadm tls bootstrap retry interval to 1s
2022-09-15 11:31:02 +08:00
Kubernetes Prow Robot
80ddaf23a8
Merge pull request #112458 from dims/switch-to-release-tag-for-antlr-v1.4.10
...
Switch to release tag for antlr : v1.4.10
2022-09-14 18:37:34 -07:00
Kubernetes Prow Robot
c5f795c8bf
Merge pull request #112222 from astraw99/fix-scheduler-misc
...
Update some scheduler misc
2022-09-14 18:37:22 -07:00
Kubernetes Release Robot
0ed7e2536b
CHANGELOG: Update directory for v1.23.11 release
2022-09-15 00:31:35 +00:00
Kubernetes Prow Robot
43a5c7b4e2
Merge pull request #112446 from gcampbell12/gc/update-dns-addon
...
Update kube-dns and nodelocaldns to 1.22.11
2022-09-14 15:39:33 -07:00
Kubernetes Prow Robot
4363c87bd5
Merge pull request #112433 from ncdc/reduce-SchemaHas-allocs
...
Reduce allocations in HasSchemas
2022-09-14 15:39:21 -07:00
Kubernetes Release Robot
6e0de20fbb
CHANGELOG: Update directory for v1.24.5 release
2022-09-14 20:44:53 +00:00
Kubernetes Prow Robot
9f62f4f087
Merge pull request #112392 from alexkats/enable-tests-for-large-clusters
...
Remove 'DisabledForLargeClusters' tag for LB tests
2022-09-14 13:07:34 -07:00
Kubernetes Prow Robot
4e8b11d441
Merge pull request #111333 from flant/selfsubjectattributesreviews
...
Add auth API to get self subject attributes
2022-09-14 13:07:22 -07:00
Davanum Srinivas
9f75c56646
Switch to release tag for antlr : v1.4.10
...
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2022-09-14 15:54:34 -04:00
Kubernetes Prow Robot
148476eff1
Merge pull request #112427 from gnufied/add-zone-field-cloud-config-test
...
Add zone field to vsphere test cloudconfig
2022-09-14 11:09:25 -07:00
Kubernetes Prow Robot
03d688c4b8
Merge pull request #112178 from kushagra98/hpa-scale-down
...
FIX: HPAs scale down with target >= 100
2022-09-14 11:09:13 -07:00
Kubernetes Prow Robot
b077a9ad87
Merge pull request #111420 from muyangren2/azure_auth_assert
...
Fix test order staging/src/k8s.io/legacy-cloud-providers/azure/auth/azure_auth_test.go
2022-09-14 11:09:01 -07:00
Kubernetes Prow Robot
ee94dce5b1
Merge pull request #112015 from humblec/glusterfs-gone
...
Removal of GlusterFS code from the repo
2022-09-14 10:03:00 -07:00
m.nabokikh
00dfba473b
Add auth API to get self subject attributes
...
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
2022-09-14 18:00:26 +02:00
Kubernetes Prow Robot
c7d47e4c94
Merge pull request #112353 from dgrisonnet/update-max-sync-backoff
...
Update endpointslice controller maximum sync backoff delay to match expected sequence of delays
2022-09-14 08:55:00 -07:00
Kubernetes Prow Robot
c45ca46cdb
Merge pull request #112387 from mythi/kubelet-devicemanager-topologyinfo
...
devicemanager: do not leak empty TopologyInfo to TopologyManager
2022-09-14 07:17:00 -07:00
George Campbell
4f5ccb834e
Update kube-dns and nodelocaldns to 1.22.11
2022-09-14 14:34:45 +01:00
Mikko Ylinen
68bb0935bd
devicemanager: do not leak empty TopologyInfo to TopologyManager
...
Device Plugins that wish to leverage the Topology Manager can send back a populated
TopologyInfo struct as part of the device registration, along with the device IDs
and the health of the device. TopologyInfo is converted to TopologyHints and
used by TopologyManager to find the optimal/desired resource allocation for a Pod.
If a plugin sends an empty but non-nil instance of TopologyInfo for a resource,
devicemanager passes it on as an empty instance of TopologyHint which is
currently interpreted as "Hint Provider has no possible NUMA affinities
for resource" which further means that pods requesting that resource will fail.
To not block device resources that pass TopologyInfo{Nodes:[]*NUMANode{}} from being
used, interprete that as nil set of hints and not a []TopologyHint{}.
Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
2022-09-14 16:13:31 +03:00
Kubernetes Prow Robot
178f246bbc
Merge pull request #111381 from muyangren2/assert_Equal_azure
...
Fix test order pkg/volume/azuredd/azure_common_test.go
2022-09-14 04:59:01 -07:00
Kubernetes Prow Robot
9e65786254
Merge pull request #112421 from pohly/e2e-annotated-location
...
e2e: improve description of framework callbacks
2022-09-14 01:09:00 -07:00
B Aravind
b307321c0a
I have evaluated TODO retry remove if feasible ( #112383 )
...
Hi team, hope u all doing well.
I have checked TODO that to remove "retry" if feasible but it's important i think that it shouldn't be removed because it was used in every file on your repo.
Update idempotency.go
Update idempotency.go
Update idempotency.go
2022-09-13 22:31:00 -07:00
JunYang
fc6b421d97
cleanup useless check about CIDR
2022-09-14 11:43:35 +08:00
Kubernetes Prow Robot
d5e5f48b88
Merge pull request #112406 from Riaankl/createCoreV1NamespacedBinding_ineligible
...
Update_ineligible_endpoints.yaml : add createCoreV1NamespacedBinding to the list
2022-09-13 19:01:01 -07:00
Andy Goldstein
1572e0481f
Reduce allocations in HasSchemas
...
Signed-off-by: Andy Goldstein <andy.goldstein@redhat.com>
2022-09-13 20:35:18 -04:00
Kubernetes Prow Robot
ea4c28c7f8
Merge pull request #112403 from akankshakumari393/check_mount_state
...
Call SetupDevice for Block Volume only if Volume is not globally Mounted
2022-09-13 15:45:12 -07:00
Kubernetes Prow Robot
cee668beba
Merge pull request #112205 from jprzychodzen/ensure-metric-registered
...
Ensure metric 'running_managed_controllers' is registered
2022-09-13 15:45:00 -07:00
Hemant Kumar
30ac00eeb5
Add zone field to vsphere test cloudconfig
2022-09-13 17:19:33 -04:00
Riaan Kleinhans
7ceeca13a3
Fix 1.17 to 1.7
2022-09-14 09:14:28 +12:00
Kubernetes Prow Robot
084a412e03
Merge pull request #112200 from pohly/client-go-shared-informer-factory-shutdown
...
client-go: support waiting for SharedInformerFactory shutdown
2022-09-13 09:43:01 -07:00
Humble Chirammal
d2f11fe7f9
update vendor dependencies for glusterfs removal code
...
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2022-09-13 20:17:05 +05:30
Humble Chirammal
c2a7bfd6b4
removal of glusterfs in-tree driver code from the source
...
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2022-09-13 20:11:50 +05:30
Kubernetes Prow Robot
7be35679b8
Merge pull request #112422 from liggitt/prune-root-replace
...
Prune unused root replace directives
2022-09-13 07:37:05 -07:00
Jordan Liggitt
a9fd8a8a46
Prune unused root replace directives
2022-09-13 09:30:26 -04:00
Patrick Ohly
84990d53cf
e2e: improve description of framework callbacks
...
When Ginkgo shows a BeforeEach/AfterEach/DeferCleanup, then it can only show
the source code where the callback was registered because there is no
description parameter. This can be improved by passing a custom CodeLocation.
Because a description like "set up framework" might not be enough, the source
code is still shown, too.
2022-09-13 14:27:32 +02:00
Riaan Kleinhans
f5502818ad
Update ineligible_endpoints.yaml
2022-09-13 11:16:42 +12:00
Riaan Kleinhans
4b4084915a
Update_ineligible_endpoints.yaml
...
remove createCoreV1NamespacedBinding
2022-09-13 09:35:58 +12:00
Patrick Ohly
e89d1d47e8
client-go: support waiting for SharedInformerFactory shutdown
...
SharedInformerFactory starts goroutines in Start and those can be stopped by
closing the stop channel. However, there was no API that waits for the
goroutines.
This is a problem for unit testing. A test has to return while the informers
are still running, which may get flagged by tools like
https://github.com/uber-go/goleak or by klog/ktesting when those informers
lead to log output.
While at it, more documentation gets added to address
https://github.com/kubernetes/kubernetes/issues/65036 .
2022-09-12 21:05:06 +02:00
Kubernetes Prow Robot
0f37b31206
Merge pull request #112046 from aojea/etcd_healthz
...
rate limite etcd healthcheck request
2022-09-12 12:01:27 -07:00
Kubernetes Prow Robot
3ac752e4a0
Merge pull request #112003 from sanposhiho/metrics-goroutine
...
feature(scheduler): add "goroutines" metric and deprecate the "scheduler_goroutines" metric
2022-09-12 12:01:16 -07:00
Kubernetes Prow Robot
5858aa2bef
Merge pull request #110267 from TinySong/auth-cani
...
update auto can-i error message
2022-09-12 12:01:05 -07:00