-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
DOCKER_DEFAULT_PLATFORM breaks kind if it does not match the dockerd host platform #2718
Comments
a similar one reported by fedora seems that was caused by the kernel version |
I was experiencing the same issue Dockerfile
Built as
Then
|
hmm, we are publishing arm images https://hub.docker.com/layers/node/kindest/node/v1.23.4/images/sha256-0415a7bb1275c23c9315d97c5bfd7aecfdf8a8ea0562911f653711d947f7bec0?context=explore π€ |
Originally reported issue doesn't appear to be related to availability of an image for arm64:
I have also created kind clusters on an M1 Mac successfully. I don't think this specific version, but normal creation works fine. Marco's issue appears to be something triggering a failure during the use of that image. |
I confirm that following @lukevs instructions actually works. I created a new Docker build as he suggested, and the Kubernetes cluster started properly: $ kind create cluster --image tempkind
Creating cluster "kind" ...
β Ensuring node image (tempkind) πΌ
β Preparing nodes π¦
β Writing configuration π
β Starting control-plane πΉοΈ
β Installing CNI π
β Installing StorageClass πΎ
Set kubectl context to "kind-kind"
You can now use your cluster with:
kubectl cluster-info --context kind-kind
Not sure what to do next? π
Check out https://kind.sigs.k8s.io/docs/user/quick-start/ |
That doesn't make any sense, why isn't docker selecting the arm image from the multi-arch manifest? π€ What version of the docker desktop app is this? (Not dockerd / docker CLI, check the GUI / tray icon about info) |
Docker Desktop Version: |
Is this behavior reproducible with other multi arch images? This feels like a regression in the docker app, we know that M1 worked before and we didn't change much related to that on our end. We should double check the full default image reference in v0.12.0 though. |
The only other explanation I have is v0.12 being bugged with the digest pointing to the amd64 image specifically. Will check for that. |
For v0.12.0 the default image is ef21f80#diff-643b1e9d9e446aa30da4407354de0098f24c947ac985213a06f73188c3e8e3fcR21 It's still And if you inspect that image you get: {
"schemaVersion": 2,
"mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
"manifests": [
{
"mediaType": "application/vnd.docker.distribution.manifest.v2+json",
"size": 743,
"digest": "sha256:1742ff7f0b79a8aaae347b9c2ffaf9738910e721d649301791c812c162092753",
"platform": {
"architecture": "amd64",
"os": "linux"
}
},
{
"mediaType": "application/vnd.docker.distribution.manifest.v2+json",
"size": 742,
"digest": "sha256:0415a7bb1275c23c9315d97c5bfd7aecfdf8a8ea0562911f653711d947f7bec0",
"platform": {
"architecture": "arm64",
"os": "linux"
}
}
]
} So docker should be auto-selecting an arm64 image on M1 .... |
I don't currently have docker on M1, will need help narrowing down the source of this behavior #2718 (comment) |
Just as an FYI, Docker Desktop released a new version |
#2718 (comment) does @aojea and I cannot test this ourselves at the moment. But this workaround suggests a docker bug. |
Just tested on a MacBook Air M1 - macOS 12.3.1
Looks like |
|
I had the same problem, but I then remembered I had added |
@svmaris thank you! This was exactly my problem. I removed the environment variable, deleted the Docker images, and now it works like a charm. |
Thank you! That explains everything, including why the workaround of building an arm64 only image would work #2718 (comment) We should probably consider some follow up here ... Is this env only read by the docker CLI? It seems so given your If not .. we should consider forcing At minimum we should probably add a known issues entry if we don't plan to work around this. |
Answering myself: yes https://docs.docker.com/engine/reference/commandline/cli/
We should consider if it makes sense for kind to block this env from reaching I think it might make sense to have kind ignore broadly, like unsetting it in the kind binary or filtering it in execs to docker. Using |
what is the reasons of setting is this because of this https://stackoverflow.com/questions/65612411/forcing-docker-to-use-linux-amd64-platform-by-default-on-macos? that seems a temporary problem , if affirmative I think warning and link is the best way to proceed? |
I think this is the primary reason
I don't see any reason it would be temporary, as long as users are still developing amd64-only projects from macOS, where the host platform will be heading to arm64 + emulation for the forseeable future.
Yeah, I think as a general rule we probably should sanitize env going to exec, this particular issue just seems to have highlighted it. If, in the future, this setting were actually supportable, we could consider intentionally passing through the env. |
Just chiming in here... perhaps I should open a new issue, but it would be really powerful for us to be able to launch a KIND cluster on our M1 Mac's with both AMD64 and ARM64 Nodes. We are struggling to reproduce certain environments locally (like istio, which doesn't yet have a mullti-arch proxyv2 image), and being able to run a full multi-architecture local kind cluster would be an incredible value. Is that something that is remotely feasible in the future? |
Unfortunately not. See #2738 (comment) The way docker run does multi-arch cannot run complex workloads like Kubernetes, only simple compute with limited syscalls. I would posit that you should be able to test with two separate clusters one of each arch though. Docker desktop already employs a VM to get linux on Mac. In theory a second VM on amd64 would let you run an amd64 cluster. I haven't seen anyone make this work yet though. I think most tools don't support x86 VMs on M1 because it would be slow without x86 hardware virtualization support. We do not have any intent of supporting multi-machine (you should use an actual non-local cluster installer for this) so it wouldn't be a single cluster using two VMs to host the respective architectures, and the qemu bimft_misc hack cannot run Kubernetes. |
The simplest approach is to export I used the create-kind.yaml file as
|
GitHub Pull Request: https://github.com/aanm/cilium/pull/625 chore(deps): update all github action dependencies (v1.15) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://togithub.com/actions/cache) | action | patch | `v4.0.0` -> `v4.0.1` | | [actions/download-artifact](https://togithub.com/actions/download-artifact) | action | patch | `v4.1.2` -> `v4.1.4` | | [azure/login](https://togithub.com/azure/login) | action | minor | `v1.5.1` -> `v1.6.1` | | cilium/scale-tests-action | action | digest | `8a522b9` -> `238d773` | | [docker/setup-buildx-action](https://togithub.com/docker/setup-buildx-action) | action | minor | `v3.0.0` -> `v3.1.0` | | [dorny/paths-filter](https://togithub.com/dorny/paths-filter) | action | major | `v2.11.1` -> `v3.0.2` | | [eksctl-io/eksctl](https://togithub.com/eksctl-io/eksctl) | | minor | `v0.165.0` -> `v0.173.0` | | gcr.io/etcd-development/etcd | | patch | `v3.5.11` -> `v3.5.12` | | [google-github-actions/auth](https://togithub.com/google-github-actions/auth) | action | minor | `v2.0.1` -> `v2.1.2` | | [google-github-actions/setup-gcloud](https://togithub.com/google-github-actions/setup-gcloud) | action | minor | `v2.0.1` -> `v2.1.0` | | [helm/kind-action](https://togithub.com/helm/kind-action) | action | minor | `v1.8.0` -> `v1.9.0` | | kindest/node | | digest | `15ae92d` -> `8cb4239` | | kindest/node | | digest | `3700c81` -> `e6b2f72` | | kindest/node | | digest | `b7e1cf6` -> `e9e59d3` | | [kubernetes-sigs/bom](https://togithub.com/kubernetes-sigs/bom) | | minor | `v0.5.1` -> `v0.6.0` | | [kubernetes-sigs/kind](https://togithub.com/kubernetes-sigs/kind) | | minor | `v0.20.0` -> `v0.22.0` | | [myrotvorets/set-commit-status-action](https://togithub.com/myrotvorets/set-commit-status-action) | action | patch | `v2.0.0` -> `v2.0.1` | | [nick-invision/retry](https://togithub.com/nick-invision/retry) | action | major | `v2.9.0` -> `v3.0.0` | | [sigstore/cosign-installer](https://togithub.com/sigstore/cosign-installer) | action | minor | `v3.2.0` -> `v3.4.0` | --- ### Release Notes <details> <summary>actions/cache (actions/cache)</summary> ### [`v4.0.1`](https://togithub.com/actions/cache/releases/tag/v4.0.1) [Compare Source](https://togithub.com/actions/cache/compare/v4...v4.0.1) ##### What's Changed - Update README.md by [@​yacaovsnc](https://togithub.com/yacaovsnc) in [https://github.com/actions/cache/pull/1304](https://togithub.com/actions/cache/pull/1304) - Update examples by [@​yacaovsnc](https://togithub.com/yacaovsnc) in [https://github.com/actions/cache/pull/1305](https://togithub.com/actions/cache/pull/1305) - Update actions/cache publish flow by [@​bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/cache/pull/1340](https://togithub.com/actions/cache/pull/1340) - Update [@​actions/cache](https://togithub.com/actions/cache) by [@​bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/cache/pull/1341](https://togithub.com/actions/cache/pull/1341) ##### New Contributors - [@​yacaovsnc](https://togithub.com/yacaovsnc) made their first contribution in [https://github.com/actions/cache/pull/1304](https://togithub.com/actions/cache/pull/1304) **Full Changelog**: https://github.com/actions/cache/compare/v4...v4.0.1 </details> <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v4.1.4`](https://togithub.com/actions/download-artifact/releases/tag/v4.1.4) [Compare Source](https://togithub.com/actions/download-artifact/compare/v4.1.3...v4.1.4) ##### What's Changed - Update [@​actions/artifact](https://togithub.com/actions/artifact) by [@​bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/download-artifact/pull/307](https://togithub.com/actions/download-artifact/pull/307) **Full Changelog**: https://github.com/actions/download-artifact/compare/v4...v4.1.4 ### [`v4.1.3`](https://togithub.com/actions/download-artifact/releases/tag/v4.1.3) [Compare Source](https://togithub.com/actions/download-artifact/compare/v4.1.2...v4.1.3) ##### What's Changed - Update release-new-action-version.yml by [@​konradpabjan](https://togithub.com/konradpabjan) in [https://github.com/actions/download-artifact/pull/292](https://togithub.com/actions/download-artifact/pull/292) - Update toolkit dependency with updated unzip logic by [@​bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/download-artifact/pull/299](https://togithub.com/actions/download-artifact/pull/299) - Update [@​actions/artifact](https://togithub.com/actions/artifact) by [@​bethanyj28](https://togithub.com/bethanyj28) in [https://github.com/actions/download-artifact/pull/303](https://togithub.com/actions/download-artifact/pull/303) ##### New Contributors - [@​bethanyj28](https://togithub.com/bethanyj28) made their first contribution in [https://github.com/actions/download-artifact/pull/299](https://togithub.com/actions/download-artifact/pull/299) **Full Changelog**: https://github.com/actions/download-artifact/compare/v4...v4.1.3 </details> <details> <summary>azure/login (azure/login)</summary> ### [`v1.6.1`](https://togithub.com/Azure/login/releases/tag/v1.6.1): Azure Login Action v1.6.1 [Compare Source](https://togithub.com/azure/login/compare/v1.6.0...v1.6.1) - Fix [#​403](https://togithub.com/azure/login/issues/403): Do not break the workflow if `az` is not installed in `pre` and `post` steps ### [`v1.6.0`](https://togithub.com/Azure/login/releases/tag/v1.6.0): Azure Login Action v1.6.0 [Compare Source](https://togithub.com/azure/login/compare/v1.5.1...v1.6.0) - Added `pre:` and `post:` action for cleaning up ([#​384](https://togithub.com/azure/login/issues/384)) </details> <details> <summary>docker/setup-buildx-action (docker/setup-buildx-action)</summary> ### [`v3.1.0`](https://togithub.com/docker/setup-buildx-action/compare/v3.0.0...v3.1.0) [Compare Source](https://togithub.com/docker/setup-buildx-action/compare/v3.0.0...v3.1.0) </details> <details> <summary>dorny/paths-filter (dorny/paths-filter)</summary> ### [`v3.0.2`](https://togithub.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v302) [Compare Source](https://togithub.com/dorny/paths-filter/compare/v3.0.1...v3.0.2) - [Add config parameter for predicate quantifier](https://togithub.com/dorny/paths-filter/pull/224) ### [`v3.0.1`](https://togithub.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v301) [Compare Source](https://togithub.com/dorny/paths-filter/compare/v3.0.0...v3.0.1) - [Compare base and ref when token is empty](https://togithub.com/dorny/paths-filter/pull/133) ### [`v3.0.0`](https://togithub.com/dorny/paths-filter/blob/HEAD/CHANGELOG.md#v300) [Compare Source](https://togithub.com/dorny/paths-filter/compare/v2.12.0...v3.0.0) - [Update to Node.js 20 ](https://togithub.com/dorny/paths-filter/pull/210) - [Update all dependencies](https://togithub.com/dorny/paths-filter/pull/215) ### [`v2.12.0`](https://togithub.com/dorny/paths-filter/compare/v2.11.1...v2.12.0) [Compare Source](https://togithub.com/dorny/paths-filter/compare/v2.11.1...v2.12.0) </details> <details> <summary>eksctl-io/eksctl (eksctl-io/eksctl)</summary> ### [`v0.173.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.173.0): eksctl 0.173.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.172.0-rc.0...0.173.0) ##### Release v0.173.0 ##### π Features - Make EKS 1.29 default ([#​7599](https://togithub.com/eksctl-io/eksctl/issues/7599)) ##### π― Improvements - Add profile flag support for get and delete access entry ([#​7623](https://togithub.com/eksctl-io/eksctl/issues/7623)) - Remove inline ELB and CloudWatch policies from Cluster Role ([#​7603](https://togithub.com/eksctl-io/eksctl/issues/7603)) ##### π Bug Fixes - Increase STS session duration to fix caching credentials with assumed role MFA session ([#​7626](https://togithub.com/eksctl-io/eksctl/issues/7626)) ##### π§° Maintenance - Automate PR with release notes draft ([#​7604](https://togithub.com/eksctl-io/eksctl/issues/7604)) ##### π Documentation - Update docs with Ubuntu 20.04 supported in EKS <= 1.29 ([#​7618](https://togithub.com/eksctl-io/eksctl/issues/7618)) ##### Acknowledgments The eksctl maintainers would like to sincerely thank [@​ibnjunaid](https://togithub.com/ibnjunaid), [@​rpocase](https://togithub.com/rpocase) and [@​vutny](https://togithub.com/vutny). ### [`v0.172.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.172.0): eksctl 0.172.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.171.0...0.172.0-rc.0) ##### Release v0.172.0 ##### π― Improvements - Fix checks for updated addon versions ([#​7471](https://togithub.com/eksctl-io/eksctl/issues/7471)) - Check for empty region before invoking API in AWS SDK ([#​7523](https://togithub.com/eksctl-io/eksctl/issues/7523)) ##### π Bug Fixes - Revert removing RetryMetricsHeader in presigned requests ([#​7563](https://togithub.com/eksctl-io/eksctl/issues/7563)) ##### π§° Maintenance - Bump dependencies ([#​7554](https://togithub.com/eksctl-io/eksctl/issues/7554)) - Extract common workflow steps to set up build environment ([#​7551](https://togithub.com/eksctl-io/eksctl/issues/7551)) ##### Acknowledgments The eksctl maintainers would like to sincerely thank: [@​a2ush](https://togithub.com/a2ush) and [@​mttrb](https://togithub.com/mttrb) ### [`v0.171.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.171.0): eksctl 0.171.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.170.0...0.171.0) ##### Release v0.171.0 ##### π Features - Add support for Ubuntu 22.04 based EKS images ([#​7516](https://togithub.com/eksctl-io/eksctl/issues/7516)) ##### π Documentation - Announce eksctl Support Status Update on eksctl.io ([#​7539](https://togithub.com/eksctl-io/eksctl/issues/7539)) ##### Acknowledgments The eksctl maintainers would like to sincerely thank: [@​toabctl](https://togithub.com/toabctl) ### [`v0.170.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.170.0): eksctl 0.170.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.169.0...0.170.0) ##### Release v0.170.0 ##### π Features - Add support for Access Entry type ([#​7522](https://togithub.com/eksctl-io/eksctl/issues/7522)) ##### π― Improvements - Skip draining managed nodegroups when deleting cluster ([#​7515](https://togithub.com/eksctl-io/eksctl/issues/7515)) - Expand Karpenter settings.aws block to settings for v0.33.0 and greater ([#​7503](https://togithub.com/eksctl-io/eksctl/issues/7503)) ##### π Documentation - docs(fargate): eksctl update command is deprecated, use upgrade instead ([#​7517](https://togithub.com/eksctl-io/eksctl/issues/7517)) ##### Acknowledgments The eksctl maintainers would like to sincerely thank: [@​skl](https://togithub.com/skl) ### [`v0.169.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.169.0): eksctl 0.169.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.168.0...0.169.0) ##### Release v0.169.0 ##### π Features - Add support for EKS 1.29 ([#​7498](https://togithub.com/eksctl-io/eksctl/issues/7498)) ##### π― Improvements - Fix coredns pdb preventing cluster deletion in integration tests ([#​7496](https://togithub.com/eksctl-io/eksctl/issues/7496)) - Update well-known policy for ebsCSIController ([#​7451](https://togithub.com/eksctl-io/eksctl/issues/7451)) - Handle unordered public endpoint CIDRs from EKS in endpoint updates ([#​7483](https://togithub.com/eksctl-io/eksctl/issues/7483)) ##### π§° Maintenance - Fix coredns pdb preventing cluster deletion in integration tests ([#​7496](https://togithub.com/eksctl-io/eksctl/issues/7496)) ##### π Documentation - Fix outdated links ([#​7297](https://togithub.com/eksctl-io/eksctl/issues/7297)) ##### Acknowledgments Weaveworks would like to sincerely thank: [@​Emberwalker](https://togithub.com/Emberwalker), [@​guessi](https://togithub.com/guessi), and [@​teraflik](https://togithub.com/teraflik) ### [`v0.168.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.168.0): eksctl 0.168.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.167.0...0.168.0) ##### Release v0.168.0 ##### π― Improvements - Safely access/mutate fargate coredns pod annotations ([#​7480](https://togithub.com/eksctl-io/eksctl/issues/7480)) ##### π Bug Fixes - Fix generating presigned URL for K8s authentication ([#​7487](https://togithub.com/eksctl-io/eksctl/issues/7487)) - Ignore unsupported zone types when creating a zone mapping ([#​7204](https://togithub.com/eksctl-io/eksctl/issues/7204)) ### [`v0.167.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.167.0): eksctl 0.167.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.166.0...0.167.0) ##### Release v0.167.0 ##### π Features - Add support for EKS Access Entries ([#​7421](https://togithub.com/eksctl-io/eksctl/issues/7421), [#​7422](https://togithub.com/eksctl-io/eksctl/issues/7422), [#​7423](https://togithub.com/eksctl-io/eksctl/issues/7423)) - Add support for ca-west-1 ([#​7419](https://togithub.com/eksctl-io/eksctl/issues/7419)) ##### π§° Maintenance - Bump AWS dependencies, fix test ([#​7420](https://togithub.com/eksctl-io/eksctl/issues/7420)) ### [`v0.166.0`](https://togithub.com/eksctl-io/eksctl/releases/tag/v0.166.0): eksctl 0.166.0 (permalink) [Compare Source](https://togithub.com/eksctl-io/eksctl/compare/0.165.0...0.166.0) ##### Release v0.166.0 ##### π Features - Add utils command to migrate to pod identity associations ([#​7343](https://togithub.com/eksctl-io/eksctl/issues/7343)) ##### π Bug Fixes - Disable module caching in `actions/setup-go` ([#​7374](https://togithub.com/eksctl-io/eksctl/issues/7374)) - Fix STS interface ([#​7345](https://togithub.com/eksctl-io/eksctl/issues/7345)) - Fix build-integration-test for pod_identity_associations ([#​7336](https://togithub.com/eksctl-io/eksctl/issues/7336)) ##### π§° Maintenance - Update build image tag and actions ([#​7337](https://togithub.com/eksctl-io/eksctl/issues/7337)) ##### π Documentation - Update reference for bottlerocket settings ([#​7375](https://togithub.com/eksctl-io/eksctl/issues/7375)) - Documentation Update: Correct IAM Pod Identity Example Link ([#​7376](https://togithub.com/eksctl-io/eksctl/issues/7376)) ##### Acknowledgments Weaveworks would like to sincerely thank: [@​chasestech](https://togithub.com/chasestech) </details> <details> <summary>google-github-actions/auth (google-github-actions/auth)</summary> ### [`v2.1.2`](https://togithub.com/google-github-actions/auth/releases/tag/v2.1.2) [Compare Source](https://togithub.com/google-github-actions/auth/compare/v2.1.1...v2.1.2) ##### What's Changed - Remove documentation on retries (deprecated) by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/392](https://togithub.com/google-github-actions/auth/pull/392) - Add security considerations for Attribute Conditions by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/393](https://togithub.com/google-github-actions/auth/pull/393) - security: bump undici from 5.28.2 to 5.28.3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/google-github-actions/auth/pull/394](https://togithub.com/google-github-actions/auth/pull/394) - Reduce warnings to info level with a warning icon by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/397](https://togithub.com/google-github-actions/auth/pull/397) - Release: v2.1.2 by [@​google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/auth/pull/399](https://togithub.com/google-github-actions/auth/pull/399) ##### New Contributors - [@​dependabot](https://togithub.com/dependabot) made their first contribution in [https://github.com/google-github-actions/auth/pull/394](https://togithub.com/google-github-actions/auth/pull/394) **Full Changelog**: https://github.com/google-github-actions/auth/compare/v2...v2.1.2 ### [`v2.1.1`](https://togithub.com/google-github-actions/auth/releases/tag/v2.1.1) [Compare Source](https://togithub.com/google-github-actions/auth/compare/v2.1.0...v2.1.1) ##### What's Changed - Remove retry logic by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/389](https://togithub.com/google-github-actions/auth/pull/389) - Use an OAuth 2.0 access token for Domain-Wide Delegation by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/388](https://togithub.com/google-github-actions/auth/pull/388) - Release: v2.1.1 by [@​google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/auth/pull/390](https://togithub.com/google-github-actions/auth/pull/390) **Full Changelog**: https://github.com/google-github-actions/auth/compare/v2...v2.1.1 ### [`v2.1.0`](https://togithub.com/google-github-actions/auth/releases/tag/v2.1.0) [Compare Source](https://togithub.com/google-github-actions/auth/compare/v2.0.1...v2.1.0) ##### What's Changed - Update deps by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/auth/pull/384](https://togithub.com/google-github-actions/auth/pull/384) - Release: v2.1.0 by [@​google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/auth/pull/385](https://togithub.com/google-github-actions/auth/pull/385) **Full Changelog**: https://github.com/google-github-actions/auth/compare/v2...v2.1.0 </details> <details> <summary>google-github-actions/setup-gcloud (google-github-actions/setup-gcloud)</summary> ### [`v2.1.0`](https://togithub.com/google-github-actions/setup-gcloud/releases/tag/v2.1.0) [Compare Source](https://togithub.com/google-github-actions/setup-gcloud/compare/v2.0.1...v2.1.0) ##### What's Changed - Update deps by [@​sethvargo](https://togithub.com/sethvargo) in [https://github.com/google-github-actions/setup-gcloud/pull/677](https://togithub.com/google-github-actions/setup-gcloud/pull/677) - Release: v2.1.0 by [@​google-github-actions-bot](https://togithub.com/google-github-actions-bot) in [https://github.com/google-github-actions/setup-gcloud/pull/678](https://togithub.com/google-github-actions/setup-gcloud/pull/678) **Full Changelog**: https://github.com/google-github-actions/setup-gcloud/compare/v2...v2.1.0 </details> <details> <summary>helm/kind-action (helm/kind-action)</summary> ### [`v1.9.0`](https://togithub.com/helm/kind-action/releases/tag/v1.9.0) [Compare Source](https://togithub.com/helm/kind-action/compare/v1.8.0...v1.9.0) #### What's Changed - Bump actions/checkout from 3.3.0 to 3.5.3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/90](https://togithub.com/helm/kind-action/pull/90) - Bump actions/checkout from 3.5.3 to 3.6.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/96](https://togithub.com/helm/kind-action/pull/96) - Bump actions/checkout from 3.6.0 to 4.0.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/97](https://togithub.com/helm/kind-action/pull/97) - Bump actions/checkout from 4.0.0 to 4.1.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/98](https://togithub.com/helm/kind-action/pull/98) - Bump actions/checkout from 4.1.0 to 4.1.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/helm/kind-action/pull/99](https://togithub.com/helm/kind-action/pull/99) - chore: Bump node version to node20 by [@​sayboras](https://togithub.com/sayboras) in [https://github.com/helm/kind-action/pull/102](https://togithub.com/helm/kind-action/pull/102) - Fix arch detection in non-Debian distros by [@​musse](https://togithub.com/musse) in [https://github.com/helm/kind-action/pull/93](https://togithub.com/helm/kind-action/pull/93) - docs: fix default version in action.yml by [@​dunglas](https://togithub.com/dunglas) in [https://github.com/helm/kind-action/pull/91](https://togithub.com/helm/kind-action/pull/91) - docs: bump outdated action version in README by [@​dunglas](https://togithub.com/dunglas) in [https://github.com/helm/kind-action/pull/92](https://togithub.com/helm/kind-action/pull/92) #### New Contributors - [@​musse](https://togithub.com/musse) made their first contribution in [https://github.com/helm/kind-action/pull/93](https://togithub.com/helm/kind-action/pull/93) - [@​dunglas](https://togithub.com/dunglas) made their first contribution in [https://github.com/helm/kind-action/pull/91](https://togithub.com/helm/kind-action/pull/91) **Full Changelog**: https://github.com/helm/kind-action/compare/v1.8.0...v1.9.0 </details> <details> <summary>kubernetes-sigs/bom (kubernetes-sigs/bom)</summary> ### [`v0.6.0`](https://togithub.com/kubernetes-sigs/bom/releases/tag/v0.6.0) [Compare Source](https://togithub.com/kubernetes-sigs/bom/compare/v0.5.1...v0.6.0) ##### Changes by Kind ##### Feature - Add attestation in the release job ([#​271](https://togithub.com/kubernetes-sigs/bom/issues/271), [@​cpanato](https://togithub.com/cpanato)) - Added support for scanning images with RPM package managers ([#​342](https://togithub.com/kubernetes-sigs/bom/issues/342), [@​micahhausler](https://togithub.com/micahhausler)) - Bom now ships with the SPDX license list version v3.21 embedded. ([#​307](https://togithub.com/kubernetes-sigs/bom/issues/307), [@​puerco](https://togithub.com/puerco)) - Improved the query help output, most importantly there is now help for the purl matcher - New flag `--purl` to output purls instead of names - The name matching filter now supports full regexes and not just substring matching - New pluggable printer interface to output in more formats - bom document query now can output in JSON and CSV in addition to the usual line printer using `--format` - New `--fields` flag controls which fields of the sbom will be printed on the query output - Piped data on STDIN is now autodetected, you can now pipe an SBOM to `bom document query` and skip the filename ([#​291](https://togithub.com/kubernetes-sigs/bom/issues/291), [@​puerco](https://togithub.com/puerco)) - OS Packages now can include an auto-generated download location. Initially supports Debian and Wolfi. ([#​270](https://togithub.com/kubernetes-sigs/bom/issues/270), [@​puerco](https://togithub.com/puerco)) - The `bom` json parser now supports top-level elements specified with a `DESCRIBES` relationship to the document. `documentDescribes` is, of course, still suppoirted - License printing in query results has better `NOASSERTION` detection when choosing which license to print. ([#​304](https://togithub.com/kubernetes-sigs/bom/issues/304), [@​puerco](https://togithub.com/puerco)) - Update license-data to v3.22 ([#​357](https://togithub.com/kubernetes-sigs/bom/issues/357), [@​cpanato](https://togithub.com/cpanato)) - `bom` now supports scanning OS packages from images based on distroless. - Fixed a bug where `bom` would drop the last package read from the debian database - Fixed an encoding bug in oci-typed purls where the version had an unescaped colon. ([#​345](https://togithub.com/kubernetes-sigs/bom/issues/345), [@​puerco](https://togithub.com/puerco)) - `bom` will now autodetect when STDIN is open to outline an SBOM to avoid specifying it with a dash ([#​260](https://togithub.com/kubernetes-sigs/bom/issues/260), [@​puerco](https://togithub.com/puerco)) ##### Bug or Regression - Bom will now read the SBOM until it detects the SBOM encoding data, enabling it to parse SBOMs with the document data defined at the end of the file. - When trying to ingest a CycloneDX document, bom will now print a more useful warning ([#​259](https://togithub.com/kubernetes-sigs/bom/issues/259), [@​puerco](https://togithub.com/puerco)) - Fixed a race condition where concurrent files canning processes could clash and cause a segfault (thanks to [@​howardjohn](https://togithub.com/howardjohn) for reporting) ([#​312](https://togithub.com/kubernetes-sigs/bom/issues/312), [@​puerco](https://togithub.com/puerco)) - JSON-encoded files now include supplier and originator data. ([#​269](https://togithub.com/kubernetes-sigs/bom/issues/269), [@​puerco](https://togithub.com/puerco)) ##### Other (Cleanup or Flake) - Go.mod: Update github.com/uwu-tools/magex to v0.10.0 ([#​275](https://togithub.com/kubernetes-sigs/bom/issues/275), [@​cpanato](https://togithub.com/cpanato)) - SPDX packages representing container images are now named using their full reference and digest: `registry.com/repository/image@sha256:digest` ([#​289](https://togithub.com/kubernetes-sigs/bom/issues/289), [@​puerco](https://togithub.com/puerco)) ##### Dependencies ##### Added - dario.cat/mergo: v1.0.0 - github.com/MakeNowJust/heredoc/v2: [v2.0.1](https://togithub.com/MakeNowJust/heredoc/v2/tree/v2.0.1) - github.com/cyphar/filepath-securejoin: [v0.2.4](https://togithub.com/cyphar/filepath-securejoin/tree/v0.2.4) - github.com/dustin/go-humanize: [v1.0.1](https://togithub.com/dustin/go-humanize/tree/v1.0.1) - github.com/elazarl/goproxy: [2592e75](https://togithub.com/elazarl/goproxy/tree/2592e75) - github.com/glebarez/go-sqlite: [v1.22.0](https://togithub.com/glebarez/go-sqlite/tree/v1.22.0) - github.com/go-jose/go-jose/v3: [v3.0.0](https://togithub.com/go-jose/go-jose/v3/tree/v3.0.0) - github.com/golang/groupcache: [41bb18b](https://togithub.com/golang/groupcache/tree/41bb18b) - github.com/google/pprof: [e6195bd](https://togithub.com/google/pprof/tree/e6195bd) - github.com/hashicorp/errwrap: [v1.0.0](https://togithub.com/hashicorp/errwrap/tree/v1.0.0) - github.com/hashicorp/go-multierror: [v1.1.1](https://togithub.com/hashicorp/go-multierror/tree/v1.1.1) - github.com/kballard/go-shellquote: [95032a8](https://togithub.com/kballard/go-shellquote/tree/95032a8) - github.com/klauspost/cpuid/v2: [v2.2.3](https://togithub.com/klauspost/cpuid/v2/tree/v2.2.3) - github.com/knqyf263/go-rpmdb: [067d98b](https://togithub.com/knqyf263/go-rpmdb/tree/067d98b) - github.com/mattn/go-isatty: [v0.0.20](https://togithub.com/mattn/go-isatty/tree/v0.0.20) - github.com/mattn/go-sqlite3: [v1.14.16](https://togithub.com/mattn/go-sqlite3/tree/v1.14.16) - github.com/remyoudompheng/bigfft: [24d4a6f](https://togithub.com/remyoudompheng/bigfft/tree/24d4a6f) - github.com/uwu-tools/magex: [v0.10.0](https://togithub.com/uwu-tools/magex/tree/v0.10.0) - golang.org/x/exp: [`d852ddb`](https://togithub.com/kubernetes-sigs/bom/commit/d852ddb) - golang.org/x/tools/go/vcs: v0.1.0-deprecated - lukechampine.com/uint128: v1.3.0 - modernc.org/cc/v3: v3.41.0 - modernc.org/ccgo/v3: v3.16.15 - modernc.org/httpfs: v1.0.6 - modernc.org/libc: v1.37.6 - modernc.org/mathutil: v1.6.0 - modernc.org/memory: v1.7.2 - modernc.org/opt: v0.1.3 - modernc.org/sqlite: v1.28.0 - modernc.org/strutil: v1.2.0 - modernc.org/tcl: v1.15.2 - modernc.org/token: v1.1.0 - modernc.org/z: v1.7.3 ##### Changed - cloud.google.com/go/compute: v1.18.0 β v1.19.3 - github.com/BurntSushi/toml: [v0.3.1 β v1.2.1](https://togithub.com/BurntSushi/toml/compare/v0.3.1...v1.2.1) - github.com/Masterminds/semver/v3: [v3.1.1 β v3.2.1](https://togithub.com/Masterminds/semver/v3/compare/v3.1.1...v3.2.1) - github.com/Microsoft/go-winio: [v0.6.0 β v0.6.1](https://togithub.com/Microsoft/go-winio/compare/v0.6.0...v0.6.1) - github.com/ProtonMail/go-crypto: [7d5c6f0 β 3c4c8a2](https://togithub.com/ProtonMail/go-crypto/compare/7d5c6f0...3c4c8a2) - github.com/cloudflare/circl: [v1.1.0 β v1.3.3](https://togithub.com/cloudflare/circl/compare/v1.1.0...v1.3.3) - github.com/cpuguy83/go-md2man/v2: [v2.0.2 β v2.0.3](https://togithub.com/cpuguy83/go-md2man/v2/compare/v2.0.2...v2.0.3) - github.com/docker/cli: [v23.0.1+incompatible β v24.0.0+incompatible](https://togithub.com/docker/cli/compare/v23.0.1...v24.0.0) - github.com/docker/distribution: [v2.8.1+incompatible β v2.8.2+incompatible](https://togithub.com/docker/distribution/compare/v2.8.1...v2.8.2) - github.com/docker/docker: [v23.0.1+incompatible β v24.0.0+incompatible](https://togithub.com/docker/docker/compare/v23.0.1...v24.0.0) - github.com/go-git/gcfg: [v1.5.0 β 3a3c614](https://togithub.com/go-git/gcfg/compare/v1.5.0...3a3c614) - github.com/go-git/go-billy/v5: [v5.4.1 β v5.5.0](https://togithub.com/go-git/go-billy/v5/compare/v5.4.1...v5.5.0) - github.com/go-git/go-git-fixtures/v4: [v4.3.1 β 55a9409](https://togithub.com/go-git/go-git-fixtures/v4/compare/v4.3.1...55a9409) - github.com/go-git/go-git/v5: [v5.6.1 β v5.11.0](https://togithub.com/go-git/go-git/v5/compare/v5.6.1...v5.11.0) - github.com/google/go-cmp: [v0.5.9 β v0.6.0](https://togithub.com/google/go-cmp/compare/v0.5.9...v0.6.0) - github.com/google/go-containerregistry: [v0.14.0 β v0.17.0](https://togithub.com/google/go-containerregistry/compare/v0.14.0...v0.17.0) - github.com/google/uuid: [v1.3.0 β v1.5.0](https://togithub.com/google/uuid/compare/v1.3.0...v1.5.0) - github.com/in-toto/in-toto-golang: [v0.7.0 β v0.9.0](https://togithub.com/in-toto/in-toto-golang/compare/v0.7.0...v0.9.0) - github.com/klauspost/compress: [v1.16.0 β v1.16.5](https://togithub.com/klauspost/compress/compare/v1.16.0...v1.16.5) - github.com/kr/pretty: [v0.3.0 β v0.3.1](https://togithub.com/kr/pretty/compare/v0.3.0...v0.3.1) - github.com/magefile/mage: [v1.14.0 β v1.15.0](https://togithub.com/magefile/mage/compare/v1.14.0...v1.15.0) - github.com/maxbrunsfeld/counterfeiter/v6: [v6.6.1 β v6.8.1](https://togithub.com/maxbrunsfeld/counterfeiter/v6/compare/v6.6.1...v6.8.1) - github.com/moby/term: [3f7ff69 β v0.5.0](https://togithub.com/moby/term/compare/3f7ff69...v0.5.0) - github.com/onsi/gomega: [v1.26.0 β v1.30.0](https://togithub.com/onsi/gomega/compare/v1.26.0...v1.30.0) - github.com/opencontainers/image-spec: [v1.1.0-rc2 β v1.1.0-rc3](https://togithub.com/opencontainers/image-spec/compare/v1.1.0-rc2...v1.1.0-rc3) - github.com/package-url/packageurl-go: [d704593 β v0.1.2](https://togithub.com/package-url/packageurl-go/compare/d704593...v0.1.2) - github.com/rogpeppe/go-internal: [v1.8.1 β v1.11.0](https://togithub.com/rogpeppe/go-internal/compare/v1.8.1...v1.11.0) - github.com/secure-systems-lab/go-securesystemslib: [v0.5.0 β v0.6.0](https://togithub.com/secure-systems-lab/go-securesystemslib/compare/v0.5.0...v0.6.0) - github.com/sirupsen/logrus: [v1.9.0 β v1.9.3](https://togithub.com/sirupsen/logrus/compare/v1.9.0...v1.9.3) - github.com/skeema/knownhosts: [v1.1.0 β v1.2.1](https://togithub.com/skeema/knownhosts/compare/v1.1.0...v1.2.1) - github.com/spf13/cobra: [v1.6.1 β v1.8.0](https://togithub.com/spf13/cobra/compare/v1.6.1...v1.8.0) - github.com/spiffe/go-spiffe/v2: [v2.1.2 β v2.1.3](https://togithub.com/spiffe/go-spiffe/v2/compare/v2.1.2...v2.1.3) - github.com/stretchr/testify: [v1.8.2 β v1.8.4](https://togithub.com/stretchr/testify/compare/v1.8.2...v1.8.4) - github.com/urfave/cli: [v1.22.4 β v1.22.12](https://togithub.com/urfave/cli/compare/v1.22.4...v1.22.12) - github.com/vbatts/tar-split: [v0.11.2 β v0.11.3](https://togithub.com/vbatts/tar-split/compare/v0.11.2...v0.11.3) - gitlab.alpinelinux.org/alpine/go: v0.6.0 β v0.8.0 - golang.org/x/crypto: v0.6.0 β v0.18.0 - golang.org/x/mod: v0.9.0 β v0.14.0 - golang.org/x/net: v0.8.0 β v0.20.0 - golang.org/x/oauth2: v0.6.0 β v0.8.0 - golang.org/x/sync: v0.1.0 β v0.6.0 - golang.org/x/sys: v0.6.0 β v0.16.0 - golang.org/x/term: v0.6.0 β v0.16.0 - golang.org/x/text: v0.8.0 β v0.14.0 - golang.org/x/tools: v0.7.0 β v0.17.0 - golang.org/x/xerrors: [`5ec99f8`](https://togithub.com/kubernetes-sigs/bom/commit/5ec99f8) β [`104605a`](https://togithub.com/kubernetes-sigs/bom/commit/104605a) - google.golang.org/genproto: [`76db087`](https://togithub.com/kubernetes-sigs/bom/commit/76db087) β [`637eb22`](https://togithub.com/kubernetes-sigs/bom/commit/637eb22) - google.golang.org/grpc: v1.53.0 β v1.54.0 - google.golang.org/protobuf: v1.29.0 β v1.30.0 - mvdan.cc/sh/v3: v3.5.1 β v3.7.0 - sigs.k8s.io/release-utils: [`2b998c6`](https://togithub.com/kubernetes-sigs/bom/commit/2b998c6) β v0.7.7 ##### Removed - github.com/MakeNowJust/heredoc: [v1.0.0](https://togithub.com/MakeNowJust/heredoc/tree/v1.0.0) - github.com/acomagu/bufpipe: [v1.0.4](https://togithub.com/acomagu/bufpipe/tree/v1.0.4) - github.com/bwesterb/go-ristretto: [v1.2.0](https://togithub.com/bwesterb/go-ristretto/tree/v1.2.0) - github.com/carolynvs/magex: [v0.9.0](https://togithub.com/carolynvs/magex/tree/v0.9.0) - github.com/creack/pty: [v1.1.17](https://togithub.com/creack/pty/tree/v1.1.17) - github.com/frankban/quicktest: [v1.14.0](https://togithub.com/frankban/quicktest/tree/v1.14.0) - github.com/google/renameio: [v1.0.1](https://togithub.com/google/renameio/tree/v1.0.1) - github.com/imdario/mergo: [v0.3.13](https://togithub.com/imdario/mergo/tree/v0.3.13) - github.com/jessevdk/go-flags: [v1.5.0](https://togithub.com/jessevdk/go-flags/tree/v1.5.0) - github.com/matryer/is: [v1.2.0](https://togithub.com/matryer/is/tree/v1.2.0) - github.com/mmcloughlin/avo: [v0.5.0](https://togithub.com/mmcloughlin/avo/tree/v0.5.0) - github.com/niemeyer/pretty: [a10e7ca](https://togithub.com/niemeyer/pretty/tree/a10e7ca) - github.com/pkg/diff: [20ebb0f](https://togithub.com/pkg/diff/tree/20ebb0f) - github.com/shurcooL/sanitized_anchor_name: [v1.0.0](https://togithub.com/shurcooL/sanitized_anchor_name/tree/v1.0.0) - golang.org/x/arch: v0.1.0 - gopkg.in/errgo.v2: v2.1.0 - gopkg.in/square/go-jose.v2: v2.6.0 - mvdan.cc/editorconfig: v0.2.0 - rsc.io/pdf: v0.1.1 </details> <details> <summary>kubernetes-sigs/kind (kubernetes-sigs/kind)</summary> ### [`v0.22.0`](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.22.0) [Compare Source](https://togithub.com/kubernetes-sigs/kind/compare/v0.21.0...v0.22.0) This release is a quick follow-up to [v0.21.0](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.21.0) with bug fixes including not overriding the host's binfmt_misc (a regression in v0.20.0, see: [https://github.com/kubernetes-sigs/kind/issues/3510](https://togithub.com/kubernetes-sigs/kind/issues/3510)). <h1 id="breaking-changes">Breaking Changes</h1> - The default node image is now Kubernetes 1.29.2: `kindest/node:v1.29.2@​sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245` **If you haven't already, please see also [v0.21.0 release notes](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.21.0) given the short time between releases.** <h1 id="new-features">New Features</h1> - Remove `exclude-from-external-load-balancers` from single node clusters [https://github.com/kubernetes-sigs/kind/issues/3506](https://togithub.com/kubernetes-sigs/kind/issues/3506) - Support for building node images on hosts with proxies Images pre-built for this release: - v1.29.2: `kindest/node:v1.29.2@​sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245` - v1.29.1: `kindest/node:v1.29.1@​sha256:0c06baa545c3bb3fbd4828eb49b8b805f6788e18ce67bff34706ffa91866558b` - v1.28.7: `kindest/node:v1.28.7@​sha256:9bc6c451a289cf96ad0bbaf33d416901de6fd632415b076ab05f5fa7e4f65c58` - v1.28.6: `kindest/node:v1.28.6@​sha256:e9e59d321795595d0eed0de48ef9fbda50388dc8bd4a9b23fb9bd869f370ec7e` - v1.27.11: `kindest/node:v1.27.11@​sha256:681253009e68069b8e01aad36a1e0fa8cf18bb0ab3e5c4069b2e65cafdd70843` - v1.27.10: `kindest/node:v1.27.10@​sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476` - v1.26.14: `kindest/node:v1.26.14@​sha256:5d548739ddef37b9318c70cb977f57bf3e5015e4552be4e27e57280a8cbb8e4f` - v1.26.13: `kindest/node:v1.26.13@​sha256:8cb4239d64ff897e0c21ad19fe1d68c3422d4f3c1c1a734b7ab9ccc76c549605` - v1.25.16: `kindest/node:v1.25.16@​sha256:e8b50f8e06b44bb65a93678a65a26248fae585b3d3c2a669e5ca6c90c69dc519` - v1.24.17: `kindest/node:v1.24.17@​sha256:bad10f9b98d54586cba05a7eaa1b61c6b90bfc4ee174fdc43a7b75ca75c95e51` - v1.23.17: `kindest/node:v1.23.17@​sha256:14d0a9a892b943866d7e6be119a06871291c517d279aedb816a4b4bc0ec0a5b3` **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: - https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster - https://kind.sigs.k8s.io/docs/user/quick-start/#building-images 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 [https://github.com/kubernetes-sigs/kind/issues/2718](https://togithub.com/kubernetes-sigs/kind/issues/2718) <h1 id="fixes">Fixes</h1> - binfmt_misc no longer set by node images (regression in v0.20.0) - fix runc hooks when non-root / usernamespaces - Support multiple random extraPortMappings - Docs fixes for contour and WSL2 <h1 id="contributors">Contributors</h1> **Thank you to everyone who contributed to this release! β€οΈ** Users whose commits are in this release (alphabetically by user name) - [@​BenTheElder](https://togithub.com/BenTheElder) - [@​dependabot](https://togithub.com/dependabot)\[bot] - [@​dgl](https://togithub.com/dgl) - [@​howardjohn](https://togithub.com/howardjohn) - [@​k8s-ci-robot](https://togithub.com/k8s-ci-robot) - [@​r-suke](https://togithub.com/r-suke) - [@​skriss](https://togithub.com/skriss) - [@​wouterh-dev](https://togithub.com/wouterh-dev) - [@​Zumium](https://togithub.com/Zumium) Thank you as well to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, and helping users in slack! ### [`v0.21.0`](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.21.0) [Compare Source](https://togithub.com/kubernetes-sigs/kind/compare/v0.20.0...v0.21.0) This release patches the recent [runc CVEs](https://togithub.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv), as well as an issue with `kind build node-image` and docker v25.0.0+ <h1 id="breaking-changes">Breaking Changes</h1> - The default node image is a Kubernetes `v1.29.1` image: `kindest/node:v1.29.1@​sha256:a0cc28af37cf39b019e2b448c54d1a3f789de32536cb5a5db61a49623e527144` **If you haven't already, please see also [v0.20.0 release notes](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.20.0) which had important announcements that still apply going forward**. <h1 id="new-features">New Features</h1> - Upgraded go to 1.20.13 - Upgraded crictl to 1.28 - Upgraded containerd fuse overlayfs to 1.0.6 - Began marking some core images pinned in containerd, which may eventually make enabling imageGC safer - kindnetd will ignore nodes with empty podCIDR, enabling some niche use-cases Images pre-built for this release: - v1.29.1: `kindest/node:v1.29.1@​sha256:a0cc28af37cf39b019e2b448c54d1a3f789de32536cb5a5db61a49623e527144` - v1.28.6: `kindest/node:v1.28.6@​sha256:b7e1cf6b2b729f604133c667a6be8aab6f4dde5bb042c1891ae248d9154f665b` - v1.27.10: `kindest/node:v1.27.10@​sha256:3700c811144e24a6c6181065265f69b9bf0b437c45741017182d7c82b908918f` - v1.26.13: `kindest/node:v1.26.13@​sha256:15ae92d507b7d4aec6e8920d358fc63d3b980493db191d7327541fbaaed1f789` - v1.25.16: `kindest/node:v1.25.16@​sha256:9d0a62b55d4fe1e262953be8d406689b947668626a357b5f9d0cfbddbebbc727` - v1.24.17: `kindest/node:v1.24.17@​sha256:ea292d57ec5dd0e2f3f5a2d77efa246ac883c051ff80e887109fabefbd3125c7` - v1.23.17: `kindest/node:v1.23.17@​sha256:fbb92ac580fce498473762419df27fa8664dbaa1c5a361b5957e123b4035bdcf` **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: - https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster - https://kind.sigs.k8s.io/docs/user/quick-start/#building-images 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 [https://github.com/kubernetes-sigs/kind/issues/2718](https://togithub.com/kubernetes-sigs/kind/issues/2718) <h1 id="fixes">Fixes</h1> - Updated runc to v1.1.12, containerd to v1.7.13 including the fix for https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv - Fixed `kind build node-image` with docker v25.0.0+ - **NOTE**: `kind load docker-image` is still broken with Docker v25.0.0 due to a docker bug, which has a fix merged that should be included in Docker v25.0.1+ - Assorted docs fixes <h1 id="contributors">Contributors</h1> **Thank you to everyone who contributed to this release! β€οΈ** Users whose commits are in this release (alphabetically by user name) - [@​adelton](https://togithub.com/adelton) - [@​ameukam](https://togithub.com/ameukam) - [@​AkihiroSuda](https://togithub.com/AkihiroSuda) - [@​AryanSharma9917](https://togithub.com/AryanSharma9917) - [@​BenTheElder](https://togithub.com/BenTheElder) - [@​bpfoster](https://togithub.com/bpfoster) - [@​corneliusroemer](https://togithub.com/corneliusroemer) - [@​dependabot](https://togithub.com/dependabot)\[bot] - [@​k8s-ci-robot](https://togithub.com/k8s-ci-robot) - [@​kir4h](https://togithub.com/kir4h) - [@​liangyuanpeng](https://togithub.com/liangyuanpeng) - [@​lixin963](https://togithub.com/lixin963) - [@​matzew](https://togithub.com/matzew) - [@​mausearce](https://togithub.com/mausearce) - [@​ronaldpetty](https://togithub.com/ronaldpetty) - [@​roman-kiselenko](https://togithub.com/roman-kiselenko) - [@​saschagrunert](https://togithub.com/saschagrunert) Thank you as well to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, and helping users in slack! </details> <details> <summary>myrotvorets/set-commit-status-action (myrotvorets/set-commit-status-action)</summary> ### [`v2.0.1`](https://togithub.com/myrotvorets/set-commit-status-action/releases/tag/v2.0.1) [Compare Source](https://togithub.com/myrotvorets/set-commit-status-action/compare/v2.0.0...v2.0.1) ##### What's Changed - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.6.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/440](https://togithub.com/myrotvorets/set-commit-status-action/pull/440) - chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/441](https://togithub.com/myrotvorets/set-commit-status-action/pull/441) - chore(deps): update dependency [@​actions/core](https://togithub.com/actions/core) to v1.10.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/442](https://togithub.com/myrotvorets/set-commit-status-action/pull/442) - chore(deps): update dependency [@​octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v7.3.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/443](https://togithub.com/myrotvorets/set-commit-status-action/pull/443) - chore(deps): update github/codeql-action digest to [`701f152`](https://togithub.com/myrotvorets/set-commit-status-action/commit/701f152) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/444](https://togithub.com/myrotvorets/set-commit-status-action/pull/444) - chore(deps): update github/codeql-action digest to [`04daf01`](https://togithub.com/myrotvorets/set-commit-status-action/commit/04daf01) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/445](https://togithub.com/myrotvorets/set-commit-status-action/pull/445) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.6.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/446](https://togithub.com/myrotvorets/set-commit-status-action/pull/446) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.6.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/447](https://togithub.com/myrotvorets/set-commit-status-action/pull/447) - chore(deps): update dependency [@​octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v7.3.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/448](https://togithub.com/myrotvorets/set-commit-status-action/pull/448) - chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/449](https://togithub.com/myrotvorets/set-commit-status-action/pull/449) - chore(deps): update github/codeql-action digest to [`6a28655`](https://togithub.com/myrotvorets/set-commit-status-action/commit/6a28655) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/450](https://togithub.com/myrotvorets/set-commit-status-action/pull/450) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.6.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/451](https://togithub.com/myrotvorets/set-commit-status-action/pull/451) - chore(deps): update actions/checkout digest to [`8ade135`](https://togithub.com/myrotvorets/set-commit-status-action/commit/8ade135) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/452](https://togithub.com/myrotvorets/set-commit-status-action/pull/452) - chore(deps): update actions/checkout action to v4.1.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/453](https://togithub.com/myrotvorets/set-commit-status-action/pull/453) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.6.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/454](https://togithub.com/myrotvorets/set-commit-status-action/pull/454) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.6.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/455](https://togithub.com/myrotvorets/set-commit-status-action/pull/455) - chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/456](https://togithub.com/myrotvorets/set-commit-status-action/pull/456) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.7.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/457](https://togithub.com/myrotvorets/set-commit-status-action/pull/457) - chore(deps): update github/codeql-action digest to [`ddccb87`](https://togithub.com/myrotvorets/set-commit-status-action/commit/ddccb87) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/458](https://togithub.com/myrotvorets/set-commit-status-action/pull/458) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.7.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/459](https://togithub.com/myrotvorets/set-commit-status-action/pull/459) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.7.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/460](https://togithub.com/myrotvorets/set-commit-status-action/pull/460) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.8.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/461](https://togithub.com/myrotvorets/set-commit-status-action/pull/461) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.8.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/462](https://togithub.com/myrotvorets/set-commit-status-action/pull/462) - chore(deps): update github/codeql-action digest to [`2cb752a`](https://togithub.com/myrotvorets/set-commit-status-action/commit/2cb752a) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/463](https://togithub.com/myrotvorets/set-commit-status-action/pull/463) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.8.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/464](https://togithub.com/myrotvorets/set-commit-status-action/pull/464) - chore(deps): update dependency [@​myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.21.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/465](https://togithub.com/myrotvorets/set-commit-status-action/pull/465) - chore(deps): update dependency typescript to ^5.2.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/466](https://togithub.com/myrotvorets/set-commit-status-action/pull/466) - chore(deps): update devdependencies (non-major) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/467](https://togithub.com/myrotvorets/set-commit-status-action/pull/467) - chore(deps): update github/codeql-action digest to [`fdcae64`](https://togithub.com/myrotvorets/set-commit-status-action/commit/fdcae64) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/468](https://togithub.com/myrotvorets/set-commit-status-action/pull/468) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/469](https://togithub.com/myrotvorets/set-commit-status-action/pull/469) - chore(deps): update dependency [@​actions/github](https://togithub.com/actions/github) to v6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/470](https://togithub.com/myrotvorets/set-commit-status-action/pull/470) - chore(deps): update dependency [@​myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.22.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/471](https://togithub.com/myrotvorets/set-commit-status-action/pull/471) - chore(deps): update github/codeql-action digest to [`d90b8d7`](https://togithub.com/myrotvorets/set-commit-status-action/commit/d90b8d7) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/472](https://togithub.com/myrotvorets/set-commit-status-action/pull/472) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/473](https://togithub.com/myrotvorets/set-commit-status-action/pull/473) - chore(deps): update dependency [@​myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.22.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/474](https://togithub.com/myrotvorets/set-commit-status-action/pull/474) - chore(deps): update github/codeql-action digest to [`0116bc2`](https://togithub.com/myrotvorets/set-commit-status-action/commit/0116bc2) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/475](https://togithub.com/myrotvorets/set-commit-status-action/pull/475) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/476](https://togithub.com/myrotvorets/set-commit-status-action/pull/476) - chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/477](https://togithub.com/myrotvorets/set-commit-status-action/pull/477) - fix(deps): roll back actions/checkout action by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/478](https://togithub.com/myrotvorets/set-commit-status-action/pull/478) - chore(deps): update actions/checkout action to v4.1.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/479](https://togithub.com/myrotvorets/set-commit-status-action/pull/479) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/480](https://togithub.com/myrotvorets/set-commit-status-action/pull/480) - chore(deps): update dependency [@​vercel/ncc](https://togithub.com/vercel/ncc) to ^0.38.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/481](https://togithub.com/myrotvorets/set-commit-status-action/pull/481) - chore(deps): update github/codeql-action digest to [`49abf0b`](https://togithub.com/myrotvorets/set-commit-status-action/commit/49abf0b) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/482](https://togithub.com/myrotvorets/set-commit-status-action/pull/482) - chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/483](https://togithub.com/myrotvorets/set-commit-status-action/pull/483) - chore(deps): update actions/setup-node action to v3.8.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/484](https://togithub.com/myrotvorets/set-commit-status-action/pull/484) - chore(deps): update actions/setup-node action to v4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/485](https://togithub.com/myrotvorets/set-commit-status-action/pull/485) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.8 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/486](https://togithub.com/myrotvorets/set-commit-status-action/pull/486) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.9 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/487](https://togithub.com/myrotvorets/set-commit-status-action/pull/487) - chore(deps): update github/codeql-action digest to [`74483a3`](https://togithub.com/myrotvorets/set-commit-status-action/commit/74483a3) by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/488](https://togithub.com/myrotvorets/set-commit-status-action/pull/488) - chore(deps): update dependency [@​myrotvorets/eslint-config-myrotvorets-ts](https://togithub.com/myrotvorets/eslint-config-myrotvorets-ts) to ^2.22.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/489](https://togithub.com/myrotvorets/set-commit-status-action/pull/489) - chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-status-action/pull/490](https://togithub.com/myrotvorets/set-commit-status-action/pull/490) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to ^20.8.10 by [@​renovate](https://togithub.com/renovate) in [https://github.com/myrotvorets/set-commit-stat </details> --- ### Configuration π **Schedule**: Branch creation - "on monday" (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. π» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/aanm/cilium). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoidjEuMTUifQ==--> Patch-set: 1 Change-id: Ia5cf44faeefd734e1b099fe177c892552cd94f79 Subject: chore(deps): update all github action dependencies Branch: refs/heads/v1.15 Status: new Topic: Commit: 8913e688a0b1e52ff817852112e89d2fbfab66fb Tag: autogenerated:gerrit:newPatchSet Groups: 8913e688a0b1e52ff817852112e89d2fbfab66fb Private: false Work-in-progress: false
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | patch | `v4.1.5` -> `v4.1.6` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fcheckout/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fcheckout/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fcheckout/v4.1.5/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fcheckout/v4.1.5/v4.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [helm/helm](https://togithub.com/helm/helm) | | minor | `v3.14.4` -> `v3.15.0` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/helm%2fhelm/v3.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/helm%2fhelm/v3.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/helm%2fhelm/v3.14.4/v3.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/helm%2fhelm/v3.14.4/v3.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [hugo-extended](https://togithub.com/jakejarvis/hugo-extended) | devDependencies | minor | [`0.125.7` -> `0.126.1`](https://renovatebot.com/diffs/npm/hugo-extended/0.125.7/0.126.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/hugo-extended/0.126.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/hugo-extended/0.126.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/hugo-extended/0.125.7/0.126.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/hugo-extended/0.125.7/0.126.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/api](https://togithub.com/kubernetes/api) | require | patch | `v0.30.0` -> `v0.30.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fapi/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fapi/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fapi/v0.30.0/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fapi/v0.30.0/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/apimachinery](https://togithub.com/kubernetes/apimachinery) | require | patch | `v0.30.0` -> `v0.30.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fapimachinery/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fapimachinery/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fapimachinery/v0.30.0/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fapimachinery/v0.30.0/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/client-go](https://togithub.com/kubernetes/client-go) | require | patch | `v0.30.0` -> `v0.30.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fclient-go/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fclient-go/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fclient-go/v0.30.0/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fclient-go/v0.30.0/v0.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [kubernetes-sigs/kind](https://togithub.com/kubernetes-sigs/kind) | | minor | `v0.22.0` -> `v0.23.0` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/kubernetes-sigs%2fkind/v0.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/kubernetes-sigs%2fkind/v0.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/kubernetes-sigs%2fkind/v0.22.0/v0.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/kubernetes-sigs%2fkind/v0.22.0/v0.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [kubernetes/kubernetes](https://togithub.com/kubernetes/kubernetes) | | patch | `v1.30.0` -> `v1.30.1` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/kubernetes%2fkubernetes/v1.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/kubernetes%2fkubernetes/v1.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/kubernetes%2fkubernetes/v1.30.0/v1.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/kubernetes%2fkubernetes/v1.30.0/v1.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [mikefarah/yq](https://togithub.com/mikefarah/yq) | | minor | `v4.43.1` -> `v4.44.1` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/mikefarah%2fyq/v4.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/mikefarah%2fyq/v4.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/mikefarah%2fyq/v4.43.1/v4.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/mikefarah%2fyq/v4.43.1/v4.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [prometheus-operator/prometheus-operator](https://togithub.com/prometheus-operator/prometheus-operator) | | minor | `v0.73.2` -> `v0.74.0` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/prometheus-operator%2fprometheus-operator/v0.74.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/prometheus-operator%2fprometheus-operator/v0.74.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/prometheus-operator%2fprometheus-operator/v0.73.2/v0.74.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/prometheus-operator%2fprometheus-operator/v0.73.2/v0.74.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4.1.6`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416) [Compare Source](https://togithub.com/actions/checkout/compare/v4.1.5...v4.1.6) - Check platform to set archive extension appropriately by [@​cory-miller](https://togithub.com/cory-miller) in [https://github.com/actions/checkout/pull/1732](https://togithub.com/actions/checkout/pull/1732) </details> <details> <summary>helm/helm (helm/helm)</summary> ### [`v3.15.0`](https://togithub.com/helm/helm/releases/tag/v3.15.0): Helm v3.15.0 [Compare Source](https://togithub.com/helm/helm/compare/v3.14.4...v3.15.0) Helm v3.15.0 is a feature release. Users are encouraged to upgrade for the best experience. The community keeps growing, and we'd love to see you there! - Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com): - for questions and just to hang out - for discussing PRs, code, and bugs - Hang out at the Public Developer Call: Thursday, 9:30 Pacific via [Zoom](https://zoom.us/j/696660622) - Test, debug, and contribute charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0) #### Notable Changes - Opt-in to hiding secrets when running dry-run for install and upgrade - Added robustness to wait checks #### Installation and Upgrading Download Helm v3.15.0. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.15.0-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-darwin-amd64.tar.gz.sha256sum) / ccaee03af72e5dc168ae9b9e3267e2b461b0ebb7a77849048f4567286158777d) - [MacOS arm64](https://get.helm.sh/helm-v3.15.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-darwin-arm64.tar.gz.sha256sum) / 020df10fd29b0791f39aa5719d2926a995f78c1a2a7487923ca26485a0565909) - [Linux amd64](https://get.helm.sh/helm-v3.15.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-amd64.tar.gz.sha256sum) / a74747ac40777b86d3ff6f1be201504bba65ca46cd68b5fe25d3c394d0dcf745) - [Linux arm](https://get.helm.sh/helm-v3.15.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-arm.tar.gz.sha256sum) / 614d53ab1192667facce7e8d4e884ff067e5684199a7e5223e8808abc43e927f) - [Linux arm64](https://get.helm.sh/helm-v3.15.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-arm64.tar.gz.sha256sum) / c3b0281fca4c030548211dd6e9b032ee0a9fc53eab614f6acbaff631682ce808) - [Linux i386](https://get.helm.sh/helm-v3.15.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-386.tar.gz.sha256sum) / 8a267c7527e3c13602feea7432209c8931f6eecd4bff5ded398d70791c74a5b7) - [Linux ppc64le](https://get.helm.sh/helm-v3.15.0-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-ppc64le.tar.gz.sha256sum) / bcec19cdad95cae99edce046ccd8090f275e63381ccb6accb4304819fc26e004) - [Linux s390x](https://get.helm.sh/helm-v3.15.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-s390x.tar.gz.sha256sum) / a3030533cceedaca4af8fb7661c7154c578ad770279bb6003e1ecd810c72077a) - [Linux riscv64](https://get.helm.sh/helm-v3.15.0-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.15.0-linux-riscv64.tar.gz.sha256sum) / 468dc90d119b2faa91036747c559285a744ed7beb8b7d74b83878da6c13e0560) - [Windows amd64](https://get.helm.sh/helm-v3.15.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.15.0-windows-amd64.zip.sha256sum) / 23f0ee9fc93d325ddbc4dfdac97c83bc00c7784016541045756cf9abb36f21dc) This release was signed with ` 672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 B98E ` and can be found at [@​mattfarina](https://togithub.com/mattfarina) [keybase account](https://keybase.io/mattfarina). Please use the attached signatures for verifying this release using `gpg`. The [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you going from there. For **upgrade instructions** or detailed installation notes, check the [install guide](https://helm.sh/docs/intro/install/). You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) on any system with `bash`. #### What's Next - 3.15.1 is the next patch release and will be on June 12, 2024. - 3.16.0 is the next feature release and will be on September 11, 2024. #### Changelog - Updating to k8s 1.30 [`c4e37b3`](https://togithub.com/helm/helm/commit/c4e37b39dbb341cb3f716220df9f9d306d123a58) (Matt Farina) - bump version to v3.15.0 [`d7afa3b`](https://togithub.com/helm/helm/commit/d7afa3b6b432c09a02cd07342e908ba5bed34940) (Matt Farina) - bump version to [`7743467`](https://togithub.com/helm/helm/commit/774346777c5b311251d8252cd470d56bdd23a403) (Matt Farina) - Fix namespace on kubeconfig error [`214fb6e`](https://togithub.com/helm/helm/commit/214fb6eff393f1c17890d45e9eaee86f6b37ea17) (Calvin Krist) - Update testdata PKI with keys that have validity until 3393 (Fixes [#​12880](https://togithub.com/helm/helm/issues/12880)) [`1b75d48`](https://togithub.com/helm/helm/commit/1b75d48189c2484cb5904f7996933d8d85315adb) (Dirk MΓΌller) - chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 [`dac23c8`](https://togithub.com/helm/helm/commit/dac23c82ce3bc05b6e72a1571bea48e424494fb0) (dependabot\[bot]) - chore(deps): bump github/codeql-action from 3.24.7 to 3.24.10 [`167d576`](https://togithub.com/helm/helm/commit/167d57676d22ea10fa7869e6f85c6fe2e46b3292) (dependabot\[bot]) - chore: remove repetitive words [`dd37787`](https://togithub.com/helm/helm/commit/dd37787ffd25419cf5f76222e682fbba47d289eb) (deterclosed) - Modified how created annotation is populated based on package creation time [`0a69a0d`](https://togithub.com/helm/helm/commit/0a69a0dea6b1dcebaaf5d5b67c9a56eade463a71) (Andrew Block) - chore(deps): bump github.com/docker/docker [`aaaf112`](https://togithub.com/helm/helm/commit/aaaf1128d2dd2ce3e119472cae0bd9da3d62eb89) (dependabot\[bot]) - chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 [`7f53529`](https://togithub.com/helm/helm/commit/7f53529a701830dd86d78e932e83e4f7a928e9df) (dependabot\[bot]) - Enabling hide secrets on install and upgrade dry run [`25c4738`](https://togithub.com/helm/helm/commit/25c473834e0cbb905fc8a524709fd4d5362dab11) (Matt Farina) - chore(deps): bump github/codeql-action from 3.24.6 to 3.24.7 [`ff94e93`](https://togithub.com/helm/helm/commit/ff94e9319104a58321444d7d4656917147058936) (dependabot\[bot]) - Fixing all the linting errors [`d58d7b3`](https://togithub.com/helm/helm/commit/d58d7b376265338e059ff11c71267b5a6cf504c3) (Robert Sirchia) - Add a note about --dry-run displaying secrets [`a23dd9e`](https://togithub.com/helm/helm/commit/a23dd9e3b756c12cfdaa1b2c3a023c92530c0d0a) (Matt Farina) - chore(deps): bump golang.org/x/term from 0.15.0 to 0.18.0 [`275f2ab`](https://togithub.com/helm/helm/commit/275f2ab43b86072a601d036acc6d7eb2bb501b08) (dependabot\[bot]) - Updating .gitignore [`8b424ba`](https://togithub.com/helm/helm/commit/8b424baea1e40a352acf549395e6498e63ac0aa2) (Robert Sirchia) - chore(deps): bump github/codeql-action from 3.24.5 to 3.24.6 [`e22d881`](https://togithub.com/helm/helm/commit/e22d881495fcfee6b1c4afa1d12627f3e28b54e6) (dependabot\[bot]) - chore(deps): bump github/codeql-action from 3.24.3 to 3.24.5 [`4f200fa`](https://togithub.com/helm/helm/commit/4f200fa74f4b1bc8ad7261afb30ae7e2a8f0f546) (dependabot\[bot]) - Some fixes [`764557c`](https://togithub.com/helm/helm/commit/764557c470533fa57aad99f865c9ff75a64d4163) (Matt Farina) - chore(deps): bump github/codeql-action from 3.23.1 to 3.24.3 [`5bc97b9`](https://togithub.com/helm/helm/commit/5bc97b9c4eff3d2968d3c74c64b25052140558d6) (dependabot\[bot]) - chore(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 [`e6db0ec`](https://togithub.com/helm/helm/commit/e6db0ec933582a0de2f55f8f2f1ef693739eedc0) (dependabot\[bot]) - add error messages [`8d19bcb`](https://togithub.com/helm/helm/commit/8d19bcb78aaeb489eba4ed1d68894e59c8f55876) (George Jenkins) - Fix: Ignore alias validation error for index load [`68294fd`](https://togithub.com/helm/helm/commit/68294fdae0deba2464805067228790e025207ebd) (George Jenkins) - validation fix [`8e6a514`](https://togithub.com/helm/helm/commit/8e6a5149d2e2e3beffa51d53048b2fed90d8c529) (Matt Farina) - bug: add proxy support for oci getter [`94c1dea`](https://togithub.com/helm/helm/commit/94c1deae6d5a43491c5a4e8444ecd8273a8122a1) (Ricardo Maraschini) - chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0 [`cbab6d6`](https://togithub.com/helm/helm/commit/cbab6d6227969435df516dcdfcc6d29808aff094) (dependabot\[bot]) - chore(deps): bump github/codeql-action from 3.23.0 to 3.23.1 [`de332ae`](https://togithub.com/helm/helm/commit/de332ae396e1414cdc6923456cbe8a4b3af74c4e) (dependabot\[bot]) - chore(deps): bump github.com/containerd/containerd from 1.7.11 to 1.7.12 [`a2dd34b`](https://togithub.com/helm/helm/commit/a2dd34b3f2fe4eb8350ba168fb0943cf4ac990f9) (dependabot\[bot]) - Update architecture detection method [`57a1bb8`](https://togithub.com/helm/helm/commit/57a1bb80e5829f20125447b2734469d97858960c) (weidongkl) - chore(deps): bump github/codeql-action from 3.22.11 to 3.23.0 [`8cab7c1`](https://togithub.com/helm/helm/commit/8cab7c17f4163a5fc609f4a2f7fcdce796a4b870) (dependabot\[bot]) - chore(deps): bump github.com/DATA-DOG/go-sqlmock from 1.5.0 to 1.5.2 [`5f9533f`](https://togithub.com/helm/helm/commit/5f9533fef733c514f24a6f33f130efa6ea775c58) (dependabot\[bot]) - Improve release action [`4790bb9`](https://togithub.com/helm/helm/commit/4790bb9bcc224abee8a41f0bd8cac5880f605877) (George Jenkins) - chore(deps): bump actions/setup-go from 4.1.0 to 5.0.0 [`f980ad3`](https://togithub.com/helm/helm/commit/f980ad319c12774787c89ffaaef0f7fea0633bb3) (dependabot\[bot]) - Fix grammatical error [`c25736c`](https://togithub.com/helm/helm/commit/c25736c894ed1058c75b68fca0094c8fd953e131) (Matt Carr) - Updated for review comments [`d2cf8c6`](https://togithub.com/helm/helm/commit/d2cf8c66f1775783edbc150d1a509f58e769e75e) (MichaelMorris) - Add robustness to wait status checks [`fc74964`](https://togithub.com/helm/helm/commit/fc74964f8a039ce209966b70fa7ba0fc7ea36a9e) (MichaelMorris) - refactor: create a helper for checking if a release is uninstalled [`f908379`](https://togithub.com/helm/helm/commit/f908379f1f8e3d764b0a52dcba2d234490fc0ffc) (Alex Petrov) - fix: reinstall previously uninstalled chart with --keep-history [`9e198fa`](https://togithub.com/helm/helm/commit/9e198fa89d3c798dec1012bb4dff7107e22700d7) (Alex Petrov) </details> <details> <summary>jakejarvis/hugo-extended (hugo-extended)</summary> ### [`v0.126.1`](https://togithub.com/jakejarvis/hugo-extended/compare/v0.126.0...v0.126.1) [Compare Source](https://togithub.com/jakejarvis/hugo-extended/compare/v0.126.0...v0.126.1) ### [`v0.126.0`](https://togithub.com/jakejarvis/hugo-extended/compare/v0.125.7...v0.126.0) [Compare Source](https://togithub.com/jakejarvis/hugo-extended/compare/v0.125.7...v0.126.0) </details> <details> <summary>kubernetes/api (k8s.io/api)</summary> ### [`v0.30.1`](https://togithub.com/kubernetes/api/compare/v0.30.0...v0.30.1) [Compare Source](https://togithub.com/kubernetes/api/compare/v0.30.0...v0.30.1) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.30.1`](https://togithub.com/kubernetes/apimachinery/compare/v0.30.0...v0.30.1) [Compare Source](https://togithub.com/kubernetes/apimachinery/compare/v0.30.0...v0.30.1) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.30.1`](https://togithub.com/kubernetes/client-go/compare/v0.30.0...v0.30.1) [Compare Source](https://togithub.com/kubernetes/client-go/compare/v0.30.0...v0.30.1) </details> <details> <summary>kubernetes-sigs/kind (kubernetes-sigs/kind)</summary> ### [`v0.23.0`](https://togithub.com/kubernetes-sigs/kind/releases/tag/v0.23.0) [Compare Source](https://togithub.com/kubernetes-sigs/kind/compare/v0.22.0...v0.23.0) This release introduces initial limited support for `nerdctl` and kube-proxy nftables mode. <h1 id="breaking-changes">Breaking Changes</h1> - The default node image is now Kubernetes 1.30.0: `kindest/node:v1.30.0@​sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e` - `ipFamily` config field is now validated - While technically a breaking change, if the value you set here is now caught as invalid it was being silently ignored and creating an ipv4 cluster previously and you should correct your config - Go 1.17+ is required for `go install sigs.k8s.io/kind` / building the `kind` binary - Prebuilt binaries are available as an alternative to `go install` - For local development `make` will automatically setup the correct go version - Note that the go team only supports 1.21+ and major linux distros have 1.19+ - Future releases may increase this to a more current Go release - Future release may adopt `toolchain` in go.mod to make this seamless if you have go 1.21+ installed even without our makefile. We highly recommend installing go 1.21+ <h1 id="new-features">New Features</h1> - Initial support for nodes created with [nerdctl](https://togithub.com/containerd/nerdctl) - Initial support for `kubeProxyMode: nftables` (ahead of Kubernetes 1.31+, see https://kind.sigs.k8s.io/docs/user/configuration/#kube-proxy-mode) - Sweeping dependency updates, see commits for full details. kubernetes-sigs/kind@v0.22.0...v0.23.0 Images pre-built for this release: - v1.30.0: `kindest/node:v1.30.0@​sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e` - v1.29.4: `kindest/node:v1.29.4@​sha256:3abb816a5b1061fb15c6e9e60856ec40d56b7b52bcea5f5f1350bc6e2320b6f8` - v1.28.9: `kindest/node:v1.28.9@​sha256:dca54bc6a6079dd34699d53d7d4ffa2e853e46a20cd12d619a09207e35300bd0` - v1.27.13: `kindest/node:v1.27.13@​sha256:17439fa5b32290e3ead39ead1250dca1d822d94a10d26f1981756cd51b24b9d8` - v1.26.15: `kindest/node:v1.26.15@​sha256:84333e26cae1d70361bb7339efb568df1871419f2019c80f9a12b7e2d485fe19` - v1.25.16: `kindest/node:v1.25.16@​sha256:5da57dfc290ac3599e775e63b8b6c49c0c85d3fec771cd7d55b45fae14b38d3b` **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: - https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster - https://kind.sigs.k8s.io/docs/user/quick-start/#building-images 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 [https://github.com/kubernetes-sigs/kind/issues/2718](https://togithub.com/kubernetes-sigs/kind/issues/2718) <h1 id="fixes">Fixes</h1> - Correctly case `kubeProxyMode: "none"` <h1 id="contributors">Contributors</h1> **Thank you to everyone who contributed to this release! β€οΈ** Users whose commits are in this release (alphabetically by user name) - [@​aojea](https://togithub.com/aojea) - [@​AkihiroSuda](https://togithub.com/AkihiroSuda) - [@​BenTheElder](https://togithub.com/BenTheElder) - [@​dependabot](https://togithub.com/dependabot)\[bot] - [@​estesp](https://togithub.com/estesp) - [@​hp685](https://togithub.com/hp685) - [@​jizusun](https://togithub.com/jizusun) - [@​k8s-ci-robot](https://togithub.com/k8s-ci-robot) - [@​kevin85421](https://togithub.com/kevin85421) - [@​stmcginnis](https://togithub.com/stmcginnis) - [@​tnqn](https://togithub.com/tnqn) - [@​yankay](https://togithub.com/yankay) Thank you as well to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, and helping users in slack! </details> <details> <summary>kubernetes/kubernetes (kubernetes/kubernetes)</summary> ### [`v1.30.1`](https://togithub.com/kubernetes/kubernetes/releases/tag/v1.30.1): Kubernetes v1.30.1 [Compare Source](https://togithub.com/kubernetes/kubernetes/compare/v1.30.0...v1.30.1) See [kubernetes-announce@](https://groups.google.com/forum/#!forum/kubernetes-announce). Additional binary downloads are linked in the [CHANGELOG](https://togithub.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.30.md). See [the CHANGELOG](https://togithub.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.30.md) for more details. </details> <details> <summary>mikefarah/yq (mikefarah/yq)</summary> ### [`v4.44.1`](https://togithub.com/mikefarah/yq/releases/tag/v4.44.1): - min/max/pivot! [Compare Source](https://togithub.com/mikefarah/yq/compare/v4.43.1...v4.44.1) - Added min/max operators ([#​1992](https://togithub.com/mikefarah/yq/issues/1992)) Thanks [@​mbenson](https://togithub.com/mbenson) - Added pivot oeprator ([#​1993](https://togithub.com/mikefarah/yq/issues/1993)) Thanks [@​mbenson](https://togithub.com/mbenson) - Fix: shell-completion ([#​2006](https://togithub.com/mikefarah/yq/issues/2006)) Thanks [@​codekow](https://togithub.com/codekow) - Handle escaped backslashes ([#​1997](https://togithub.com/mikefarah/yq/issues/1997)) Thanks [@​mbenson](https://togithub.com/mbenson) - Fix npe when given filename ending with "." ([#​1994](https://togithub.com/mikefarah/yq/issues/1994)) - Fix: linux (w/ selinux) build ([#​2004](https://togithub.com/mikefarah/yq/issues/2004)) Thanks [@​codekow](https://togithub.com/codekow) - Bumped dependencies </details> <details> <summary>prometheus-operator/prometheus-operator (prometheus-operator/prometheus-operator)</summary> ### [`v0.74.0`](https://togithub.com/prometheus-operator/prometheus-operator/releases/tag/v0.74.0): 0.74.0 / 2024-05-17 [Compare Source](https://togithub.com/prometheus-operator/prometheus-operator/compare/v0.73.2...v0.74.0) - \[CHANGE/BUGFIX] Change the `proxyConnectHeader` field of the proxy configuration in the `ScrapeConfig` CRD from a map of strings to a map of string slices. [#​6541](https://togithub.com/prometheus-operator/prometheus-operator/issues/6541) - \[CHANGE] Automatically set the GOMAXPROCS variable according to the CPU limits of the process cgroup. [#​6576](https://togithub.com/prometheus-operator/prometheus-operator/issues/6576) - \[FEATURE] Add support for the Nomad Service Discovery to the `ScrapeConfig` CRD. [#​6485](https://togithub.com/prometheus-operator/prometheus-operator/issues/6485) - \[FEATURE] Add `relabelings` field for Alertmanager's endpoints in the `Prometheus` CRD. [#​6467](https://togithub.com/prometheus-operator/prometheus-operator/issues/6467) - \[FEATURE] Add `alertRelabelings` field for the Alertmanager's endpoints in the `Prometheus` CRD. [#​6450](https://togithub.com/prometheus-operator/prometheus-operator/issues/6450) - \[FEATURE] Add support for the Azure SDK authentication to the Azure Service Discovery in the `ScrapeConfig` CRD. [#​6595](https://togithub.com/prometheus-operator/prometheus-operator/issues/6595) - \[FEATURE] Add support for the Azure SDK authentication to the remote-write configuration in the `Prometheus` and `PrometheusAgent` CRDs. [#​6596](https://togithub.com/prometheus-operator/prometheus-operator/issues/6596) - \[ENHANCEMENT] Add Go runtime scheduler metrics to the operator. [#​6563](https://togithub.com/prometheus-operator/prometheus-operator/issues/6563) - \[ENHANCEMENT] Add `go_sync_mutex_wait_total_seconds_total` metric to the operator. [#​6581](https://togithub.com/prometheus-operator/prometheus-operator/issues/6581) - \[BUGFIX] Allow templated strings for the responder's `type` in OpsGenie configuration. [#​6378](https://togithub.com/prometheus-operator/prometheus-operator/issues/6378) - \[BUGFIX] Fix nil pointer panic in the `AlertmanagerConfig` Webex receiver. [#​6582](https://togithub.com/prometheus-operator/prometheus-operator/issues/6582) - \[BUGFIX] Apply TLS scrape class settings to all `PodMonitor`, `Probe` and `ScrapeConfig` objects. [#​6573](https://togithub.com/prometheus-operator/prometheus-operator/issues/6573) </details> --- ### Configuration π **Schedule**: Branch creation - "* * * * 6" (UTC), Automerge - At any time (no schedule defined). π¦ **Automerge**: Enabled. β» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. π» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/aenix-io/etcd-operator). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJvay10by10ZXN0Il19--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Hidden Marten <hiddenmarten@gmail.com>
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [kubernetes-sigs/kind](https://github.com/kubernetes-sigs/kind) | minor | `v0.23.0` -> `v0.24.0` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>kubernetes-sigs/kind (kubernetes-sigs/kind)</summary> ### [`v0.24.0`](https://github.com/kubernetes-sigs/kind/releases/tag/v0.24.0) [Compare Source](kubernetes-sigs/kind@v0.23.0...v0.24.0) Highlights from this release include network policy support using [sigs.k8s.io/kube-network-policies](https://github.com/kubernetes-sigs/kube-network-policies) (thanks [@​aojea](https://github.com/aojea)!) and support for building node images from pre-compiled Kubernetes releases (thanks [@​dims](https://github.com/dims)!). For building images, see the docs at https://kind.sigs.k8s.io/docs/user/quick-start/#building-images <h1 id="breaking-changes">Breaking Changes</h1> - The default node image is now Kubernetes v1.31.0: `kindest/node:v1.31.0@​sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865` <h1 id="new-features">New Features</h1> - **Out-of-the-box support for network policy via [sigs.k8s.io/kube-network-policies](https://github.com/kubernetes-sigs/kube-network-policies)** - Advanced users can still disable kindnetd and install your own CNI with https://kind.sigs.k8s.io/docs/user/configuration/#disable-default-cni, however note that this is a "power user" feature and KIND does not offer support for any third-party CNI - **Support for building node images from existing Kubernetes releases** - **NOTE**: For Kubernetes releases before v1.31.0, this will result in larger images because kind opted in to compiling out remaining in-tree cloud providers with a build tag when publishing images. For v1.31.0+ there is no difference. - See: https://kind.sigs.k8s.io/docs/user/quick-start/#building-images - Support for loading multiple image archives in `kind load image-archive` - **NOTE**: it is still more efficient to do a single archive in most cases - Migrated to skipPhase in Init/JoinConfiguration instead of the kubeadm flags, making it possible for users to cutomize the phases (at your own risk!) with config patches - powershell completion - Updated dependencies, including, but not limited to: - containerd 1.7.18 - runc 1.1.13 - go 1.22.6 - CNI plugins to 1.5.1 - pause 3.10 - Docs and clarification for third party install options including scoop and winget Images pre-built for this release: - v1.31.0: `kindest/node:v1.31.0@​sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865` - v1.30.4: `kindest/node:v1.30.4@​sha256:976ea815844d5fa93be213437e3ff5754cd599b040946b5cca43ca45c2047114` - v1.30.3: `kindest/node:v1.30.3@​sha256:bf91e1ef2f7d92bb7734b2b896b3dddea98f0496b34d96e37dd5d7df331b7e56` - v1.29.8: `kindest/node:v1.29.8@​sha256:d46b7aa29567e93b27f7531d258c372e829d7224b25e3fc6ffdefed12476d3aa` - v1.29.7: `kindest/node:v1.29.7@​sha256:f70ab5d833fca132a100c1f95490be25d76188b053f49a3c0047ff8812360baf` - v1.28.13: `kindest/node:v1.28.13@​sha256:45d319897776e11167e4698f6b14938eb4d52eb381d9e3d7a9086c16c69a8110` - v1.28.12: `kindest/node:v1.28.12@​sha256:fa0e48b1e83bb8688a5724aa7eebffbd6337abd7909ad089a2700bf08c30c6ea` - v1.27.16: `kindest/node:v1.27.17@​sha256:3fd82731af34efe19cd54ea5c25e882985bafa2c9baefe14f8deab1737d9fabe` - v1.26.15: `kindest/node:v1.26.15@​sha256:1cc15d7b1edd2126ef051e359bf864f37bbcf1568e61be4d2ed1df7a3e87b354` - v1.25.16: `kindest/node:v1.25.16@​sha256:6110314339b3b44d10da7d27881849a87e092124afab5956f2e10ecdb463b025` **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: - https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster - https://kind.sigs.k8s.io/docs/user/quick-start/#building-images 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 kubernetes-sigs/kind#2718 <h1 id="fixes">Fixes</h1> - Fix kubeadm v1beta3 config template for kubeProxyMode: none - Stop disabling LocalStorageIsolation for rootless clusters (which no longer appears to be necessary to avoid crashes) <h1 id="contributors">Contributors</h1> **Thank you to everyone who contributed to this release! β€οΈ** Users whose commits are in this release (alphabetically by user name) - [@​abhay-krishna](https://github.com/abhay-krishna) - [@​aojea](https://github.com/aojea) - [@​BenTheElder](https://github.com/BenTheElder) - [@​bzsuni](https://github.com/bzsuni) - [@​cpanato](https://github.com/cpanato) - [@​dependabot](https://github.com/dependabot)\[bot] - [@​dominicqi](https://github.com/dominicqi) - [@​douglaswth](https://github.com/douglaswth) - [@​giuseppe](https://github.com/giuseppe) - [@​harshanarayana](https://github.com/harshanarayana) - [@​joycecodes](https://github.com/joycecodes) - [@​k8s-ci-robot](https://github.com/k8s-ci-robot) - [@​kundan2707](https://github.com/kundan2707) - [@​netguino](https://github.com/netguino) - [@​nojnhuh](https://github.com/nojnhuh) - [@​pohly](https://github.com/pohly) - [@​ste93cry](https://github.com/ste93cry) - [@​stmcginnis](https://github.com/stmcginnis) Thank you as well to everyone who contributed in other ways like filing issues, giving feedback, testing fixes, and helping users in slack! </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 MR becomes conflicted, or you tick the rebase/retry checkbox. π **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiXX0=-->
When running
kind create cluster
it fails with the following log message:Environment:
docker info
):macOS Monterey (v12.0) on Apple M1 Pro.
The text was updated successfully, but these errors were encountered: