Skip to content

chore(deps): update dependency kind to v0.31.0#310

Merged
bo0tzz merged 1 commit into
mainfrom
renovate/kind-0.x
Mar 27, 2026
Merged

chore(deps): update dependency kind to v0.31.0#310
bo0tzz merged 1 commit into
mainfrom
renovate/kind-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Dec 23, 2025

This PR contains the following updates:

Package Update Change
kind minor 0.30.00.31.0

Release Notes

kubernetes-sigs/kind (kind)

v0.31.0

Compare Source

This release contains dependency updates and defaults to Kubernetes 1.35.0.

Please take note of the breaking changes from Kubernetes 1.35, and how to prepare for future changes to move off of the deprecated kubeam v1beta3 in favor of v1beta4. We will include updated reminders for both again in subsequent releases.

Breaking Changes

The default node image is now kindest/node:v1.35.0@​sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f

Kubernetes 1.35+ Cgroup v1

Kubernetes will be removing cgroup v1 support, and therefore kind node images at those versions will also be dropping support.

You can read more about this change in the Kubernetes release blog: https://kubernetes.io/blog/2025/12/17/kubernetes-v1-35-release/#removal-of-cgroup-v1-support

If you must use kind on cgroup v1, we recommend using an older Kubernetes release for the immediate future, but we also strongly recommend migrating to cgroup v2.

In the near future as Kubernetes support dwindles, KIND will also clean up cgroup v1 workarounds and drop support in future kind releases and images, regardless of Kubernetes version.

Most stable linux distros should be on cgroupv2 out of the box.

This is a reminder to use pinned images by digest, see the note below about images for this release.

Kubeadm Config *Future* Breaking Change

WARNING: Future kind releases will adopt kubeadm v1beta4 configuration, kubeadm v1beta4 has a breaking change to extraArgs: https://kubernetes.io/blog/2024/08/23/kubernetes-1-31-kubeadm-v1beta4/.

If you use the kubeadmConfigPatches feature then you may need to prepare for this change.
We recommend that you use versioned config patches that explicitly match the version required.

KIND uses kubeadm v1beta3 for Kubernetes 1.23+, and will likely use v1beta4 for Kubernetes 1.36+
The exact version is TBD pending work to fix this but expected to be 1.36.
It will definitely be an as-of-yet-unreleased Kubernetes version to avoid surprises, and it will not be on a patch-release boundary.

KIND may still work with older Kubernetes versions at v1beta2, but we no longer test or actively support these as Kubernetes only supports 1.32+ currently: https://kubernetes.io/releases/

You likely only need v1beta3 + v1beta4 patches, you can take your existing patches that work with v1beta3, explicitly set apiVersion: kubeadm.k8s.io/v1beta3 in the patch at the top level, and make another copy for v1beta4. The v1beta4 patch will need to move extraArgs from a map to a list, for examples see: https://kubernetes.io/docs/reference/config-api/kubeadm-config.v1beta4/

For a concrete example of kind config with kubeadm config patch targeting both v1beta3 and v1beta4, consider this simple kind config that sets verbosity of the apiserver logs:

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
kubeadmConfigPatches:

# patch for v1beta3 (1.23 ...)
- |
  kind: ClusterConfiguration
  apiVersion: kubeadm.k8s.io/v1beta3
  apiServer:
    extraArgs:
      "v": "4"

# patch for v1beta4 (future)
- |
  kind: ClusterConfiguration
  apiVersion: kubeadm.k8s.io/v1beta4
  apiServer:
    extraArgs:
      - name: "v"
        value: "4"

If you only need to target a particular release, you can use one version.

If you only need to target fields that did not change between kubeadm beta versions, you can use a versionless patch, which may be more convenient, but we cannot guarantee there will be no future kubeadm config breaking changes.

New Features

  • Assorted unspecified dependency updates

Images pre-built for this release:

  • v1.35.0: kindest/node:v1.35.0@​sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f
  • v1.34.3: kindest/node:v1.34.3@​sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48
  • v1.33.7: kindest/node:v1.33.7@​sha256:d26ef333bdb2cbe9862a0f7c3803ecc7b4303d8cea8e814b481b09949d353040
  • v1.32.11: kindest/node:v1.32.11@​sha256:5fc52d52a7b9574015299724bd68f183702956aa4a2116ae75a63cb574b35af8
  • v1.31.14: kindest/node:v1.31.14@​sha256:6f86cf509dbb42767b6e79debc3f2c32e4ee01386f0489b3b2be24b0a55aac2b

NOTE: You must use the @sha256 digest to guarantee an image built for this release, until such a time as we switch to a different tagging scheme. Even then we will highly encourage digest pinning for security and reproducibility reasons.

See also:

NOTE: These node images support amd64 and arm64, both of our supported platforms. You must use the same platform as your host, for more context see #​2718

Fixes

  • Detect additional edge case with ipv6 support on the host
  • Make development / release scripts GOTOOLCHAIN aware

Contributors

Committers for this release:


Configuration

