Kubernetes Prow Robot
efa5692c0b
Merge pull request #108045 from hakman/deprecate_pod-infra-container-image
...
Mark pod-infra-container-image flag as deprecated
2022-02-15 13:17:19 -08:00
Kubernetes Prow Robot
4033355d29
Merge pull request #107909 from sebastiansterk/master
...
🤓 simple grammar fix
2022-02-15 12:15:18 -08:00
Jordan Liggitt
33fc0b9651
Add PDB selector patch integration test
2022-02-15 14:45:22 -05:00
Jordan Liggitt
6619442def
Revert v1beta1 PodDisruptionBudget select patchStrategy
2022-02-15 13:54:52 -05:00
Tyler Stapler
9288c190f9
Add crit-tools arm64 sha512 hash to configure.sh
...
Change-Id: I2a06fb6ded78a755b71ce75a07fd1d9ad29f310c
2022-02-15 18:00:51 +00:00
Lubomir I. Ivanov
2fba7c8ade
test/e2e_kubeadm: fix matching UnversionedKubeletConfigMap defaults
...
The kubeadm defaults in features.go differ between versions.
e2e_kubeadm tests cannot import the kubeadm features.go,
or easily detect the versioned of the kubeadm binary used
to create the cluster.
Check for the existence of both versioned and unversioned
objects independent of the value of the FG. Once the FG
goes GA only the unversioned objects should be checked.
Without this change kubeadm e2e skew tests will fail where kubeadm
is at 1.24 (has the FG defaulted to true), the FG is not
explicitly set by the user and the k8s version is at 1.23.
2022-02-15 18:38:44 +02:00
Kubernetes Prow Robot
30a21e9abd
Merge pull request #108123 from tnqn/fix-EndpointsEqualBeyondHash
...
Fix incorrect parameters in EndpointsEqualBeyondHash
2022-02-15 08:04:03 -08:00
Abdullah Gharaibeh
1d8d74a841
generated files
2022-02-15 11:00:41 -05:00
Abdullah Gharaibeh
b2d2ec9e76
Graduate SuspendJob to GA
2022-02-15 10:46:13 -05:00
Quan Tian
5bd9892c94
Fix incorrect parameters in EndpointsEqualBeyondHash
2022-02-15 21:30:28 +08:00
Kensei Nakada
4671a8dc33
Fix broken link for common.sh
2022-02-15 22:22:27 +09:00
Kubernetes Prow Robot
d12787bc2c
Merge pull request #104698 from weiwenli97/windows_node_reboot
...
Add Windows node reboot
2022-02-15 02:34:02 -08:00
Kubernetes Prow Robot
d899c39ca3
Merge pull request #108111 from yselkowitz/nfs-provisioner-v3
...
test: bump nfs-provisioner to 3.0.1
2022-02-14 23:32:02 -08:00
Kubernetes Prow Robot
e42e2e877f
Merge pull request #107527 from wojtek-t/remove_selflink_ga
...
Graduate RemoveSelfLink to Stable
2022-02-14 19:46:02 -08:00
Kubernetes Prow Robot
64e83a7e43
Merge pull request #107945 from saschagrunert/cri-verbose
...
Add support for CRI `verbose` fields
2022-02-14 17:58:12 -08:00
Kubernetes Prow Robot
4e30fe40df
Merge pull request #108093 from hakman/remove_e2e_flag_container-runtime
...
Remove unused `--container-runtime` e2e.test flag
2022-02-14 14:04:31 -08:00
Kubernetes Prow Robot
1ae7da0b68
Merge pull request #108109 from eddiezane/ez/update-sig-cli-owners
...
Update sig-cli OWNERS
2022-02-14 12:06:30 -08:00
Yaakov Selkowitz
f44fdaca07
test: bump nfs-provisioner to 3.0.1
...
This is the first version built for multiple architectures.
2022-02-14 14:02:38 -05:00
Kubernetes Prow Robot
d374c954de
Merge pull request #108027 from neolit123/1.24-update-unversioned-kubelet-cm-fg
...
kubeadm: switch UnversionedKubeletConfigMap to true
2022-02-14 10:59:52 -08:00
Kubernetes Prow Robot
dea5589b1b
Merge pull request #107701 from kinderyj/perf/new-logic-optimiz-for-DetermineVolumeAction
...
perf:logic-optimiz-for-DetermineVolumeAction
2022-02-14 10:59:45 -08:00
Eddie Zaneski
040d575e9f
Update sig-cli OWNERS
...
Signed-off-by: Eddie Zaneski <eddiezane@gmail.com>
2022-02-14 10:55:35 -07:00
wojtekt
9732bf0d33
Autogenerated
2022-02-14 18:35:55 +01:00
Wojciech Tyczyński
c5a98327f5
Update SelfLink OpenAPI documentation
2022-02-14 18:35:55 +01:00
Wojciech Tyczyński
e46415bfbc
Bump RemoveSelfLink feature gate to GA
2022-02-14 18:35:54 +01:00
Wojciech Tyczyński
b62774f2f7
Couple remaining SelfLink references cleanup
2022-02-14 18:35:54 +01:00
Wojciech Tyczyński
9b2908ea3b
Cleanup apiserver storage selflink references where possible
2022-02-14 18:35:54 +01:00
Wojciech Tyczyński
d63b79ec47
Autogenerated
2022-02-14 18:35:54 +01:00
Wojciech Tyczyński
b3267092fa
Remove SelfLink from autogenerating applyconfigurations
2022-02-14 18:35:54 +01:00
Wojciech Tyczyński
2169997dfe
Remove Selflink from convertors
2022-02-14 18:25:12 +01:00
Dan Winship
88a3c6924e
topology_test.go: merge tests into a single test
...
Move all of the tests into TestFilterEndpoints, rather than separately
testing some of its internal helper functions (which will be going
away).
2022-02-14 10:17:03 -05:00
Dan Winship
6caa18a6b7
topology_test.go: remove unnecessary helper type
...
Remove the `endpoint` type, and just use `Endpoint` directly in the
testCases.
2022-02-14 10:16:59 -05:00
Dan Winship
e5ba48f7d1
topology_test.go: simplify expected result checking
...
Just check that the actual IP:port of the filtered endpoints is
correct; using DeepEqual requires us to copy all the extra endpoint
fields (eg, ZoneHints, IsLocal) from endpoints to expectedEndpoints,
which just makes the test cases unnecessarily bigger.
2022-02-14 10:16:55 -05:00
Dan Winship
7240d87f79
topology_test.go: fix a test setup bug
...
The "node local endpoints, hints are ignored" test was not actually
enabling topology correctly, so it would have gotten the expected
result even if the code was wrong. (Which, FTR, it wasn't.)
2022-02-14 10:16:45 -05:00
Kubernetes Prow Robot
67b2b347d1
Merge pull request #108103 from xmudrii/go-update-publishing-rules
...
Update publishing-bot rules for Go 1.17.7 / 1.16.14
2022-02-14 06:13:29 -08:00
Piotr Betkier
4c9d3d522f
e2e: Fix ResourceConsumer unstable request interval
...
Setting a new consumption target in autoscaling.ResourceConsumer caused
the internal sleep duration between consumption requests to reset.
The next consumption would then get delayed, starting after a gap of 0-30s.
2022-02-14 13:08:17 +01:00
Marko Mudrinić
b9abd5a710
Update publishing-bot rules for Go 1.17.7 / 1.16.14
...
Signed-off-by: Marko Mudrinić <mudrinic.mare@gmail.com>
2022-02-14 13:04:07 +01:00
jlsong01
feb84ccef4
add warning when kubectl set env from secret leads to uppercase
2022-02-14 19:08:56 +08:00
Kubernetes Prow Robot
b591acca57
Merge pull request #108047 from wojtek-t/fix_event_update
...
Fix validation of event updates
2022-02-14 02:27:28 -08:00
Wojciech Tyczyński
8c1e8355f8
Ensure non-nil items in lists
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
1e0b9c6e20
Remove unused selflink parameters from ContextBasedNaming
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
0ad588b27b
Relax to using namer instead of selflinker in API groupversion
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
c8ee055b73
Introduce Namer interface
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
0aaef27e59
Fix apiserver selflink tests
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
0a674d3ed9
Remove selflink setting from apiserver
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
8b758fb3b9
Remove selflink references in api tests
2022-02-14 11:11:56 +01:00
Wojciech Tyczyński
41ee6a3e44
Remove selflink integration tests
2022-02-14 11:11:56 +01:00
Kubernetes Prow Robot
21c0f6f6ff
Merge pull request #107677 from pohly/scheduler-integration-benchmark
...
scheduler integration benchmark improvements
2022-02-14 01:23:28 -08:00
Ciprian Hacman
57638ae7a1
Mark pod-infra-container-image flag as deprecated
...
Signed-off-by: Ciprian Hacman <ciprian@hakman.dev>
2022-02-14 09:11:51 +02:00
Ciprian Hacman
7d5afb322d
Remove unused --container-runtime
e2e.test flag
...
Signed-off-by: Ciprian Hacman <ciprian@hakman.dev>
2022-02-14 08:49:56 +02:00
Kubernetes Prow Robot
6669a016ae
Merge pull request #108091 from xmudrii/go-1.17.7
...
[go] Update Go to 1.17.7
2022-02-12 19:11:46 -08:00