Skip to content

fix: indexer cache error when default evictor is re-initialized #1452

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 6, 2024

Conversation

a7i
Copy link
Contributor

@a7i a7i commented Jun 28, 2024

It appears that DefaultEvictor is re-initialized, which causes a conflict issue when adding the same indexer again.

closes #1440

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Jun 28, 2024
@a7i a7i force-pushed the defaultevictor-reinit branch from 3b02da4 to 7ab36da Compare June 28, 2024 04:34
@a7i
Copy link
Contributor Author

a7i commented Jun 28, 2024

/cc @ingvagabund

any ideas on how to make this better? to be honest, I'm not sure why DefaultEvictor is getting re-initialized. But perhaps this is possible in case of multiple profiles

@k8s-ci-robot k8s-ci-robot requested a review from ingvagabund June 28, 2024 04:36
@ingvagabund ingvagabund self-assigned this Jul 1, 2024
@ingvagabund
Copy link
Contributor

I'm not sure why DefaultEvictor is getting re-initialized. But perhaps this is possible in case of multiple profiles

Yeah. Each profile gets initialized separately. The same shared informer, a new instance of the default evictor.

@ingvagabund
Copy link
Contributor

Some thoughts:

  • what if two plugins register the same indexer? We should prefix each indexer with a plugin name (some time in the future)
  • should we register generic indexer so the default plugins do not need to register it on their own? This will not resolve the current issue. Yet, it will get rid of the error
  • should we create a separate shared informer for each profile? We don't limit the number of profiles. We probably should, e.g. to 100 or 1000 and extend later when needed?

@ingvagabund
Copy link
Contributor

ingvagabund commented Jul 1, 2024

The current implementation creates a new profile in each descheduling cycle. Yet, the created indexer never gets removed from the shared informer. Making every other descheduling cycle to error when minReplicas is set to a non-zero number.

@ingvagabund
Copy link
Contributor

ingvagabund commented Jul 1, 2024

Worth checking if the code can be cleanly refactored to initialize each plugin only once per the whole descheduler run. The primary motivation for re-initializing each plugin was to start clean. If we can guarantee no plugin will keep a state then this will be a nice improvement to the code base.

@a7i
Copy link
Contributor Author

a7i commented Jul 1, 2024

what if two plugins register the same indexer? We should prefix each indexer with a plugin name (some time in the future)

Why is that necessarily? This is no plugin logic inside the shared informer. And ideally we share the shared informer.

should we register generic indexer so the default plugins do not need to register it on their own? This will not resolve the current issue. Yet, it will get rid of the error

we certainly could, but we then need to compare it against the current implementation. I personally prefer this PR but open to feedback from others. For example, no need to initialize the shared informer for policies that do not need minReplicas check.

should we create a separate shared informer for each profile? We don't limit the number of profiles. We probably should, e.g. to 100 or 1000 and extend later when needed?

is there a reason for this? ideally we share it to reduce memory footprint.

@a7i
Copy link
Contributor Author

a7i commented Jul 1, 2024

Worth checking if the code can be cleanly refactored to initialize each plugin only once per the whole descheduler run. The primary motivation for re-initializing each plugin was to start clean. If we can guarantee no plugin will keep a state then this will be a nice improvement to the code base.

I think the issue is that the params/config for each can be different. Correct?

@ingvagabund
Copy link
Contributor

ingvagabund commented Jul 1, 2024

We could inject the params/config as "data" (alongside nodes and pods). Assuming the args do not interfere with a plugin initialization. Though, that will change the plugin API.

@ingvagabund
Copy link
Contributor

I think the issue is that the params/config for each can be different. Correct?

You are right. That was another motivation for it.

@ingvagabund
Copy link
Contributor

Note: We share a single shared informer through all the plugins. As long as the plugins are part of this repository we have a full control over how each indexer gets created. We don't have such control over custom plugins. Thus, we need to rely on good citizenship principles and assume anyone assembling their own deschedulers from the descheduling framework will take the extra step of making sure all the extra plugins create their indexes properly. Plugin owners can already define as many indexers as they like without following any good practices. The same holds for updating items in either of the informer caches without making a deep copy.

@ingvagabund
Copy link
Contributor