📅 Schedule: Branch creation - "before 9am on tuesday" (UTC), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link
Copy Markdown

Changes in Final Manifest

No diff

@renovate renovate Bot force-pushed the renovate/kind-0.x branch from 93d6db5 to c4ec7a7 Compare February 12, 2026 11:57
@bo0tzz bo0tzz enabled auto-merge (squash) March 27, 2026 13:09
@renovate renovate Bot force-pushed the renovate/kind-0.x branch from c4ec7a7 to d0bfb1f Compare March 27, 2026 13:09
@renovate renovate Bot force-pushed the renovate/kind-0.x branch from d0bfb1f to 02c1cce Compare March 27, 2026 13:09
@github-actions
Copy link
Copy Markdown

Changes in Final Manifest

No diff

@bo0tzz bo0tzz merged commit ffb1cad into main Mar 27, 2026
7 checks passed
@bo0tzz bo0tzz deleted the renovate/kind-0.x branch March 27, 2026 13:11
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Mar 28, 2026
##### [\`0.11.0\`](https://github.com/immich-app/immich-charts/releases/tag/immich-0.11.0)

A chart to power Immich (immich.app) running on kubernetes

#### What's Changed

- chore(deps): update dependency tilt to v0.36.0 by [@renovate](https://github.com/renovate)\[bot] in [#294](immich-app/immich-charts#294)
- chore: group helm updates by [@bo0tzz](https://github.com/bo0tzz) in [#298](immich-app/immich-charts#298)
- chore(deps): update dependency kubectl to v1.34.2 by [@renovate](https://github.com/renovate)\[bot] in [#293](immich-app/immich-charts#293)
- chore(deps): update github-actions by [@renovate](https://github.com/renovate)\[bot] in [#288](immich-app/immich-charts#288)
- chore(deps): update helm release common to v4.5.0 by [@renovate](https://github.com/renovate)\[bot] in [#305](immich-app/immich-charts#305)
- chore(deps): update docker.io/valkey/valkey:9.0-alpine docker digest to [`1be4944`](immich-app/immich-charts@1be4944) by [@renovate](https://github.com/renovate)\[bot] in [#300](immich-app/immich-charts#300)
- refactor: add option to store configuration in a secret by [@YotamKorah](https://github.com/YotamKorah) in [#296](immich-app/immich-charts#296)
- chore(deps): update dependency kubectl to v1.34.3 by [@renovate](https://github.com/renovate)\[bot] in [#304](immich-app/immich-charts#304)
- chore(deps): update actions/create-github-app-token action to v2.2.1 - autoclosed by [@renovate](https://github.com/renovate)\[bot] in [#303](immich-app/immich-charts#303)
- chore(deps): update helm to v4 (major) by [@renovate](https://github.com/renovate)\[bot] in [#302](immich-app/immich-charts#302)
- chore(deps): update github-actions by [@renovate](https://github.com/renovate)\[bot] in [#315](immich-app/immich-charts#315)
- chore(deps): update docker.io/valkey/valkey docker tag to v9.1 by [@renovate](https://github.com/renovate)\[bot] in [#325](immich-app/immich-charts#325)
- chore(deps): update int128/diff-action to v2 (major) by [@bo0tzz](https://github.com/bo0tzz) in [#329](immich-app/immich-charts#329)
- chore: deprecate http repo by [@bo0tzz](https://github.com/bo0tzz) in [#326](immich-app/immich-charts#326)
- fix(service): Add service appProtocol websocket to allow health and version check by [@jjpebesma](https://github.com/jjpebesma) in [#323](immich-app/immich-charts#323)
- chore(deps): update helm to v4.1.3 by [@renovate](https://github.com/renovate)\[bot] in [#301](immich-app/immich-charts#301)
- chore(deps): update dependency kubectl to v1.35.3 by [@renovate](https://github.com/renovate)\[bot] in [#311](immich-app/immich-charts#311)
- feat(config): add option to use an existing config not managed by the chart by [@YotamKorah](https://github.com/YotamKorah) in [#307](immich-app/immich-charts#307)
- chore(deps): update helm release common to v4.6.2 by [@renovate](https://github.com/renovate)\[bot] in [#316](immich-app/immich-charts#316)
- chore(deps): update github-actions (major) by [@renovate](https://github.com/renovate)\[bot] in [#297](immich-app/immich-charts#297)
- chore(deps): update dependency kind to v0.31.0 by [@renovate](https://github.com/renovate)\[bot] in [#310](immich-app/immich-charts#310)
- chore(deps): update dependency tilt to v0.37.0 by [@renovate](https://github.com/renovate)\[bot] in [#320](immich-app/immich-charts#320)
- chore(deps): update github-actions by [@renovate](https://github.com/renovate)\[bot] in [#324](immich-app/immich-charts#324)
- chore(deps): bump Immich version to v2.6.3 by [@bo0tzz](https://github.com/bo0tzz) in [#327](immich-app/immich-charts#327)
- chore: release 0.11.0 by [@bo0tzz](https://github.com/bo0tzz) in [#328](immich-app/immich-charts#328)

#### New Contributors

- [@YotamKorah](https://github.com/YotamKorah) made their first contribution in [#296](immich-app/immich-charts#296)
- [@jjpebesma](https://github.com/jjpebesma) made their first contribution in [#323](immich-app/immich-charts#323)

**Full Changelog**: <immich-app/immich-charts@immich-0.10.3...immich-0.11.0>
sdwilsh pushed a commit to sdwilsh/ansible-playbooks that referenced this pull request Mar 28, 2026
##### [\`0.11.0\`](https://github.com/immich-app/immich-charts/releases/tag/immich-0.11.0)

A chart to power Immich (immich.app) running on kubernetes

#### What's Changed

- chore(deps): update dependency tilt to v0.36.0 by [@renovate](https://github.com/renovate)\[bot] in [#294](immich-app/immich-charts#294)
- chore: group helm updates by [@bo0tzz](https://github.com/bo0tzz) in [#298](immich-app/immich-charts#298)
- chore(deps): update dependency kubectl to v1.34.2 by [@renovate](https://github.com/renovate)\[bot] in [#293](immich-app/immich-charts#293)
- chore(deps): update github-actions by [@renovate](https://github.com/renovate)\[bot] in [#288](immich-app/immich-charts#288)
- chore(deps): update helm release common to v4.5.0 by [@renovate](https://github.com/renovate)\[bot] in [#305](immich-app/immich-charts#305)
- chore(deps): update docker.io/valkey/valkey:9.0-alpine docker digest to [`1be4944`](immich-app/immich-charts@1be4944) by [@renovate](https://github.com/renovate)\[bot] in [#300](immich-app/immich-charts#300)
- refactor: add option to store configuration in a secret by [@YotamKorah](https://github.com/YotamKorah) in [#296](immich-app/immich-charts#296)
- chore(deps): update dependency kubectl to v1.34.3 by [@renovate](https://github.com/renovate)\[bot] in [#304](immich-app/immich-charts#304)
- chore(deps): update actions/create-github-app-token action to v2.2.1 - autoclosed by [@renovate](https://github.com/renovate)\[bot] in [#303](immich-app/immich-charts#303)
- chore(deps): update helm to v4 (major) by [@renovate](https://github.com/renovate)\[bot] in [#302](immich-app/immich-charts#302)
- chore(deps): update github-actions by [@renovate](https://github.com/renovate)\[bot] in [#315](immich-app/immich-charts#315)
- chore(deps): update docker.io/valkey/valkey docker tag to v9.1 by [@renovate](https://github.com/renovate)\[bot] in [#325](immich-app/immich-charts#325)
- chore(deps): update int128/diff-action to v2 (major) by [@bo0tzz](https://github.com/bo0tzz) in [#329](immich-app/immich-charts#329)
- chore: deprecate http repo by [@bo0tzz](https://github.com/bo0tzz) in [#326](immich-app/immich-charts#326)
- fix(service): Add service appProtocol websocket to allow health and version check by [@jjpebesma](https://github.com/jjpebesma) in [#323](immich-app/immich-charts#323)
- chore(deps): update helm to v4.1.3 by [@renovate](https://github.com/renovate)\[bot] in [#301](immich-app/immich-charts#301)
- chore(deps): update dependency kubectl to v1.35.3 by [@renovate](https://github.com/renovate)\[bot] in [#311](immich-app/immich-charts#311)
- feat(config): add option to use an existing config not managed by the chart by [@YotamKorah](https://github.com/YotamKorah) in [#307](immich-app/immich-charts#307)
- chore(deps): update helm release common to v4.6.2 by [@renovate](https://github.com/renovate)\[bot] in [#316](immich-app/immich-charts#316)
- chore(deps): update github-actions (major) by [@renovate](https://github.com/renovate)\[bot] in [#297](immich-app/immich-charts#297)
- chore(deps): update dependency kind to v0.31.0 by [@renovate](https://github.com/renovate)\[bot] in [#310](immich-app/immich-charts#310)
- chore(deps): update dependency tilt to v0.37.0 by [@renovate](https://github.com/renovate)\[bot] in [#320](immich-app/immich-charts#320)
- chore(deps): update github-actions by [@renovate](https://github.com/renovate)\[bot] in [#324](immich-app/immich-charts#324)
- chore(deps): bump Immich version to v2.6.3 by [@bo0tzz](https://github.com/bo0tzz) in [#327](immich-app/immich-charts#327)
- chore: release 0.11.0 by [@bo0tzz](https://github.com/bo0tzz) in [#328](immich-app/immich-charts#328)

#### New Contributors

- [@YotamKorah](https://github.com/YotamKorah) made their first contribution in [#296](immich-app/immich-charts#296)
- [@jjpebesma](https://github.com/jjpebesma) made their first contribution in [#323](immich-app/immich-charts#323)

**Full Changelog**: <immich-app/immich-charts@immich-0.10.3...immich-0.11.0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant