Gunju Kim
7c3dd0eb7b
Add an e2e test for updating a static pod while it restarts
2022-02-01 13:22:56 -05:00
Danielle Lancashire
9e5fac5bb2
make: test-e2e-node: default to containerd
...
Since removing dockershim, `make test-e2e-node` will fail by default as
there is no provided container runtime endpoint.
This commit defaults us to using containerd's default socket path as the
local test target, rather than failing hard.
2022-02-01 16:36:06 +01:00
Kubernetes Release Robot
0b5dbbeef1
CHANGELOG: Update directory for v1.24.0-alpha.2 release
2022-02-01 13:29:01 +00:00
Cezary Zawadka
3f5a8754d0
Applied review comments
2022-02-01 14:16:18 +01:00
Marcel Zięba
27336259ba
Add option to bootstrap kubeconfig for hollow-node
2022-02-01 11:56:02 +00:00
Kubernetes Prow Robot
954fa57f0e
Merge pull request #107470 from jlsong01/optimize_cj_status_update
...
Optimize cronjob controller status updates
2022-02-01 00:14:18 -08:00
ahrtr
972dc46a1f
replace deprecated io/ioutil with os and io for cmd
2022-02-01 13:59:41 +08:00
Kubernetes Prow Robot
6dd234d85c
Merge pull request #107386 from ZeusPerez/fix-kubetest-errors-when-executing-local-provider
...
Fix kubetest errors when executing local provider
2022-01-31 19:56:17 -08:00
Kubernetes Prow Robot
3b7e8da669
Merge pull request #100883 from xychu/add-lessthan-ut
...
Add tests for LessThanOrEqual
2022-01-31 18:07:52 -08:00
Jyoti Mahapatra
a1b52fb17a
extend sa token if audience is apiserver ( #105954 )
...
Signed-off-by: Jyoti Mahapatra <jyotima@amazon.com>
2022-01-31 16:01:52 -08:00
Kubernetes Prow Robot
7c2e612569
Merge pull request #106597 from claudiubelu/remove-windows-docker-tag
...
tests: Removes [Excluded:WindowsDocker] tag from Windows
2022-01-31 10:42:03 -08:00
Kubernetes Prow Robot
2fb24de42b
Merge pull request #107775 from denkensk/add-postfilter-info-to-event
...
Add details about preemption in the event for scheduling failed
2022-01-31 09:38:23 -08:00
Alex Wang
52275fc831
add preemption info in scheduling failed event
2022-02-01 00:37:16 +08:00
Kubernetes Prow Robot
0038bcfad4
Merge pull request #107863 from bryfry/master
...
apiserver: correct references to service-account-signing-key-file flag
2022-01-30 23:04:23 -08:00
Nick Turner
5adc316c13
Allow cloud controller manager flags to be set
2022-01-31 05:00:38 +00:00
Aditi Sharma
a251acdfc7
Source containerd env for repo installation
...
Signed-off-by: Aditi Sharma <adi.sky17@gmail.com>
2022-01-31 09:29:46 +05:30
Kubernetes Prow Robot
1c03e36f9a
Merge pull request #107869 from justinsb/e2e_feature_must_be_square_bracketed
...
e2e: Feature tags must be in square brackets
2022-01-30 17:38:23 -08:00
Kubernetes Prow Robot
ce52600a3a
Merge pull request #107847 from thockin/decorator-in-update-loop
...
apiserver: Call .Decorator inside update func
2022-01-30 12:42:24 -08:00
Tim Hockin
e927ce85b6
service REST: Call Decorator(old) on update path
...
This is causing a bug when upgrading from older releases to 1.23 because
of Service's maybe-too-clever default-on-read logic.
Service depends on `Decorator()` to be called upon read, to
back-populate old saved objects which do not have `.clusterIPs[]` set.
This works on read, but the cache saves the pre-decorated type (as it is
documented)
In 1.23, this code was refactored and it seems some edge-case handling
was inadvertently removed (I have not confirmed exactly what happened).
Test by aojea
2022-01-30 11:25:17 -08:00
justinsb
a905d7bfaf
e2e: Feature tags must be in square brackets
...
Otherwise the feature regexes that we use don't detect them.
This was relatively hidden because we don't have many e2e tests that
test multizone.
2022-01-30 13:10:04 -05:00
bryfry
038ad9b3a5
correct references to service-account-signing-key-file flag
2022-01-30 04:24:25 +00:00
Kubernetes Prow Robot
2e68fd2857
Merge pull request #107841 from aojea/fix_race_socks5
...
deflake TestRoundTripSocks5AndNewConnection unit test
2022-01-29 02:48:01 -08:00
Kubernetes Prow Robot
807cee8ad2
Merge pull request #107575 from andyzhangx/azurefile-volumeid-uuid
...
fix Azurefile volumeid conflict issue in csi migration
2022-01-28 19:04:02 -08:00
Kubernetes Prow Robot
a5d28a638f
Merge pull request #107816 from DuC-cnZj/master
...
fix flushBackoffQCompleted: remove defer
2022-01-28 10:16:31 -08:00
Antonio Ojea
5a43a45232
deflake TestRoundTripSocks5AndNewConnection unit test
...
The test was asserting the error from the proxy server, to avoid false
positives it was using a channel to communicate that the test has been
ended and the error was legit.
However, the channel was executed using a defer statement, and the connection
on the server could be closed accidentally by the connection request,
that was done later and used another defer statement to close it.
Since the connection defer was done later, it was executed before the
channel close.
2022-01-28 18:27:31 +01:00
SataQiu
ce50eed941
code-generator: fix the bug that ApplyConfiguration constructor missing WithKind/WithAPIVersion methods
2022-01-28 17:05:43 +08:00
Kubernetes Prow Robot
f49a15ae50
Merge pull request #107831 from liggitt/key-pod-by-uid
...
Include pod UID in secret/configmap cache key
2022-01-28 00:16:30 -08:00
Di Yi
9996c154cb
resolve casing issue
2022-01-28 15:50:43 +08:00
Kubernetes Prow Robot
83ca745412
Merge pull request #107797 from tkashem/revert-107456
...
Revert "Merge pull request #107456 from tkashem/apf-ssa"
2022-01-27 23:14:30 -08:00
Dave Chen
29a870da2e
kubeadm: warn only when config value is different with default value
...
Compare with two pointers will always show that they are different value,
so it will always print the warning message.
Signed-off-by: Dave Chen <dave.chen@arm.com>
2022-01-28 13:04:40 +08:00
Kubernetes Prow Robot
1c216c6ec8
Merge pull request #107777 from hxietkg/hxietkg/windows-numberofworkers-3
...
Increase number of workers to 3 for Windows
2022-01-27 20:50:30 -08:00
Jordan Liggitt
1d27942efc
Include pod UID in secret/configmap cache key
2022-01-27 22:21:52 -05:00
Kubernetes Prow Robot
0fe90ac48b
Merge pull request #107729 from tkashem/apf-pl-first
...
apf: create suggested pl before flowschema
2022-01-27 17:58:30 -08:00
Kubernetes Prow Robot
5949e8595f
Merge pull request #107793 from dgrisonnet/instrumentation-approver
...
Add dgrisonnet to sig-instrumentation approvers
2022-01-27 15:33:19 -08:00
Kubernetes Prow Robot
4dba52cdf4
Merge pull request #107821 from liggitt/kubelet-secret-manager
...
Move kubelet secret and configmap manager calls to sync_Pod functions
2022-01-27 08:26:58 -08:00
Jordan Liggitt
085693eff2
Move kubelet secret and configmap manager calls to sync_Pod functions
2022-01-27 10:09:13 -05:00
Kubernetes Prow Robot
f90267f062
Merge pull request #106840 from Nordix/multi-numa
...
ReservedMemory Configuration for NUMA
2022-01-27 06:46:25 -08:00
duc
040f8a4cf0
a flag to indicate whether or not to broadcast
...
change the returns above to breaks, add a flag to indicate whether or not to broadcast.
2022-01-27 21:52:30 +08:00
Kubernetes Prow Robot
f03c06ad57
Merge pull request #107796 from alexanderConstantinescu/agnhost-x-forwarded-for
...
Add request header retrieval to `agnhost netexec`
2022-01-27 04:54:25 -08:00
Alexander Constantinescu
0abaf68651
Add request header retrieval to agnhost netexec
...
Signed-off-by: Alexander Constantinescu <aconstan@redhat.com>
2022-01-27 12:52:15 +01:00
Kubernetes Prow Robot
b95e192ba4
Merge pull request #107815 from aojea/revert_ipvs_race
...
Fix race on unit test "kube-proxy ipvs: fix to prevent concurrent map read and map w…
2022-01-27 03:02:25 -08:00
andyzhangx
c2aba4901a
add namespace in azurefile volumeid
2022-01-27 09:29:13 +00:00
jlsong01
d281e25426
Optimize cronjob controller status updates
2022-01-27 17:09:47 +08:00
duc
c3bfb568f9
fix flushBackoffQCompleted: remove defer
...
'defer' is called in the 'for' loop, remove it
2022-01-27 17:08:12 +08:00
Cezary Zawdka
c92b922798
Applied review comments
2022-01-27 10:02:14 +01:00
Cezary Zawdka
f2e29bf4f0
GCE load balancer: skip instance group deletion
...
while using multiple IGs with rbs alpha feature gate enabled
2022-01-27 10:02:14 +01:00
Cezary Zawdka
187ad4695e
GCE load balancer: unit test for ensuring instance groups
...
while using multiple IGs with rbs alpha feature gate enabled
2022-01-27 10:02:13 +01:00
Cezary Zawdka
f3e8c3b30d
GCE load balancer: Stop managing instance groups for internal load balancer if rbs alpha feature gate enable
...
use multiple instance groups if present
2022-01-27 10:02:13 +01:00
Kubernetes Prow Robot
3f6793de48
Merge pull request #107786 from shiftstack/fqdn_hostname_comparison
...
Ensure the execHostnameTest() compares hostnames
2022-01-27 00:58:02 -08:00
Antonio Ojea
1c5d8cfdf7
fix flake test for ipvs graceful termination
2022-01-27 09:55:44 +01:00