Kensei Nakada
be14b026e3
fix the integration test
2023-06-11 04:47:18 +00:00
Kensei Nakada
a7eb7ed5c6
refactor: simplify RunScorePlugins for readability + performance
2023-06-11 03:29:05 +00:00
Piotr Betkier
587f992a7b
e2e: deflake a HPA CPU test by stabilizing cpu consumption
...
This test requires consistent CPU consumption for 3 minutes
to pass. Consumption on a single Pod is more consistent than
split across multiple Pods: no temporary usage drops in aggregate.
2023-06-10 10:42:56 +02:00
Kubernetes Prow Robot
7cd51541cd
Merge pull request #118595 from bridgetkromhout/add-cloud-provider-approvers
...
Updates chairs, tech leads for sig cloud provider
2023-06-09 13:24:12 -07:00
Abu Kashem
672614b57e
apf: refactor bootstrap ensure strategy
2023-06-09 13:31:23 -04:00
SataQiu
910630fbea
kubelet: mark '--azure-container-registry-config' flag as deprecated
2023-06-10 00:52:24 +08:00
Kubernetes Prow Robot
c840c94755
Merge pull request #118591 from SataQiu/add-lifecycle-20230609
...
Add SataQiu as a test/e2e/lifecycle approver
2023-06-09 09:14:14 -07:00
Bridget Kromhout
5e6ae25a33
Updates chairs, tech leads for sig cloud provider
...
Signed-off-by: Bridget Kromhout <bridget@kromhout.org>
2023-06-09 10:57:37 -05:00
Kubernetes Prow Robot
b2042d6ce4
Merge pull request #118338 from aroradaman/mv-ipset
...
move pkg/util/ipset inside pkg/proxy/ipvs
2023-06-09 08:14:24 -07:00
Kubernetes Prow Robot
4483bf66fe
Merge pull request #116635 from mengjiao-liu/contextual-logging-plugin-interpodaffinity
...
Migrated `pkg/scheduler/framework/plugins/interpodaffinity` to contextual logging
2023-06-09 08:14:13 -07:00
SataQiu
3436888478
move luxas as an emeritus approver of test/e2e/lifecycle
2023-06-09 22:06:06 +08:00
SataQiu
e97d9803f2
add SataQiu as a test/e2e/lifecycle approver
2023-06-09 21:49:31 +08:00
Kubernetes Prow Robot
0330fd91f4
Merge pull request #118532 from macostea/debug-remove-startup-probe
...
Remove StartupProbe on debug with pod copy
2023-06-09 01:22:13 -07:00
Tom Wieczorek
4977189c1b
Fix ginkgo noColor deprecation warning
...
Ginkgo changed the noColor command line arg to be no-color and will
issue the following warning:
You're using deprecated Ginkgo functionality:
=============================================
--noColor is deprecated, use --no-color instead
Fix this by changing all occurrences accordingly.
2023-06-09 09:34:05 +02:00
Mihai Costea
e6bc945a61
Add startup probe in integration test
2023-06-09 08:49:31 +03:00
Kubernetes Prow Robot
d93e1e95ff
Merge pull request #118548 from thockin/remove-warn-dup-volume-names
...
Remove unreachable warning on volume name dup
2023-06-08 19:44:12 -07:00
Kubernetes Prow Robot
577d524f08
Merge pull request #118513 from danwinship/proxy-node-ip
...
kube-proxy startup node IP detection
2023-06-08 17:30:12 -07:00
Kubernetes Release Robot
ea1de7517e
CHANGELOG: Update directory for v1.28.0-alpha.2 release
2023-06-08 23:34:07 +00:00
Kubernetes Prow Robot
de7360d9bc
Merge pull request #118115 from TommyStarK/gh_118090
...
kube-proxy: remove log warning about not using config file
2023-06-08 15:40:24 -07:00
Kubernetes Prow Robot
d58492b19c
Merge pull request #114688 from sanposhiho/sanposhiho/scheduling-one-score
...
feature(schedule_one): use heap to find the highest score node
2023-06-08 15:40:12 -07:00
Kubernetes Prow Robot
4706516100
Merge pull request #118563 from humblec/add-deprecated-plugins
...
Return deprecation warning for storageOS,PhotonPD,ScaleIO..etc
2023-06-08 10:26:13 -07:00
Dave Chen
54cae70678
Pass the mandatory parameters to support testing on ARM64
...
The parameters are needed to build the test binaries, e.g. `e2e_node.test`
`ginkgo` etc.
Signed-off-by: Dave Chen <dave.chen@arm.com>
2023-06-08 17:33:37 +08:00
Humble Chirammal
fdc49f5257
Return deprecation warning for storageOS,PhotonPD,ScaleIO..etc
...
Thes plugins are deprecated in earlier version of Kubernetes, however
the PVspec was not validated and provided enough warning that, these
are deprecated plugins. This commit add the warning and unit tests
for the same.
Signed-off-by: Humble Chirammal <humble.devassy@gmail.com>
2023-06-08 13:37:36 +05:30
Kubernetes Prow Robot
af99df6a6b
Merge pull request #118547 from thockin/fix-dup-env-var-warn
...
Fix warnings on "duplicate" env vars
2023-06-07 22:58:12 -07:00
Kubernetes Prow Robot
89bfdf0276
Merge pull request #117079 from qingwave/sort-volumes
...
kubelet/volumemanager: sort unmounted volumes in error message
2023-06-07 18:52:12 -07:00
Kubernetes Prow Robot
a2b8297a89
Merge pull request #118478 from ii/promote-csidriver-test
...
Promote test for StorageV1CSIDriver Endpoints + 3 Endpoints
2023-06-07 17:52:12 -07:00
Tim Hockin
151509fb74
Remove unreachable warning on volume name dup
...
Volume names are validated to be unique and always have been. The cited
issues are all about apply getting messed up, not the aspiserver
allowing dups.
```
$ k create -f /tmp/bad.yaml
The Deployment "bad-volumes-test" is invalid: spec.template.spec.volumes[1].name: Duplicate value: "config"
$ k apply --server-side -f /tmp/bad.yaml
Error from server: failed to create typed patch object (default/bad-volumes-test; apps/v1, Kind=Deployment): .spec.template.spec.volumes: duplicate entries for key [name="config"]
$ k apply -f /tmp/bad.yaml -o json | jq '.spec.template.spec.volumes'
The Deployment "bad-volumes-test" is invalid: spec.template.spec.volumes[1].name: Duplicate value: "config"
```
2023-06-07 17:14:49 -07:00
Kubernetes Prow Robot
336e46101c
Merge pull request #118422 from apelisse/dry-run-empty
...
dryrun: Don't reuse current object for conversion
2023-06-07 16:54:23 -07:00
Kubernetes Prow Robot
6b700c398b
Merge pull request #118143 from humblec/cephfs
...
deprecate CephFS plugin from available in-tree drivers.
2023-06-07 16:54:12 -07:00
Tim Hockin
0ddaa7f7c9
Fix warnings on "duplicate" env vars
...
Some use-cases are not actually wrong
2023-06-07 15:59:36 -07:00
Kubernetes Prow Robot
f17e2759f9
Merge pull request #118541 from jeremyrickard/distroless-iptables-go1205
...
bump distroless-iptables to v0.2.5
2023-06-07 15:12:12 -07:00
Chinmay Chapla
4820cc852a
Minor fix on variable
2023-06-07 19:37:55 +00:00
Chinmay Chapla
a6f5abfb81
Updating names from webhookconversion to conversionwebhook
2023-06-07 19:34:33 +00:00
Kubernetes Prow Robot
5f598179d8
Merge pull request #118492 from pacoxu/eviction-nil
...
fix eviction failing test for nil feature gates assignment
2023-06-07 12:02:24 -07:00
Kubernetes Prow Robot
a5332a839d
Merge pull request #118470 from mimowo/job-controller-fix-delay
...
Ensure Job sync invocations are batched by 1s periods
2023-06-07 12:02:13 -07:00
Jeremy Rickard
6d4abd7e7b
bump distroless-iptables to v0.2.5
...
Signed-off-by: Jeremy Rickard <jeremyrrickard@gmail.com>
2023-06-07 11:37:55 -06:00
Kubernetes Prow Robot
c042d6956f
Merge pull request #118507 from jeremyrickard/go1205
...
[go] Bump images, versions and deps to use Go 1.20.5
2023-06-07 10:20:23 -07:00
Kubernetes Prow Robot
fb9c22cb29
Merge pull request #118498 from pacoxu/nodegracefulshutdown-e2e
...
re-send the shutdown signal in case the dbus restart is not done
2023-06-07 10:20:12 -07:00
Ben Luddy
e5a15c87e9
Ensure timeout test handlers don't complete before timing out.
...
TestTimeoutRequestHeaders and TestTimeoutWithLogging are designed to
catch data races on request headers and include an HTTP handler that
triggers timeout then repeatedly mutates request headers. Sometimes,
the request header mutation loop could complete before the timeout
filter observed the timeout, resulting in a test failure. The mutation
loop now runs until the test ends.
2023-06-07 12:48:33 -04:00
Kubernetes Prow Robot
c4f44b3de3
Merge pull request #118524 from onsi/fix-115945
...
Fix flaky persistent volumes e2e test
2023-06-07 08:48:24 -07:00
Kubernetes Prow Robot
a54748d652
Merge pull request #118495 from MadhavJivrajani/cleanup-cacher-testing
...
storage: Cleanup cacher testing
2023-06-07 08:48:12 -07:00
carlory
f2a64cb91d
fix Cronjob status.lastSuccessfulTime not populated by a manually triggered job
2023-06-07 23:47:39 +08:00
Michal Wozniak
2f6b1d3c0f
Ensure Job sync invocations are batched by 1s periods
2023-06-07 17:32:46 +02:00
Kubernetes Prow Robot
8aeea9c1b8
Merge pull request #118531 from MadhavJivrajani/add-madhav-as-storage-layer-reviewer
...
storage: Add MadhavJivrajani as reviewer
2023-06-07 07:38:24 -07:00
Kubernetes Prow Robot
3fbf67a403
Merge pull request #116732 from czybjtu/cleanup_map_to_sets
...
Cleanup: use Set instead of map in endpointSlice utils
2023-06-07 07:38:13 -07:00
Jeremy Rickard
b1da721bdd
Update vendor with hack/update-vendor.sh
...
Signed-off-by: Jeremy Rickard <jeremyrrickard@gmail.com>
2023-06-07 08:26:14 -06:00
Onsi Fakhouri
88b69cdd0e
Fix flaky persistent volumes e2e test
...
Fixes issue 115945 by moving the cleanup code in AfterEach into DeferCleanup.
Cleanup stanzas are now paired with their setup stanzas within the body
of the BeforeEach and are now guarenteed to run in the correct order.
Prior to this there was no guarantee that the goroutine to recycle
unbound PVs had finished before the AfterEach began.
2023-06-07 07:51:52 -06:00
Jeremy Rickard
d9e12db547
Bump images, versions and deps to use Go 1.20.5
...
Signed-off-by: Jeremy Rickard <jeremyrrickard@gmail.com>
2023-06-07 07:44:27 -06:00
Kubernetes Prow Robot
7ef5ec499d
Merge pull request #117029 from Rajalakshmi-Girish/prune-junit-xml
...
Add flag to prune PASSED subtests in junit xml and have top level tests
2023-06-07 06:18:24 -07:00
Kubernetes Prow Robot
2057a48ee5
Merge pull request #114771 from sanposhiho/scheduling_perf_scheduler_scheduling_attempt_duration_seconds
...
feature(scheduler_perf): distinguish result in scheduler_scheduling_attempt_duration_seconds metric result
2023-06-07 06:18:13 -07:00