Commit Graph

123007 Commits

Author SHA1 Message Date
bzsuni
61a35c2186 update cni from 1.4.1 to 1.5.0
Signed-off-by: bzsuni <bingzhe.sun@daocloud.io>
2024-05-25 10:33:52 +08:00
Kubernetes Prow Robot
ec93d3b71a
Merge pull request #123160 from bart0sh/PR133-e2e-node-device-plugin-fix-features
e2e_node: fix DevicePlugin feature flags
2024-05-24 09:23:10 -07:00
Kubernetes Prow Robot
e0e6c9633d
Merge pull request #125112 from neolit123/1.31-add-v-to-windows-pause-after-promo
dependencies: start using registry.k8s.io/pause:3.10
2024-05-24 03:55:56 -07:00
Marek Siarkowicz
98e384fcd0 Reset timer to zero when no progress notify was sent 2024-05-24 11:56:38 +02:00
Marek Siarkowicz
544ea42482 Use normal Mutex instead of RWMutex
There is no benefit of having RWMutex as we have one reader and multiple
writers. In such cases RWMutex has worse performance than Mutex.
2024-05-24 11:56:27 +02:00
Marek Siarkowicz
e6b54149bb Don't signal when lowering number of waiting routines
Signal is not needed as we never need to wake up when the waiting
is lowered, only when increased.
2024-05-24 11:55:53 +02:00
Marek Siarkowicz
7c0e9cda46 Use timer instead of ticker in progress requestor
Ticker behaves differently from what we want, we need a stable period
interval, but ticker doesn't provide that. From NewTicker docstring:
```
The ticker will adjust the time interval or drop ticks to make up for slow receivers.
```

Unfortunatelly there is no way to test it as the FakeClock doesn't
follow the real ticker behavior.
2024-05-24 11:55:51 +02:00
Lubomir I. Ivanov
5e290ebc90 switch k/k to pause version 3.10 2024-05-24 10:02:51 +03:00
Kubernetes Prow Robot
3332eef27d
Merge pull request #125111 from aojea/e2e_panic_lb
add logging on e2e loadbalancer test
2024-05-23 22:27:21 -07:00
Kubernetes Prow Robot
903aeed208
Merge pull request #125096 from carlory/add-carlory-as-kubeadm-reviewer
Add carlory (myself) in kubeadm reviewers
2024-05-23 21:02:44 -07:00
Brian Pursley
39d24b0877 Add logging to show which unexpected events were received in kubectl events e2e test
Co-authored-by: Antonio Ojea <antonio.ojea.garcia@gmail.com>
2024-05-23 20:33:17 -04:00
Antonio Ojea
5221df5074 add logging on e2e loadbalancer test 2024-05-23 23:32:08 +00:00
Kubernetes Prow Robot
8361522b40
Merge pull request #125108 from BenTheElder/gcb-docker-gcloud
update  gcb-docker-gcloud to latest, and pin digest
2024-05-23 14:55:50 -07:00
Benjamin Elder
043da7164d update gcb-docker-gcloud to latest, and pin digest
this is a staging repository, which has lower security than registry.k8s.io, so we should REALLY be pinning it.

TODO: This is one of the few places we still depend on GCR to build things. We should consider promoting this image to registry.k8s.io or using a different image.
2024-05-23 13:51:40 -07:00
Kubernetes Prow Robot
e5a98f8379
Merge pull request #125105 from BenTheElder/pause-build
pause: containerize wincat build
2024-05-23 13:38:35 -07:00
TessaIO
fe81d0d5ac test: improve unit tests for container name autocompletion
Signed-off-by: TessaIO <ahmedgrati1999@gmail.com>
2024-05-23 21:56:23 +02:00
Benjamin Elder
7aa5693fa3 containerize wincat build 2024-05-23 12:31:40 -07:00
Kubernetes Prow Robot
028b457cb5
Merge pull request #125090 from gjkim42/deflake-container-lifecycle-e2e-test
e2e: Increase preStop hook delay to deflake the test
2024-05-23 11:58:46 -07:00
Kubernetes Prow Robot
b021ce1029
Merge pull request #124036 from joremysh/decrease-running-time-of-test-param-ref
apiserver/pkg/admission/plugin/policy/validating make test parallel in for loop
2024-05-23 11:58:36 -07:00
Alexander Zielenski
0095f607ab prevent deprecated & removed from being generated for GA types 2024-05-23 10:42:50 -07:00
Alexander Zielenski
8d45bbea2b add prerelease lifecycle tags to GA types
Estimated based upon the milestone of the commit that added the original struct header. If the commit wasn't in a milestone used the deprecation of the prior beta api. If that wasn't available inferred the next available release from the date the commit was merged.
2024-05-23 10:42:49 -07:00
Kubernetes Prow Robot
5a121aad53
Merge pull request #125067 from neolit123/1.31-add-v-to-windows-pause
build/pause: add -v flag to the Windows pause binary. Add 3.10 changelog entry.
2024-05-23 08:16:05 -07:00
Kubernetes Prow Robot
ef39aa896a
Merge pull request #124948 from SataQiu/clean-20240519
kube-controller-manager: remove the deprecated horizontal-pod-autoscaler-upscale-delay and horizontal-pod-autoscaler-downscale-delay flags
2024-05-23 08:15:56 -07:00
Lukasz Szaszkiewicz
8c0c1f7201 client-go/rest: add TestWatchListWhenFeatureGateDisabled unit test 2024-05-23 16:38:52 +02:00
Lukasz Szaszkiewicz
3d97808b95 client-go/features/testing: intro SetFeatureGatesDuringTest 2024-05-23 16:38:52 +02:00
carlory
ba7b3bcbb6 Add carlory (myself) in kubeadm reviewers 2024-05-23 22:07:57 +08:00
Kubernetes Prow Robot
8339711e1f
Merge pull request #124779 from cici37/updateEnv
Update CEL default compatibility environment version  to 1.30
2024-05-23 07:02:10 -07:00
Kubernetes Prow Robot
b42bb8fa58
Merge pull request #124060 from iholder101/swap/tmpfs-noswap
[KEP-2400] Mount tmpfs memory-backed volumes with a noswap option if supported
2024-05-23 07:02:03 -07:00
Lubomir I. Ivanov
7871949990 build/pause: add -v flag to the Windows pause binary
Make the Windows pause.exe have the same -v flag as the Linux
pause binary.

_stricmp is documented here:
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/strcmp-wcscmp-mbscmp?view=msvc-170

The VERSION definition is passed on compile time for both OSes
in the Makefile via CFLAGS:

  $(TRIPLE)-gcc $(CFLAGS) -o $@ $^ && \

Add 3.10 version entry in the changelog.
2024-05-23 16:09:17 +03:00
Gunju Kim
65b9e560ce
e2e: Increase preStop hook delay to deflake the test
This delays the preStop hook to allow sufficient time for the readiness
probe to be executed.
2024-05-23 21:31:02 +09:00
Kubernetes Prow Robot
c9a1a0a3b8
Merge pull request #125072 from brianpursley/create-fix-validation
Fix validation of -f or -k flag in kubectl create command to be consistent with other commands
2024-05-22 22:34:27 -07:00
carlory
3812fa1d6d Fix kubelet on Windows fails if a pod has SecurityContext with RunAsUser.
Co-authored-by: rphillips <rphillips@redhat.com>
2024-05-23 12:44:51 +08:00
Kubernetes Prow Robot
073ce0e34b
Merge pull request #125076 from dims/missing-version-file-in-release-tarballs
Add missing "version" file in release tarballs
2024-05-22 19:40:59 -07:00
Kubernetes Prow Robot
25b3912c0d
Merge pull request #124997 from neolit123/1.31-deprecate-rootless-cp-fg
kubeadm: deprecate the RootlessControlPlane feature gate
2024-05-22 19:40:50 -07:00
Kubernetes Prow Robot
c9cfc74fd5
Merge pull request #124775 from benluddy/cbor-unstructuredlist
KEP-4222: Decode CBOR to UnstructuredList as UnstructuredJSONScheme does.
2024-05-22 19:40:41 -07:00
Kubernetes Prow Robot
df35f179ba
Merge pull request #125077 from eddiezane/ez/fix-test-simple-pod
Reduce file descriptors created in test
2024-05-22 17:49:27 -07:00
Kubernetes Prow Robot
ea06d605f7
Merge pull request #125071 from BenTheElder/ag-pause
kubectl logs test: use agnhost pause instaed of fixed duration sleep
2024-05-22 17:49:18 -07:00
Kubernetes Prow Robot
ff829fe036
Merge pull request #125073 from brianpursley/cli-runtime-owners
Update cli-runtime OWNERS file to use sig-cli-maintainers/sig-cli-reviewers
2024-05-22 16:46:45 -07:00
Kubernetes Prow Robot
06ba3d8ab6
Merge pull request #125068 from benluddy/cbor-decode-to-any
KEP-4222: Add unit tests for decoding CBOR into interface{} type
2024-05-22 15:43:50 -07:00
Kubernetes Prow Robot
dad8fe71f2
Merge pull request #124220 from HirazawaUi/fix-pod-restarted
[kubelet]: fixed container restart due to pod spec field changes
2024-05-22 15:43:36 -07:00
Eddie Zaneski
49f85ca854
Reduce file descriptors created in test
Signed-off-by: Eddie Zaneski <eddiezane@gmail.com>
2024-05-22 16:35:37 -06:00
Davanum Srinivas
4898651297
missing "version" file in release tarballs
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2024-05-22 17:52:45 -04:00
Kubernetes Prow Robot
5cdab888bb
Merge pull request #125027 from haircommander/e2e-swap-v1
e2e_node: skip swap tests on cgroupv1
2024-05-22 13:09:42 -07:00
Brian Pursley
667ff6c333 Update cli-runtime OWNERS file to use sig-cli-maintainers/sig-cli-reviewers 2024-05-22 15:57:37 -04:00
Benjamin Elder
12cbad2110 kubectl logs test: use agnhost pause instaed of fixed duration sleep 2024-05-22 12:40:56 -07:00
Brian Pursley
4fddd6a3cd Fix inconsistent validation of -f or -k flag in kubectl create command 2024-05-22 15:36:28 -04:00
Suriyan S
3a097f224a
Add unit tests for decoding CBOR into interface{} type
Co-authored-by: Ben Luddy <bluddy@redhat.com>
2024-05-22 14:43:10 -04:00
Kubernetes Prow Robot
84a7f1ea15
Merge pull request #125049 from srivastav-abhishek/flake-fix-logs-test
fixed flaky test TestLog/stateful_set_logs_with_all_pods by splitting expected output string
2024-05-22 09:11:30 -07:00
Abhishek Kr Srivastav
5de6f7cf61 fixed flaky test by splitting expected output string
addressed review comments
2024-05-22 20:39:44 +05:30
Kubernetes Prow Robot
74d578485d
Merge pull request #123910 from MarSik/fix-printer-leap-y
Fix printers tests - remove dependency on leap years
2024-05-22 07:51:29 -07:00