/approve
/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Jul 6, 2024
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ingvagabund

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jul 6, 2024
@k8s-ci-robot k8s-ci-robot merged commit 7657345 into kubernetes-sigs:master Jul 6, 2024
10 checks passed
@a7i a7i deleted the defaultevictor-reinit branch July 28, 2024 16:00
rouke-broersma referenced this pull request in broersma-forslund/homelab Sep 10, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [descheduler](https://redirect.github.com/kubernetes-sigs/descheduler)
| minor | `0.30.1` -> `0.31.0` |

---

### Release Notes

<details>
<summary>kubernetes-sigs/descheduler (descheduler)</summary>

###
[`v0.31.0`](https://redirect.github.com/kubernetes-sigs/descheduler/releases/tag/v0.31.0):
Descheduler v0.31.0

[Compare
Source](https://redirect.github.com/kubernetes-sigs/descheduler/compare/v0.30.1...v0.31.0)

#### What's Changed

- bump to to 1.22.3 to address CVE-2024-24788 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1408](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1408)
- Fix the replicas value type for the descheduler helm-chart by
[@&#8203;hanyouqing](https://redirect.github.com/hanyouqing) in
[https://github.com/kubernetes-sigs/descheduler/pull/1378](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1378)
- Helm chart - allow 'falsey' value in cmdOption by
[@&#8203;omerap12](https://redirect.github.com/omerap12) in
[https://github.com/kubernetes-sigs/descheduler/pull/1390](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1390)
- fix helm's default deschedulerPolicy by
[@&#8203;duplabe](https://redirect.github.com/duplabe) in
[https://github.com/kubernetes-sigs/descheduler/pull/1412](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1412)
- fix TOC location in Readme by
[@&#8203;duplabe](https://redirect.github.com/duplabe) in
[https://github.com/kubernetes-sigs/descheduler/pull/1413](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1413)
- use cmd context instead of using context.Background() by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1416](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1416)
- fix the issue that the pod anti-filtering rules are not taking effect
by [@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1395](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1395)
- Bump otel semconv to 1.24 by
[@&#8203;damemi](https://redirect.github.com/damemi) in
[https://github.com/kubernetes-sigs/descheduler/pull/1429](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1429)
- chore: reduce repetition of go versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1432](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1432)
- bump go to 1.22.4 for CVE-2024-24790 and CVE-2024-24789 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1433](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1433)
- return pod qos in advance by
[@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1435](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1435)
- add validation ut by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1439](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1439)
- refactor some methods in e2e test by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1441](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1441)
- Automated cherry pick of
[#&#8203;1427](https://redirect.github.com/kubernetes-sigs/descheduler/issues/1427):
helm: upgrade to v0.30.1 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1431](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1431)
- chore: cleanup duplicated code by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1438](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1438)
- fix: return the unmatched cases first by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1446](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1446)
- Unit-test: add necessary ownerRef to the pod. by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1445](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1445)
- PodEvictor: refactoring and preparation for eviction requests by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1447](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1447)
- refactor: PodMatchNodeSelector method by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1450](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1450)
- return node fit error in advance by
[@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1436](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1436)
- test: generate uid when building a pod by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1454](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1454)
- feat: pod evictor options by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1455](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1455)
- fix: indexer cache error when default evictor is re-initialized by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1452](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1452)
- fix: add info for error return by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1457](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1457)
- PodEvictor: turn an exceeded limit into an error by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1456](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1456)
- descheduler_test.go refactoring by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1459](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1459)
- The descheduler supports limiting the total number of pods evicted per
rescheduling cycle by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1451](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1451)
- descheduler_test.go: initDescheduler: pass a new ctx with cancel inst…
by [@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1460](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1460)
- pod evictor: make it thread safe by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1458](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1458)
- Update README about maxNoOfPodsToEvictTotal by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1463](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1463)
- refactor: replace k8s.io/utils/pointer with k8s.io/utils/ptr by
[@&#8203;eminaktas](https://redirect.github.com/eminaktas) in
[https://github.com/kubernetes-sigs/descheduler/pull/1464](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1464)
- feat: Add namespace override settings in Helm Chart by
[@&#8203;ternbusty](https://redirect.github.com/ternbusty) in
[https://github.com/kubernetes-sigs/descheduler/pull/1444](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1444)
- fix: helm leader-election typo to `resourceNamespace` by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1443](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1443)
- helm unit tests by [@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1467](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1467)
- feat: add init and ephemeral container checks to PodLifeTime by
[@&#8203;adammw](https://redirect.github.com/adammw) in
[https://github.com/kubernetes-sigs/descheduler/pull/1468](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1468)
- bump(github.com/golangci/golangci-lint)=v1.59.1 by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1473](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1473)
- e2e: TestTooManyRestarts: run descheduler as a whole instead of a
single plugin by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1472](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1472)
- e2e: TestRemoveDuplicates: limit the tested namespace by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1471](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1471)
- KEP-1397: descheduler integration with evacuation API as an
alternative to eviction API by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1354](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1354)
- skip eviction when pod creation time is below minPodAge threshold
setting by [@&#8203;victorgs](https://redirect.github.com/victorgs) in
[https://github.com/kubernetes-sigs/descheduler/pull/1475](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1475)
- fix: minor version parsing in version compatibility check by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1430](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1430)
- e2e: TestLeaderElection: delete the lease and increase the retry
period by [@&#8203;ingvagabund](https://redirect.github.com/ingvagabund)
in
[https://github.com/kubernetes-sigs/descheduler/pull/1469](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1469)
- bump go to 1.22.5 by
[@&#8203;shahar-h](https://redirect.github.com/shahar-h) in
[https://github.com/kubernetes-sigs/descheduler/pull/1476](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1476)
- \[TestTooManyRestarts] e2e: build a descheduler image and run the
descheduler as a pod by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1474](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1474)
- docs: Provide OCI annotation for where to find image sources by
[@&#8203;sklirg](https://redirect.github.com/sklirg) in
[https://github.com/kubernetes-sigs/descheduler/pull/1479](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1479)
- Remove descheduler/v1alpha1 type by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1482](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1482)
- tests: de-duplicate framework handle initialization by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1483](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1483)
- \[unit test]: test descheduling limits by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1484](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1484)
- \[unit test]: simplify test pod evictor reset by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1485](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1485)
- README: drop v1alpha1 descheduler policy mention by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1498](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1498)
- bump k8s.io libs to v0.31.0 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1496](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1496)
- chore: upgrade python EOL and action versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1505](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1505)
- descheduler v0.31: update e2e test versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1504](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1504)
- feat(helm): make securityContext conditional in Deployment and CronJob
by [@&#8203;bendikp](https://redirect.github.com/bendikp) in
[https://github.com/kubernetes-sigs/descheduler/pull/1507](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1507)
- Plugin args: tag arguments with omitempty to reduce the marshalled
json size by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1480](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1480)
- descheduler v0.31: update docs and manifests by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1506](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1506)
- \[e2e] no test timeouts, produce the same image tag as in production
by [@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1508](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1508)
- chore: replace `github.com/ghodss/yaml` with `sigs.k8s.io/yaml` by
[@&#8203;Juneezee](https://redirect.github.com/Juneezee) in
[https://github.com/kubernetes-sigs/descheduler/pull/1510](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1510)

#### New Contributors

- [@&#8203;hanyouqing](https://redirect.github.com/hanyouqing) made
their first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1378](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1378)
- [@&#8203;omerap12](https://redirect.github.com/omerap12) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1390](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1390)
- [@&#8203;duplabe](https://redirect.github.com/duplabe) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1412](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1412)
- [@&#8203;googs1025](https://redirect.github.com/googs1025) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1416](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1416)
- [@&#8203;zhifei92](https://redirect.github.com/zhifei92) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1445](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1445)
- [@&#8203;ternbusty](https://redirect.github.com/ternbusty) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1444](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1444)
- [@&#8203;adammw](https://redirect.github.com/adammw) made their first
contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1468](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1468)
- [@&#8203;shahar-h](https://redirect.github.com/shahar-h) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1476](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1476)
- [@&#8203;sklirg](https://redirect.github.com/sklirg) made their first
contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1479](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1479)
- [@&#8203;bendikp](https://redirect.github.com/bendikp) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1507](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1507)
- [@&#8203;Juneezee](https://redirect.github.com/Juneezee) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1510](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1510)

**Full Changelog**:
kubernetes-sigs/descheduler@v0.30.0...v0.31.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/broersma-forslund/homelab).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
spiceratops referenced this pull request in spiceratops/k8s-gitops Sep 10, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [descheduler](https://redirect.github.com/kubernetes-sigs/descheduler)
| minor | `0.30.1` -> `0.31.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>kubernetes-sigs/descheduler (descheduler)</summary>

###
[`v0.31.0`](https://redirect.github.com/kubernetes-sigs/descheduler/releases/tag/v0.31.0):
Descheduler v0.31.0

[Compare
Source](https://redirect.github.com/kubernetes-sigs/descheduler/compare/v0.30.1...v0.31.0)

#### What's Changed

- bump to to 1.22.3 to address CVE-2024-24788 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1408](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1408)
- Fix the replicas value type for the descheduler helm-chart by
[@&#8203;hanyouqing](https://redirect.github.com/hanyouqing) in
[https://github.com/kubernetes-sigs/descheduler/pull/1378](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1378)
- Helm chart - allow 'falsey' value in cmdOption by
[@&#8203;omerap12](https://redirect.github.com/omerap12) in
[https://github.com/kubernetes-sigs/descheduler/pull/1390](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1390)
- fix helm's default deschedulerPolicy by
[@&#8203;duplabe](https://redirect.github.com/duplabe) in
[https://github.com/kubernetes-sigs/descheduler/pull/1412](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1412)
- fix TOC location in Readme by
[@&#8203;duplabe](https://redirect.github.com/duplabe) in
[https://github.com/kubernetes-sigs/descheduler/pull/1413](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1413)
- use cmd context instead of using context.Background() by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1416](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1416)
- fix the issue that the pod anti-filtering rules are not taking effect
by [@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1395](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1395)
- Bump otel semconv to 1.24 by
[@&#8203;damemi](https://redirect.github.com/damemi) in
[https://github.com/kubernetes-sigs/descheduler/pull/1429](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1429)
- chore: reduce repetition of go versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1432](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1432)
- bump go to 1.22.4 for CVE-2024-24790 and CVE-2024-24789 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1433](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1433)
- return pod qos in advance by
[@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1435](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1435)
- add validation ut by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1439](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1439)
- refactor some methods in e2e test by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1441](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1441)
- Automated cherry pick of
[#&#8203;1427](https://redirect.github.com/kubernetes-sigs/descheduler/issues/1427):
helm: upgrade to v0.30.1 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1431](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1431)
- chore: cleanup duplicated code by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1438](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1438)
- fix: return the unmatched cases first by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1446](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1446)
- Unit-test: add necessary ownerRef to the pod. by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1445](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1445)
- PodEvictor: refactoring and preparation for eviction requests by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1447](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1447)
- refactor: PodMatchNodeSelector method by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1450](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1450)
- return node fit error in advance by
[@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1436](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1436)
- test: generate uid when building a pod by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1454](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1454)
- feat: pod evictor options by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1455](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1455)
- fix: indexer cache error when default evictor is re-initialized by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1452](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1452)
- fix: add info for error return by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1457](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1457)
- PodEvictor: turn an exceeded limit into an error by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1456](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1456)
- descheduler_test.go refactoring by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1459](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1459)
- The descheduler supports limiting the total number of pods evicted per
rescheduling cycle by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1451](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1451)
- descheduler_test.go: initDescheduler: pass a new ctx with cancel inst…
by [@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1460](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1460)
- pod evictor: make it thread safe by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1458](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1458)
- Update README about maxNoOfPodsToEvictTotal by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1463](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1463)
- refactor: replace k8s.io/utils/pointer with k8s.io/utils/ptr by
[@&#8203;eminaktas](https://redirect.github.com/eminaktas) in
[https://github.com/kubernetes-sigs/descheduler/pull/1464](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1464)
- feat: Add namespace override settings in Helm Chart by
[@&#8203;ternbusty](https://redirect.github.com/ternbusty) in
[https://github.com/kubernetes-sigs/descheduler/pull/1444](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1444)
- fix: helm leader-election typo to `resourceNamespace` by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1443](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1443)
- helm unit tests by [@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1467](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1467)
- feat: add init and ephemeral container checks to PodLifeTime by
[@&#8203;adammw](https://redirect.github.com/adammw) in
[https://github.com/kubernetes-sigs/descheduler/pull/1468](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1468)
- bump(github.com/golangci/golangci-lint)=v1.59.1 by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1473](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1473)
- e2e: TestTooManyRestarts: run descheduler as a whole instead of a
single plugin by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1472](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1472)
- e2e: TestRemoveDuplicates: limit the tested namespace by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1471](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1471)
- KEP-1397: descheduler integration with evacuation API as an
alternative to eviction API by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1354](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1354)
- skip eviction when pod creation time is below minPodAge threshold
setting by [@&#8203;victorgs](https://redirect.github.com/victorgs) in
[https://github.com/kubernetes-sigs/descheduler/pull/1475](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1475)
- fix: minor version parsing in version compatibility check by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1430](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1430)
- e2e: TestLeaderElection: delete the lease and increase the retry
period by [@&#8203;ingvagabund](https://redirect.github.com/ingvagabund)
in
[https://github.com/kubernetes-sigs/descheduler/pull/1469](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1469)
- bump go to 1.22.5 by
[@&#8203;shahar-h](https://redirect.github.com/shahar-h) in
[https://github.com/kubernetes-sigs/descheduler/pull/1476](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1476)
- \[TestTooManyRestarts] e2e: build a descheduler image and run the
descheduler as a pod by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1474](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1474)
- docs: Provide OCI annotation for where to find image sources by
[@&#8203;sklirg](https://redirect.github.com/sklirg) in
[https://github.com/kubernetes-sigs/descheduler/pull/1479](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1479)
- Remove descheduler/v1alpha1 type by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1482](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1482)
- tests: de-duplicate framework handle initialization by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1483](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1483)
- \[unit test]: test descheduling limits by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1484](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1484)
- \[unit test]: simplify test pod evictor reset by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1485](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1485)
- README: drop v1alpha1 descheduler policy mention by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1498](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1498)
- bump k8s.io libs to v0.31.0 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1496](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1496)
- chore: upgrade python EOL and action versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1505](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1505)
- descheduler v0.31: update e2e test versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1504](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1504)
- feat(helm): make securityContext conditional in Deployment and CronJob
by [@&#8203;bendikp](https://redirect.github.com/bendikp) in
[https://github.com/kubernetes-sigs/descheduler/pull/1507](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1507)
- Plugin args: tag arguments with omitempty to reduce the marshalled
json size by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1480](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1480)
- descheduler v0.31: update docs and manifests by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1506](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1506)
- \[e2e] no test timeouts, produce the same image tag as in production
by [@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1508](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1508)
- chore: replace `github.com/ghodss/yaml` with `sigs.k8s.io/yaml` by
[@&#8203;Juneezee](https://redirect.github.com/Juneezee) in
[https://github.com/kubernetes-sigs/descheduler/pull/1510](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1510)

#### New Contributors

- [@&#8203;hanyouqing](https://redirect.github.com/hanyouqing) made
their first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1378](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1378)
- [@&#8203;omerap12](https://redirect.github.com/omerap12) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1390](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1390)
- [@&#8203;duplabe](https://redirect.github.com/duplabe) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1412](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1412)
- [@&#8203;googs1025](https://redirect.github.com/googs1025) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1416](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1416)
- [@&#8203;zhifei92](https://redirect.github.com/zhifei92) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1445](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1445)
- [@&#8203;ternbusty](https://redirect.github.com/ternbusty) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1444](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1444)
- [@&#8203;adammw](https://redirect.github.com/adammw) made their first
contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1468](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1468)
- [@&#8203;shahar-h](https://redirect.github.com/shahar-h) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1476](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1476)
- [@&#8203;sklirg](https://redirect.github.com/sklirg) made their first
contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1479](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1479)
- [@&#8203;bendikp](https://redirect.github.com/bendikp) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1507](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1507)
- [@&#8203;Juneezee](https://redirect.github.com/Juneezee) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1510](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1510)

**Full Changelog**:
kubernetes-sigs/descheduler@v0.30.0...v0.31.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC43My4zIiwidXBkYXRlZEluVmVyIjoiMzguNzMuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvaGVsbSIsInR5cGUvbWlub3IiXX0=-->
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Sep 19, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [descheduler](https://redirect.github.com/kubernetes-sigs/descheduler)
| minor | `0.30.1` -> `0.31.0` |

---

### Release Notes

<details>
<summary>kubernetes-sigs/descheduler (descheduler)</summary>

###
[`v0.31.0`](https://redirect.github.com/kubernetes-sigs/descheduler/releases/tag/v0.31.0):
Descheduler v0.31.0

[Compare
Source](https://redirect.github.com/kubernetes-sigs/descheduler/compare/v0.30.1...v0.31.0)

#### What's Changed

- bump to to 1.22.3 to address CVE-2024-24788 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1408](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1408)
- Fix the replicas value type for the descheduler helm-chart by
[@&#8203;hanyouqing](https://redirect.github.com/hanyouqing) in
[https://github.com/kubernetes-sigs/descheduler/pull/1378](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1378)
- Helm chart - allow 'falsey' value in cmdOption by
[@&#8203;omerap12](https://redirect.github.com/omerap12) in
[https://github.com/kubernetes-sigs/descheduler/pull/1390](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1390)
- fix helm's default deschedulerPolicy by
[@&#8203;duplabe](https://redirect.github.com/duplabe) in
[https://github.com/kubernetes-sigs/descheduler/pull/1412](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1412)
- fix TOC location in Readme by
[@&#8203;duplabe](https://redirect.github.com/duplabe) in
[https://github.com/kubernetes-sigs/descheduler/pull/1413](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1413)
- use cmd context instead of using context.Background() by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1416](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1416)
- fix the issue that the pod anti-filtering rules are not taking effect
by [@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1395](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1395)
- Bump otel semconv to 1.24 by
[@&#8203;damemi](https://redirect.github.com/damemi) in
[https://github.com/kubernetes-sigs/descheduler/pull/1429](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1429)
- chore: reduce repetition of go versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1432](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1432)
- bump go to 1.22.4 for CVE-2024-24790 and CVE-2024-24789 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1433](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1433)
- return pod qos in advance by
[@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1435](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1435)
- add validation ut by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1439](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1439)
- refactor some methods in e2e test by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1441](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1441)
- Automated cherry pick of
[#&#8203;1427](https://redirect.github.com/kubernetes-sigs/descheduler/issues/1427):
helm: upgrade to v0.30.1 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1431](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1431)
- chore: cleanup duplicated code by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1438](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1438)
- fix: return the unmatched cases first by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1446](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1446)
- Unit-test: add necessary ownerRef to the pod. by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1445](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1445)
- PodEvictor: refactoring and preparation for eviction requests by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1447](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1447)
- refactor: PodMatchNodeSelector method by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1450](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1450)
- return node fit error in advance by
[@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1436](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1436)
- test: generate uid when building a pod by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1454](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1454)
- feat: pod evictor options by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1455](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1455)
- fix: indexer cache error when default evictor is re-initialized by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1452](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1452)
- fix: add info for error return by
[@&#8203;googs1025](https://redirect.github.com/googs1025) in
[https://github.com/kubernetes-sigs/descheduler/pull/1457](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1457)
- PodEvictor: turn an exceeded limit into an error by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1456](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1456)
- descheduler_test.go refactoring by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1459](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1459)
- The descheduler supports limiting the total number of pods evicted per
rescheduling cycle by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1451](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1451)
- descheduler_test.go: initDescheduler: pass a new ctx with cancel inst…
by [@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1460](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1460)
- pod evictor: make it thread safe by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1458](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1458)
- Update README about maxNoOfPodsToEvictTotal by
[@&#8203;zhifei92](https://redirect.github.com/zhifei92) in
[https://github.com/kubernetes-sigs/descheduler/pull/1463](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1463)
- refactor: replace k8s.io/utils/pointer with k8s.io/utils/ptr by
[@&#8203;eminaktas](https://redirect.github.com/eminaktas) in
[https://github.com/kubernetes-sigs/descheduler/pull/1464](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1464)
- feat: Add namespace override settings in Helm Chart by
[@&#8203;ternbusty](https://redirect.github.com/ternbusty) in
[https://github.com/kubernetes-sigs/descheduler/pull/1444](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1444)
- fix: helm leader-election typo to `resourceNamespace` by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1443](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1443)
- helm unit tests by [@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1467](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1467)
- feat: add init and ephemeral container checks to PodLifeTime by
[@&#8203;adammw](https://redirect.github.com/adammw) in
[https://github.com/kubernetes-sigs/descheduler/pull/1468](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1468)
- bump(github.com/golangci/golangci-lint)=v1.59.1 by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1473](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1473)
- e2e: TestTooManyRestarts: run descheduler as a whole instead of a
single plugin by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1472](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1472)
- e2e: TestRemoveDuplicates: limit the tested namespace by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1471](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1471)
- KEP-1397: descheduler integration with evacuation API as an
alternative to eviction API by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1354](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1354)
- skip eviction when pod creation time is below minPodAge threshold
setting by [@&#8203;victorgs](https://redirect.github.com/victorgs) in
[https://github.com/kubernetes-sigs/descheduler/pull/1475](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1475)
- fix: minor version parsing in version compatibility check by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1430](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1430)
- e2e: TestLeaderElection: delete the lease and increase the retry
period by [@&#8203;ingvagabund](https://redirect.github.com/ingvagabund)
in
[https://github.com/kubernetes-sigs/descheduler/pull/1469](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1469)
- bump go to 1.22.5 by
[@&#8203;shahar-h](https://redirect.github.com/shahar-h) in
[https://github.com/kubernetes-sigs/descheduler/pull/1476](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1476)
- \[TestTooManyRestarts] e2e: build a descheduler image and run the
descheduler as a pod by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1474](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1474)
- docs: Provide OCI annotation for where to find image sources by
[@&#8203;sklirg](https://redirect.github.com/sklirg) in
[https://github.com/kubernetes-sigs/descheduler/pull/1479](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1479)
- Remove descheduler/v1alpha1 type by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1482](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1482)
- tests: de-duplicate framework handle initialization by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1483](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1483)
- \[unit test]: test descheduling limits by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1484](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1484)
- \[unit test]: simplify test pod evictor reset by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1485](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1485)
- README: drop v1alpha1 descheduler policy mention by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1498](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1498)
- bump k8s.io libs to v0.31.0 by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1496](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1496)
- chore: upgrade python EOL and action versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1505](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1505)
- descheduler v0.31: update e2e test versions by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1504](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1504)
- feat(helm): make securityContext conditional in Deployment and CronJob
by [@&#8203;bendikp](https://redirect.github.com/bendikp) in
[https://github.com/kubernetes-sigs/descheduler/pull/1507](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1507)
- Plugin args: tag arguments with omitempty to reduce the marshalled
json size by
[@&#8203;ingvagabund](https://redirect.github.com/ingvagabund) in
[https://github.com/kubernetes-sigs/descheduler/pull/1480](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1480)
- descheduler v0.31: update docs and manifests by
[@&#8203;a7i](https://redirect.github.com/a7i) in
[https://github.com/kubernetes-sigs/descheduler/pull/1506](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1506)
- \[e2e] no test timeouts, produce the same image tag as in production
by [@&#8203;fanhaouu](https://redirect.github.com/fanhaouu) in
[https://github.com/kubernetes-sigs/descheduler/pull/1508](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1508)
- chore: replace `github.com/ghodss/yaml` with `sigs.k8s.io/yaml` by
[@&#8203;Juneezee](https://redirect.github.com/Juneezee) in
[https://github.com/kubernetes-sigs/descheduler/pull/1510](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1510)

#### New Contributors

- [@&#8203;hanyouqing](https://redirect.github.com/hanyouqing) made
their first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1378](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1378)
- [@&#8203;omerap12](https://redirect.github.com/omerap12) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1390](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1390)
- [@&#8203;duplabe](https://redirect.github.com/duplabe) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1412](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1412)
- [@&#8203;googs1025](https://redirect.github.com/googs1025) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1416](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1416)
- [@&#8203;zhifei92](https://redirect.github.com/zhifei92) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1445](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1445)
- [@&#8203;ternbusty](https://redirect.github.com/ternbusty) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1444](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1444)
- [@&#8203;adammw](https://redirect.github.com/adammw) made their first
contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1468](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1468)
- [@&#8203;shahar-h](https://redirect.github.com/shahar-h) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1476](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1476)
- [@&#8203;sklirg](https://redirect.github.com/sklirg) made their first
contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1479](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1479)
- [@&#8203;bendikp](https://redirect.github.com/bendikp) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1507](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1507)
- [@&#8203;Juneezee](https://redirect.github.com/Juneezee) made their
first contribution in
[https://github.com/kubernetes-sigs/descheduler/pull/1510](https://redirect.github.com/kubernetes-sigs/descheduler/pull/1510)

**Full Changelog**:
kubernetes-sigs/descheduler@v0.30.0...v0.31.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC43My4zIiwidXBkYXRlZEluVmVyIjoiMzguNzMuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvaGVsbSIsInR5cGUvbWlub3IiXX0=-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unable to create a profile" err="unable to build DefaultEvictor plugin
3 participants