758c5dcd7e
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0-beta.0` -> `v1.11.0-beta.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-beta.1`](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.1) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-beta.0...v1.11.0-beta.1) #### [Talos 1.11.0-beta.1](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.1) (2025-08-04) Welcome to the v1.11.0-beta.1 release of Talos!\ *This is a pre-release of Talos* Please try out the release binaries and report any issues at https://github.com/siderolabs/talos/issues. ##### Azure Talos on Azure now defaults to MTU of 1400 bytes for the `eth0` interface to avoid packet fragmentation issues. The default MTU can be overriden with machine configuration. ##### Boot Talos increases the boot partition size to 2 GiB to accommodate larger images (with many system extensions included). ##### Kernel Command Line Talos now exposes the kernel command line as a KernelCmdline resource (`talosctl get cmdline`). ##### Disk Encryption Disk encryption for system volumes is now managed by the `VolumeConfig` machine configuration document. Legacy configuration in `valpha1` machine configuration is still supported. New per-key option `lockToSTATE` is added to the `VolumeConfig` document, which allows to lock the volume encryption key to the secret salt in the `STATE` volume. So, if the `STATE` volume is wiped or replaced, the volume encryption key will not be usable anymore. ##### Disk Wipe Talos now supports `talosctl disk wipe` command in maintenance mode (`talosctl disk wipe <disk> --insecure`). ##### Early Inline Configuration Talos now supports passing early inline configuration via the `talos.config.early` kernel parameter. This allows to pass the configuration before the platform config source is probed, which is useful for early boot configuration. The value of this parameter has same format as the `talos.config.inline` parameter, i.e. it should be base64 encoded and zstd-compressed. ##### ETCD downgrade API Added ETCD downgrade API mimicking the ETCD API and etcdctl interfaces. This API allows to downgrade ETCD cluster (storage format) to a previous version. ##### IMA support removed Talos now drops the IMA (Integrity Measurement Architecture) support. This feature was not used in Talos for any meaningful security purpose and has historically caused performance issues. See [#​11133](https://redirect.github.com/siderolabs/talos/issues/11133) for more details. ##### Kubernetes Version Validation Talos now validates Kubernetes version in the image submitted in the machine configuration. Previously this check was performed only on upgrade, but now it is consistently applied to upgrade, initial provisioning, and machine configuration updates. This implies that all image references should contain the tag, even if the image is pinned by digest. ##### Qemu provisioner on MacOS On MacOS `talosctl cluster create` command now supports the Qemu provisioner in addition to the Docker provisioner. ##### Kernel Modules Talosctl now returns the loaded modules, not the modules configured to be loaded (`talosctl get modules`). ##### SBOM Talos now publishes [Software Bill of Materials (SBOM)](https://www.talos.dev/v1.11/advanced/sbom/) in the SPDX format. ##### Swap Suport Talos now supports swap on block devices. This feature can be enable by using [SwapVolumeConfig](https://www.talos.dev/v1.11/reference/configuration/block/swapvolumeconfig/) document in the machine configuration. ##### Component Updates Linux: 6.12.40 Kubernetes: 1.34.0-beta.0 runc: 1.3.0 etcd: 3.6.4 containerd: 2.1.4 Flannel CNI plugin: 1.7.1-flannel1 Flannel: 0.27.2 CoreDNS: 1.12.2 xfsprogs: 6.15.0 systemd-udevd and systemd-boot: 257.7 lvm2: 2.03.33 cryptsetup: 2.8.0 Talos is built with Go 1.24.5. ##### VMware Talos VMWare platform now supports `arm64` architecture in addition to `amd64`. ##### Volumes Talos now supports [raw user volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/raw/), allowing to allocate unformatted disk space as partition. In addition to that, support for [existing volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/existing/) has been added, allowing to mount existing partitions without formatting them. ##### Zswap Support Talos now supports zswap, a compressed cache for swap pages. This feature can be enabled by using [ZswapConfig](https://www.talos.dev/v1.11/reference/configuration/block/zswapconfig/) document in the machine configuration. ##### Contributors - Andrey Smirnov - Noel Georgi - Dmitrii Sharshakov - Orzelius - Mateusz Urbanek - Orzelius - Justin Garrison - Spencer Smith - Steve Francis - Till Hoffmann - Utku Ozdemir - Andrew Longwill - Artem Chernyshev - Michael Robbins - Alexandre GV - Marat Bakeev - Olav Thoresen - Thibault VINCENT - Alvaro "Chamo" Linares Cabre - Amarachi Iheanacho - Brian Brookman - Bryan Mora - Clément Nussbaumer - Damien - David R - Dennis Marttinen - Dmitriy Matrenichev - Joakim Nohlgård - Jorik Jonker - Justin Seely - Luke Cousins - Marco Mihai Condrache - Markus Reiter - Martyn Ranyard - Michael Moerz - Mike - Oguz Kilcan - Tan Siewert - Tom Keur - jvanthienen-gluo - killcity - yashutanu ##### Changes <details><summary>247 commits</summary> <p> - [@​`5a15ce8`](https://redirect.github.com/siderolabs/talos/commit/5a15ce88b) release(v1.11.0-beta.1): prepare release - [@​`614ca2e`](https://redirect.github.com/siderolabs/talos/commit/614ca2e22) fix: one more attempt to fix volume mount race on restart - [@​`4b86dfe`](https://redirect.github.com/siderolabs/talos/commit/4b86dfe6f) feat: implement encryption locking to STATE - [@​`8ae76c3`](https://redirect.github.com/siderolabs/talos/commit/8ae76c320) feat: implement `talos.config.early` command line arg - [@​`19f8c60`](https://redirect.github.com/siderolabs/talos/commit/19f8c605e) docs: remove talos API flags from mgmt commands - [@​`fa1d6fe`](https://redirect.github.com/siderolabs/talos/commit/fa1d6fef8) feat: bootedentry resource - [@​`7dee810`](https://redirect.github.com/siderolabs/talos/commit/7dee810d4) fix: live reload of TLS client config for discovery client - [@​`a5dc224`](https://redirect.github.com/siderolabs/talos/commit/a5dc22466) fix: enforce minimum size on user volumes if not set explicitly - [@​`7836e92`](https://redirect.github.com/siderolabs/talos/commit/7836e924d) feat: update containerd to 2.1.4 - [@​`5012550`](https://redirect.github.com/siderolabs/talos/commit/5012550ec) feat: add [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [@​`10ddc4c`](https://redirect.github.com/siderolabs/talos/commit/10ddc4cdd) fix: grype scan - [@​`d108e0a`](https://redirect.github.com/siderolabs/talos/commit/d108e0a08) fix(ci): use a random suffix for ami names - [@​`5042255`](https://redirect.github.com/siderolabs/talos/commit/504225546) fix: issues with reading GPT - [@​`bdaf08d`](https://redirect.github.com/siderolabs/talos/commit/bdaf08dd4) feat: update PCI DB module to v0.3.2 - [@​`667dceb`](https://redirect.github.com/siderolabs/talos/commit/667dcebec) test: wait for service account test job longer - [@​`ae176a4`](https://redirect.github.com/siderolabs/talos/commit/ae176a4b7) feat: update etcd to 3.6.4 - [@​`201b680`](https://redirect.github.com/siderolabs/talos/commit/201b6801f) fix: issue with volume remount on service restart - [@​`2a91140`](https://redirect.github.com/siderolabs/talos/commit/2a911402b) chore: tag aws snapshots created via ci with the image name - [@​`d8bd84b`](https://redirect.github.com/siderolabs/talos/commit/d8bd84b56) docs: add SBOM documentation - [@​`7eec619`](https://redirect.github.com/siderolabs/talos/commit/7eec61993) feat: unify disk encryption configuration - [@​`4ff2bf9`](https://redirect.github.com/siderolabs/talos/commit/4ff2bf9e0) feat: update etcd to v3.5.22 - [@​`31a67d3`](https://redirect.github.com/siderolabs/talos/commit/31a67d379) fix: do not download artifacts for cron Grype scan - [@​`c6b6e0b`](https://redirect.github.com/siderolabs/talos/commit/c6b6e0bb3) docs: rewrite the getting started and prod docs for v1.10 and v1.11 - [@​`ca1c656`](https://redirect.github.com/siderolabs/talos/commit/ca1c656e6) chore(ci): add more nvidia test matrix - [@​`7a2e0f0`](https://redirect.github.com/siderolabs/talos/commit/7a2e0f068) feat: sync pkgs, update Linux to 6.12.40 - [@​`85e7989`](https://redirect.github.com/siderolabs/talos/commit/85e7989cf) release(v1.11.0-beta.0): prepare release - [@​`3039162`](https://redirect.github.com/siderolabs/talos/commit/3039162dc) feat: update Flannel to v0.27.2 - [@​`7e6052e`](https://redirect.github.com/siderolabs/talos/commit/7e6052e63) feat: increase boot partition to 2 GiB - [@​`cb7ca17`](https://redirect.github.com/siderolabs/talos/commit/cb7ca17bb) feat: implement ExistingVolumeConfig - [@​`a857c69`](https://redirect.github.com/siderolabs/talos/commit/a857c696f) chore(machined): remove deprecated Endpoints - [@​`a60101c`](https://redirect.github.com/siderolabs/talos/commit/a60101c55) fix: fill serial using helpers - [@​`5420e99`](https://redirect.github.com/siderolabs/talos/commit/5420e9979) refactor: output default selection for profiles - [@​`023a24c`](https://redirect.github.com/siderolabs/talos/commit/023a24cd4) test: use Grype to scan SBOM for vulnerabilities - [@​`96896fd`](https://redirect.github.com/siderolabs/talos/commit/96896fddb) chore: build less images by default - [@​`75b5dec`](https://redirect.github.com/siderolabs/talos/commit/75b5dec06) fix: sd-boot kexec with disk images - [@​`10546d6`](https://redirect.github.com/siderolabs/talos/commit/10546d6f8) feat: update Kuberentes 1.34.0-beta.0 - [@​`3f35b83`](https://redirect.github.com/siderolabs/talos/commit/3f35b83ae) fix: ignore absent extensions SBOM directory - [@​`9920da3`](https://redirect.github.com/siderolabs/talos/commit/9920da3e1) feat: add etcd downgrade API - [@​`c386822`](https://redirect.github.com/siderolabs/talos/commit/c38682279) feat: bump pkgs and tools, read extensions' SBOMs, rekres - [@​`9c0d270`](https://redirect.github.com/siderolabs/talos/commit/9c0d2706c) docs: add release notes about v3.6.x bug - [@​`d219942`](https://redirect.github.com/siderolabs/talos/commit/d21994210) test: refactor various merge controller tests - [@​`da5a444`](https://redirect.github.com/siderolabs/talos/commit/da5a4449f) feat: implement raw volume support - [@​`41adda1`](https://redirect.github.com/siderolabs/talos/commit/41adda1cf) docs: add secure boot setup mode note for Xen - [@​`993b4ad`](https://redirect.github.com/siderolabs/talos/commit/993b4ade8) docs: fix typo in hugo config: pre-releaase - [@​`130b7fd`](https://redirect.github.com/siderolabs/talos/commit/130b7fd6e) test: fix flaky TestDNS - [@​`35b45ae`](https://redirect.github.com/siderolabs/talos/commit/35b45ae6e) feat(talosctl): support tpm operation on mac - [@​`24628db`](https://redirect.github.com/siderolabs/talos/commit/24628db20) feat: update Kubernetes to v1.34.0-alpha.3 - [@​`ff68286`](https://redirect.github.com/siderolabs/talos/commit/ff68286d1) feat: include hwrandom modules - [@​`a5b07c9`](https://redirect.github.com/siderolabs/talos/commit/a5b07c9a5) test: split tests and lint from the default pipeline - [@​`a957ef4`](https://redirect.github.com/siderolabs/talos/commit/a957ef416) feat: add SBOMs to the imager container - [@​`506212a`](https://redirect.github.com/siderolabs/talos/commit/506212a71) feat: include AMD encrypted mem modules into base - [@​`a966321`](https://redirect.github.com/siderolabs/talos/commit/a966321cc) fix: add more bootloader probe logs on upgrade - [@​`b38fa56`](https://redirect.github.com/siderolabs/talos/commit/b38fa568a) feat: add validation for secrets bundle - [@​`2d89bcc`](https://redirect.github.com/siderolabs/talos/commit/2d89bcc71) feat: bump Linux, Go and other packages - [@​`0b8c180`](https://redirect.github.com/siderolabs/talos/commit/0b8c180b8) fix: rename instances to referenceCount - [@​`378fe4f`](https://redirect.github.com/siderolabs/talos/commit/378fe4f2f) feat: support writing EFI boot order - [@​`9f07926`](https://redirect.github.com/siderolabs/talos/commit/9f0792632) fix: improve volume provisioning errors - [@​`b8fcf3c`](https://redirect.github.com/siderolabs/talos/commit/b8fcf3c71) fix: change module instance evaluation - [@​`d680e56`](https://redirect.github.com/siderolabs/talos/commit/d680e560d) docs: create FUNDING.yml - [@​`6415055`](https://redirect.github.com/siderolabs/talos/commit/641505584) feat: support project quota support for user volumes - [@​`52656cc`](https://redirect.github.com/siderolabs/talos/commit/52656cc3c) feat: allow taloscl disk wipe in maintenance mode - [@​`8505794`](https://redirect.github.com/siderolabs/talos/commit/850579448) feat: export SBOM as resources - [@​`4f3a2ff`](https://redirect.github.com/siderolabs/talos/commit/4f3a2ffab) test: update unit-test runner - [@​`d531b68`](https://redirect.github.com/siderolabs/talos/commit/d531b682c) fix: provide FIPS 140-3 compliance - [@​`3e3129d`](https://redirect.github.com/siderolabs/talos/commit/3e3129d36) feat: include packages into SBOM - [@​`54bd50b`](https://redirect.github.com/siderolabs/talos/commit/54bd50be3) fix: talos endpoint might not be created in Kubernetes - [@​`8789a02`](https://redirect.github.com/siderolabs/talos/commit/8789a02c3) feat: present loaded kernel modules - [@​`33ecbae`](https://redirect.github.com/siderolabs/talos/commit/33ecbaec6) test: update apply config tests - [@​`7d2fd39`](https://redirect.github.com/siderolabs/talos/commit/7d2fd390c) chore: bump Talos version in the Image Factory CI pipeline - [@​`de77f21`](https://redirect.github.com/siderolabs/talos/commit/de77f2142) docs: add example for fluentbit config - [@​`1f1f781`](https://redirect.github.com/siderolabs/talos/commit/1f1f78106) fix: add limited retries for not found images - [@​`3d6a2c1`](https://redirect.github.com/siderolabs/talos/commit/3d6a2c14e) chore: generate and upload signatures on release - [@​`3801413`](https://redirect.github.com/siderolabs/talos/commit/380141330) feat: expose kernel cmdline as a resource - [@​`4c6b3b1`](https://redirect.github.com/siderolabs/talos/commit/4c6b3b14d) docs: document disabling SELinux - [@​`3a6e5a7`](https://redirect.github.com/siderolabs/talos/commit/3a6e5a71e) feat: add talosctl mulitarch bundle image - [@​`be671ee`](https://redirect.github.com/siderolabs/talos/commit/be671ee6d) chore: add sbom step to the release pipeline - [@​`7fd0e8f`](https://redirect.github.com/siderolabs/talos/commit/7fd0e8fc7) release(v1.11.0-alpha.3): prepare release - [@​`777335f`](https://redirect.github.com/siderolabs/talos/commit/777335f23) chore: improve cloud image uploader resilience - [@​`14e5eee`](https://redirect.github.com/siderolabs/talos/commit/14e5eee7d) release(v1.11.0-alpha.2): prepare release - [@​`1e5a008`](https://redirect.github.com/siderolabs/talos/commit/1e5a008f5) fix: hold user volume mount point across kubelet restarts - [@​`cdad505`](https://redirect.github.com/siderolabs/talos/commit/cdad50590) docs: user volumes and kubernetes upgrade updates - [@​`c880835`](https://redirect.github.com/siderolabs/talos/commit/c880835c8) feat: implement zswap support - [@​`7f0300f`](https://redirect.github.com/siderolabs/talos/commit/7f0300f10) feat: update dependencies, Kubernetes 1.34.0-alpha.2 - [@​`61afbe3`](https://redirect.github.com/siderolabs/talos/commit/61afbe3d2) docs: add vc4 documentation - [@​`b9dbdc8`](https://redirect.github.com/siderolabs/talos/commit/b9dbdc8e7) fix: etcd recover with multiple advertised addresses - [@​`19d94c3`](https://redirect.github.com/siderolabs/talos/commit/19d94c357) feat: update Linux to 6.12.35, containerd to 2.1.3 - [@​`44a1fc3`](https://redirect.github.com/siderolabs/talos/commit/44a1fc3b7) fix: treat context canceled as expected error on image pull - [@​`4da2dd5`](https://redirect.github.com/siderolabs/talos/commit/4da2dd537) feat: enforce Kubernetes version compatibility - [@​`6c7f820`](https://redirect.github.com/siderolabs/talos/commit/6c7f8201a) fix: set default MTU on Azure to 1400 - [@​`091cd69`](https://redirect.github.com/siderolabs/talos/commit/091cd6989) docs: small yaml typo fix - [@​`66ecbd4`](https://redirect.github.com/siderolabs/talos/commit/66ecbd48f) docs: update support matrix with omni version - [@​`c948d76`](https://redirect.github.com/siderolabs/talos/commit/c948d7617) docs: minor fixes for creating kernel modules - [@​`cc14c4a`](https://redirect.github.com/siderolabs/talos/commit/cc14c4a25) docs: add docs for creating kernel modules - [@​`93bcd3b`](https://redirect.github.com/siderolabs/talos/commit/93bcd3b56) docs: create SBOM for Go dependencies - [@​`38c4ce4`](https://redirect.github.com/siderolabs/talos/commit/38c4ce415) feat: add user-space InfiniBand modules - [@​`251dc93`](https://redirect.github.com/siderolabs/talos/commit/251dc934f) feat: arm64 support for platform vmware - [@​`09b3ad5`](https://redirect.github.com/siderolabs/talos/commit/09b3ad577) feat: update containerd to 2.1.2 - [@​`0767dd0`](https://redirect.github.com/siderolabs/talos/commit/0767dd07b) chore: enable --with-siderolink-agent on Darwin - [@​`9642198`](https://redirect.github.com/siderolabs/talos/commit/9642198d7) fix: userspace wireguard library overrides - [@​`208f076`](https://redirect.github.com/siderolabs/talos/commit/208f0763e) chore: fix talosctl build on non-Linux hosts - [@​`87421af`](https://redirect.github.com/siderolabs/talos/commit/87421af87) docs: expand documentation description - [@​`d32ccfa`](https://redirect.github.com/siderolabs/talos/commit/d32ccfa59) feat: implement swap support - [@​`8f5cf81`](https://redirect.github.com/siderolabs/talos/commit/8f5cf81db) docs: update kvm documentation - [@​`8e84c8b`](https://redirect.github.com/siderolabs/talos/commit/8e84c8b0f) fix: nil pointer deref in quirk - [@​`6e74a36`](https://redirect.github.com/siderolabs/talos/commit/6e74a3676) docs: aad ery basic details on how to run on scaleway - [@​`260d1bc`](https://redirect.github.com/siderolabs/talos/commit/260d1bc9a) fix: correctl close encrypted volumes - [@​`034ef42`](https://redirect.github.com/siderolabs/talos/commit/034ef42af) fix: update siderolink library for wgtunnel panic fix - [@​`3035744`](https://redirect.github.com/siderolabs/talos/commit/3035744a8) fix: correctly predict interface name on darwin - [@​`cfcfad3`](https://redirect.github.com/siderolabs/talos/commit/cfcfad3c4) chore: move `checkUnknownKeys` function to `github.com/siderolabs/gen` - [@​`5ecc53c`](https://redirect.github.com/siderolabs/talos/commit/5ecc53c69) docs: add macos section to developing-talos.md - [@​`b5b3530`](https://redirect.github.com/siderolabs/talos/commit/b5b35307f) chore: update Go to 1.24.4 - [@​`fde772d`](https://redirect.github.com/siderolabs/talos/commit/fde772d8d) feat: update Flannel to 0.27.0 - [@​`81ca279`](https://redirect.github.com/siderolabs/talos/commit/81ca27949) release(v1.11.0-alpha.1): prepare release - [@​`58a868e`](https://redirect.github.com/siderolabs/talos/commit/58a868e68) chore: fix renovate config, add release-gate label - [@​`a59aaee`](https://redirect.github.com/siderolabs/talos/commit/a59aaee84) feat: bump dependencies, Linux 6.12.31 - [@​`e954ee3`](https://redirect.github.com/siderolabs/talos/commit/e954ee30a) docs: typo correction: LongHorn -> Longhorn - [@​`aab0533`](https://redirect.github.com/siderolabs/talos/commit/aab053394) fix: mashal resource byte slices as strings in YAML - [@​`c7d4191`](https://redirect.github.com/siderolabs/talos/commit/c7d4191e7) fix: rework the way CRI config generation is waited for - [@​`0114183`](https://redirect.github.com/siderolabs/talos/commit/0114183de) docs: update `lastRelease` to 1.10.3 - [@​`938b076`](https://redirect.github.com/siderolabs/talos/commit/938b0760a) docs: update issue template - [@​`2a7b735`](https://redirect.github.com/siderolabs/talos/commit/2a7b735b2) feat: drop IMA support - [@​`2d5a805`](https://redirect.github.com/siderolabs/talos/commit/2d5a805b0) fix: typo in DiscoverdVolume spec - [@​`60c12ba`](https://redirect.github.com/siderolabs/talos/commit/60c12bad9) feat: support nocloud include url userdata directive - [@​`0fd622c`](https://redirect.github.com/siderolabs/talos/commit/0fd622c82) fix(talosctl): correct --help output for dashboard command - [@​`a90c936`](https://redirect.github.com/siderolabs/talos/commit/a90c936a1) feat: support qemu provisioner on darwin - [@​`5322ca0`](https://redirect.github.com/siderolabs/talos/commit/5322ca0d3) docs: update overlay docs - [@​`a60b632`](https://redirect.github.com/siderolabs/talos/commit/a60b6322d) fix(ci): drop nebula from extensions test - [@​`dbbb59a`](https://redirect.github.com/siderolabs/talos/commit/dbbb59a67) docs: add note for default `dataDirHostPath` for Rook - [@​`e260543`](https://redirect.github.com/siderolabs/talos/commit/e26054378) docs: macos qemu provider - [@​`5d02240`](https://redirect.github.com/siderolabs/talos/commit/5d0224093) docs: use the cilium-cli image repo in the job installation manifest - [@​`ff80e4c`](https://redirect.github.com/siderolabs/talos/commit/ff80e4cca) docs: fix CIDR name - [@​`a5fd15e`](https://redirect.github.com/siderolabs/talos/commit/a5fd15e8b) fix(ci): reproducibility test - [@​`8f8963e`](https://redirect.github.com/siderolabs/talos/commit/8f8963e50) docs: update Nexxen brand - [@​`c6b8687`](https://redirect.github.com/siderolabs/talos/commit/c6b86872d) fix(ci): iso reproducibility file permissions - [@​`995a1de`](https://redirect.github.com/siderolabs/talos/commit/995a1dec4) chore: add a check for unsupported darwin flags - [@​`9db5d0c`](https://redirect.github.com/siderolabs/talos/commit/9db5d0c97) fix: nocloud metadata for hostname - [@​`3cf3256`](https://redirect.github.com/siderolabs/talos/commit/3cf325654) feat: modularize more arm64 kernel - [@​`3524745`](https://redirect.github.com/siderolabs/talos/commit/3524745cc) fix: allow any PKI in Talos API - [@​`f438cdb`](https://redirect.github.com/siderolabs/talos/commit/f438cdb09) chore: use custom dhcpd server on macos qemu - [@​`11c17fb`](https://redirect.github.com/siderolabs/talos/commit/11c17fb9a) fix: metal-iso reproducibility - [@​`7fcb89e`](https://redirect.github.com/siderolabs/talos/commit/7fcb89ee3) chore: add darwin vmnet qemu support - [@​`fc12373`](https://redirect.github.com/siderolabs/talos/commit/fc1237343) chore: clean up `/usr/bin` - [@​`b551f32`](https://redirect.github.com/siderolabs/talos/commit/b551f32ce) feat: update containerd to v2.1.1 - [@​`67f4154`](https://redirect.github.com/siderolabs/talos/commit/67f4154f9) docs: update disk-management.md - [@​`0cb137a`](https://redirect.github.com/siderolabs/talos/commit/0cb137ad7) fix: make disk size check work on old Talos - [@​`7c057ed`](https://redirect.github.com/siderolabs/talos/commit/7c057edd5) fix: use vmdk-convert istead of qemu-img to create VMDK for OVA files - [@​`cd618da`](https://redirect.github.com/siderolabs/talos/commit/cd618dad0) chore: update the go-blockdevice package - [@​`0b99631`](https://redirect.github.com/siderolabs/talos/commit/0b99631a0) fix: bump apid memory limit - [@​`5451f35`](https://redirect.github.com/siderolabs/talos/commit/5451f35b1) docs: update virtualbox - [@​`bd4d202`](https://redirect.github.com/siderolabs/talos/commit/bd4d202a5) refactor: bring owned.State from COSI to simplify tests - [@​`0b96df5`](https://redirect.github.com/siderolabs/talos/commit/0b96df574) feat: update containerd to 2.1.0 - [@​`e1a9391`](https://redirect.github.com/siderolabs/talos/commit/e1a939144) docs: fix formatting in disk encryption - [@​`7a817df`](https://redirect.github.com/siderolabs/talos/commit/7a817df1c) docs: fix typo - [@​`f35b213`](https://redirect.github.com/siderolabs/talos/commit/f35b213b2) test: fix DHCP unicast failures in QEMU environment - [@​`7064bbf`](https://redirect.github.com/siderolabs/talos/commit/7064bbf05) docs: fix vmware factory URL - [@​`78c33bc`](https://redirect.github.com/siderolabs/talos/commit/78c33bcdb) feat: update default Kubernetes to v1.33.1 - [@​`da67952`](https://redirect.github.com/siderolabs/talos/commit/da6795266) fix: disable automatic MAC assignment to bridge interfaces - [@​`ca34adf`](https://redirect.github.com/siderolabs/talos/commit/ca34adf58) chore(ci): drop azure keys - [@​`ea5de19`](https://redirect.github.com/siderolabs/talos/commit/ea5de19fa) fix: selinux detection - [@​`52c76ea`](https://redirect.github.com/siderolabs/talos/commit/52c76ea3a) fix: consistently apply dynamic grpc proxy dialer - [@​`aa9569e`](https://redirect.github.com/siderolabs/talos/commit/aa9569e5d) chore: refactor cluster create cmd flags - [@​`1161faa`](https://redirect.github.com/siderolabs/talos/commit/1161faa05) docs: fix typo in Cilium docs - [@​`164745e`](https://redirect.github.com/siderolabs/talos/commit/164745e44) docs: remove `preserve` flag mention in upgrade notes - [@​`9a2ecba`](https://redirect.github.com/siderolabs/talos/commit/9a2ecbaaf) fix: makefile operating system param - [@​`118aa69`](https://redirect.github.com/siderolabs/talos/commit/118aa69d6) chore: update cloud-image-uploader dependencies - [@​`acdd721`](https://redirect.github.com/siderolabs/talos/commit/acdd721cf) chore: dump qemu pachine ipam records on darwin - [@​`bb90945`](https://redirect.github.com/siderolabs/talos/commit/bb9094534) chore: rotate aws iam credentials - [@​`0bfa4ae`](https://redirect.github.com/siderolabs/talos/commit/0bfa4ae1b) chore: update deps for cloud-image-uploader - [@​`956d7c7`](https://redirect.github.com/siderolabs/talos/commit/956d7c71b) chore: update sops keys - [@​`e2f819d`](https://redirect.github.com/siderolabs/talos/commit/e2f819d88) test: fix the process runner log collection - [@​`fdac4cf`](https://redirect.github.com/siderolabs/talos/commit/fdac4cfb9) fix: upgrade go-kubernetes for DRA flag bug - [@​`09d88e1`](https://redirect.github.com/siderolabs/talos/commit/09d88e1e8) test: fix some flaky tests - [@​`ec1f41a`](https://redirect.github.com/siderolabs/talos/commit/ec1f41a94) chore: make qemu config server bind work on darwin - [@​`980f4d2`](https://redirect.github.com/siderolabs/talos/commit/980f4d2b9) feat: bump dependencies - [@​`9525933`](https://redirect.github.com/siderolabs/talos/commit/95259337e) fix: k8s 1.32->1.33 upgrade check - [@​`c3c326b`](https://redirect.github.com/siderolabs/talos/commit/c3c326b40) fix: improve volume mounter automaton - [@​`918b94d`](https://redirect.github.com/siderolabs/talos/commit/918b94d9a) refactor: rewrite disk size check - [@​`ab7e693`](https://redirect.github.com/siderolabs/talos/commit/ab7e693d7) chore: make qemu lb address bind work on darwin - [@​`97ceab0`](https://redirect.github.com/siderolabs/talos/commit/97ceab001) fix: multiple logic issues in platform network config controller - [@​`46349a9`](https://redirect.github.com/siderolabs/talos/commit/46349a9df) docs: remove azure image gallery instructions - [@​`0cfcdd3`](https://redirect.github.com/siderolabs/talos/commit/0cfcdd3de) docs: fix search on base talos.dev - [@​`78646b4`](https://redirect.github.com/siderolabs/talos/commit/78646b4e0) docs: add registryd debug command - [@​`c6824c2`](https://redirect.github.com/siderolabs/talos/commit/c6824c211) fix: deny apply config requests without v1alpha1 in "normal" mode - [@​`7df0408`](https://redirect.github.com/siderolabs/talos/commit/7df0408e4) fix: interactive installer config gen - [@​`881c5d6`](https://redirect.github.com/siderolabs/talos/commit/881c5d62b) fix: suppress duplicate platform config updates - [@​`66d7788`](https://redirect.github.com/siderolabs/talos/commit/66d77888e) fix: replace downloaded asset paths correctly in cluster create cmd - [@​`6bd6c9b`](https://redirect.github.com/siderolabs/talos/commit/6bd6c9b5a) fix: generate iso greater than 4 gig - [@​`ac14032`](https://redirect.github.com/siderolabs/talos/commit/ac140324e) fix: skip PCR extension if TPM1.2 is found - [@​`09ef1f8`](https://redirect.github.com/siderolabs/talos/commit/09ef1f8a4) fix: ignore http proxy on grpc socket dial - [@​`22a72dc`](https://redirect.github.com/siderolabs/talos/commit/22a72dc80) chore: split options between three structs - [@​`22c34a5`](https://redirect.github.com/siderolabs/talos/commit/22c34a50f) fix(ci): provision cron jobs - [@​`b3b20ef`](https://redirect.github.com/siderolabs/talos/commit/b3b20eff3) fix: containerd crashing with sigsegv - [@​`f7891c3`](https://redirect.github.com/siderolabs/talos/commit/f7891c301) chore: calculate vmnet interface name preemptively - [@​`ae87edf`](https://redirect.github.com/siderolabs/talos/commit/ae87edffb) fix: drop libseccomp from rootfs - [@​`f74a805`](https://redirect.github.com/siderolabs/talos/commit/f74a805bb) fix: do correct backoff for nocloud reconcile - [@​`01bb294`](https://redirect.github.com/siderolabs/talos/commit/01bb294af) fix(ci): provision tests - [@​`e4945be`](https://redirect.github.com/siderolabs/talos/commit/e4945be3b) docs: add registryd debug command - [@​`d8c670a`](https://redirect.github.com/siderolabs/talos/commit/d8c670ad3) release(v1.11.0-alpha.0): prepare release - [@​`ace44ea`](https://redirect.github.com/siderolabs/talos/commit/ace44ea61) test: update hydrophone to 0.7.0 - [@​`3a11636`](https://redirect.github.com/siderolabs/talos/commit/3a1163692) chore: cross platform qemu preflight checks - [@​`7914fb1`](https://redirect.github.com/siderolabs/talos/commit/7914fb104) chore: move the create command to it's own package - [@​`c8e6196`](https://redirect.github.com/siderolabs/talos/commit/c8e619608) chore: prepare for release 1.11 - [@​`1299aaa`](https://redirect.github.com/siderolabs/talos/commit/1299aaa45) chore(ci): add extensions test for Youki runtime - [@​`e50ceb2`](https://redirect.github.com/siderolabs/talos/commit/e50ceb221) docs: activate Talos 1.10 docs - [@​`9d12aae`](https://redirect.github.com/siderolabs/talos/commit/9d12aaeb1) test: improve config patch test - [@​`106a656`](https://redirect.github.com/siderolabs/talos/commit/106a656b6) chore: make qemu provider build on darwin - [@​`8013aa0`](https://redirect.github.com/siderolabs/talos/commit/8013aa06c) test: replace platform metadata test - [@​`2b89c28`](https://redirect.github.com/siderolabs/talos/commit/2b89c2810) fix: relax etcd APIs RBAC requirements - [@​`1e67758`](https://redirect.github.com/siderolabs/talos/commit/1e677587c) fix: preserve kubelet image suffix - [@​`62ab8af`](https://redirect.github.com/siderolabs/talos/commit/62ab8af45) fix: disk image generation with image cache - [@​`d60626f`](https://redirect.github.com/siderolabs/talos/commit/d60626f01) fix: handle encryption type mismatch - [@​`a9109eb`](https://redirect.github.com/siderolabs/talos/commit/a9109ebd0) feat: allow SideroLink unique token in machine config - [@​`2ff3a6e`](https://redirect.github.com/siderolabs/talos/commit/2ff3a6e40) feat(kernel): add bcache kernel module to core talos - [@​`fa95a21`](https://redirect.github.com/siderolabs/talos/commit/fa95a2146) fix(ci): bios provision test - [@​`f7c5b86`](https://redirect.github.com/siderolabs/talos/commit/f7c5b86be) fix: sync PCR extension with volume provisioning lifecycle - [@​`f90c794`](https://redirect.github.com/siderolabs/talos/commit/f90c79474) chore: show bound driver in pcidevices info - [@​`8db3462`](https://redirect.github.com/siderolabs/talos/commit/8db34624c) fix: handle correctly changing platform network config - [@​`77c7a07`](https://redirect.github.com/siderolabs/talos/commit/77c7a075b) feat: update Kubernetes to 1.33.0 - [@​`74f0c48`](https://redirect.github.com/siderolabs/talos/commit/74f0c48c7) feat: add version compatibility for Talos 1.11 - [@​`c4fb7da`](https://redirect.github.com/siderolabs/talos/commit/c4fb7dad0) fix: force DNS runner shutdown on timeout - [@​`c49b483`](https://redirect.github.com/siderolabs/talos/commit/c49b4836e) docs: hetzner: add note about public iso - [@​`16ea2b1`](https://redirect.github.com/siderolabs/talos/commit/16ea2b113) docs: add what is new for 1.10 - [@​`be3f0c0`](https://redirect.github.com/siderolabs/talos/commit/be3f0c018) fix: fix Gvisor tests with containerd patch - [@​`37db132`](https://redirect.github.com/siderolabs/talos/commit/37db132b3) chore(ci): add provision test with bios - [@​`ec60b70`](https://redirect.github.com/siderolabs/talos/commit/ec60b70e7) fix: set media type to OCI for image cache layer - [@​`a471eb3`](https://redirect.github.com/siderolabs/talos/commit/a471eb31b) feat: update Linux 6.12.24, containerd 2.0.5 - [@​`54ad5b8`](https://redirect.github.com/siderolabs/talos/commit/54ad5b872) fix: extension services logging to console - [@​`601f036`](https://redirect.github.com/siderolabs/talos/commit/601f036ba) docs: correct flannel extra args example - [@​`ae94377`](https://redirect.github.com/siderolabs/talos/commit/ae94377d1) feat: support encryption config for user volumes - [@​`9616f6e`](https://redirect.github.com/siderolabs/talos/commit/9616f6e8d) docs: add caveat for kubespan and host ports - [@​`a1d08a3`](https://redirect.github.com/siderolabs/talos/commit/a1d08a362) docs: fixes typo at OpenEBS Mayastor worker patches - [@​`a91e872`](https://redirect.github.com/siderolabs/talos/commit/a91e8726e) docs: add a dark theme - [@​`c76189c`](https://redirect.github.com/siderolabs/talos/commit/c76189c58) fix: grub EFI mount point - [@​`4ca985c`](https://redirect.github.com/siderolabs/talos/commit/4ca985c65) fix: grub efi platform install - [@​`b312602`](https://redirect.github.com/siderolabs/talos/commit/b31260281) docs: update storage.md - [@​`396a290`](https://redirect.github.com/siderolabs/talos/commit/396a29040) feat: add new SBCs - [@​`a902f65`](https://redirect.github.com/siderolabs/talos/commit/a902f6580) feat: update Flannel to v0.26.7 - [@​`2bbefec`](https://redirect.github.com/siderolabs/talos/commit/2bbefec1a) docs: use cache in preview - [@​`6028a8d`](https://redirect.github.com/siderolabs/talos/commit/6028a8d2d) docs: update kubeprism.md - [@​`e51a8ef`](https://redirect.github.com/siderolabs/talos/commit/e51a8ef8c) fix: prefer new `MountStatus` resource - [@​`d9c7e79`](https://redirect.github.com/siderolabs/talos/commit/d9c7e7946) docs: fix search - [@​`b32fa02`](https://redirect.github.com/siderolabs/talos/commit/b32fa029b) feat: update Kubernetes to 1.33.0-rc.1 - [@​`f0ea478`](https://redirect.github.com/siderolabs/talos/commit/f0ea478cb) feat: support address priority - [@​`8cd3c8d`](https://redirect.github.com/siderolabs/talos/commit/8cd3c8dc7) test: fix NVIDIA OSS tests - [@​`62f2d27`](https://redirect.github.com/siderolabs/talos/commit/62f2d27cd) docs: update virtualbox.md - [@​`141326e`](https://redirect.github.com/siderolabs/talos/commit/141326ea3) docs: fix tabpane styling - [@​`134aa53`](https://redirect.github.com/siderolabs/talos/commit/134aa53cc) feat: update base CoreDNS code in host DNS to 1.12.1 </p> </details> ##### Changes since v1.11.0-beta.0 <details><summary>25 commits</summary> <p> - [@​`5a15ce8`](https://redirect.github.com/siderolabs/talos/commit/5a15ce88b) release(v1.11.0-beta.1): prepare release - [@​`614ca2e`](https://redirect.github.com/siderolabs/talos/commit/614ca2e22) fix: one more attempt to fix volume mount race on restart - [@​`4b86dfe`](https://redirect.github.com/siderolabs/talos/commit/4b86dfe6f) feat: implement encryption locking to STATE - [@​`8ae76c3`](https://redirect.github.com/siderolabs/talos/commit/8ae76c320) feat: implement `talos.config.early` command line arg - [@​`19f8c60`](https://redirect.github.com/siderolabs/talos/commit/19f8c605e) docs: remove talos API flags from mgmt commands - [@​`fa1d6fe`](https://redirect.github.com/siderolabs/talos/commit/fa1d6fef8) feat: bootedentry resource - [@​`7dee810`](https://redirect.github.com/siderolabs/talos/commit/7dee810d4) fix: live reload of TLS client config for discovery client - [@​`a5dc224`](https://redirect.github.com/siderolabs/talos/commit/a5dc22466) fix: enforce minimum size on user volumes if not set explicitly - [@​`7836e92`](https://redirect.github.com/siderolabs/talos/commit/7836e924d) feat: update containerd to 2.1.4 - [@​`5012550`](https://redirect.github.com/siderolabs/talos/commit/5012550ec) feat: add [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [@​`10ddc4c`](https://redirect.github.com/siderolabs/talos/commit/10ddc4cdd) fix: grype scan - [@​`d108e0a`](https://redirect.github.com/siderolabs/talos/commit/d108e0a08) fix(ci): use a random suffix for ami names - [@​`5042255`](https://redirect.github.com/siderolabs/talos/commit/504225546) fix: issues with reading GPT - [@​`bdaf08d`](https://redirect.github.com/siderolabs/talos/commit/bdaf08dd4) feat: update PCI DB module to v0.3.2 - [@​`667dceb`](https://redirect.github.com/siderolabs/talos/commit/667dcebec) test: wait for service account test job longer - [@​`ae176a4`](https://redirect.github.com/siderolabs/talos/commit/ae176a4b7) feat: update etcd to 3.6.4 - [@​`201b680`](https://redirect.github.com/siderolabs/talos/commit/201b6801f) fix: issue with volume remount on service restart - [@​`2a91140`](https://redirect.github.com/siderolabs/talos/commit/2a911402b) chore: tag aws snapshots created via ci with the image name - [@​`d8bd84b`](https://redirect.github.com/siderolabs/talos/commit/d8bd84b56) docs: add SBOM documentation - [@​`7eec619`](https://redirect.github.com/siderolabs/talos/commit/7eec61993) feat: unify disk encryption configuration - [@​`4ff2bf9`](https://redirect.github.com/siderolabs/talos/commit/4ff2bf9e0) feat: update etcd to v3.5.22 - [@​`31a67d3`](https://redirect.github.com/siderolabs/talos/commit/31a67d379) fix: do not download artifacts for cron Grype scan - [@​`c6b6e0b`](https://redirect.github.com/siderolabs/talos/commit/c6b6e0bb3) docs: rewrite the getting started and prod docs for v1.10 and v1.11 - [@​`ca1c656`](https://redirect.github.com/siderolabs/talos/commit/ca1c656e6) chore(ci): add more nvidia test matrix - [@​`7a2e0f0`](https://redirect.github.com/siderolabs/talos/commit/7a2e0f068) feat: sync pkgs, update Linux to 6.12.40 </p> </details> ##### Changes from siderolabs/crypto <details><summary>5 commits</summary> <p> - [siderolabs/crypto@`62a079b`](https://redirect.github.com/siderolabs/crypto/commit/62a079b) fix: update TLS config, add tests for TLS interactions - [siderolabs/crypto@`c2b4e26`](https://redirect.github.com/siderolabs/crypto/commit/c2b4e26) fix: remove code duplication and fix [`Ed25511`](https://redirect.github.com/siderolabs/talos/commit/Ed255119) CA generation - [siderolabs/crypto@`2a07632`](https://redirect.github.com/siderolabs/crypto/commit/2a07632) fix: enforce FIPS-140-3 compliance - [siderolabs/crypto@`17107ae`](https://redirect.github.com/siderolabs/crypto/commit/17107ae) fix: add generic CSR generator and OpenSSL interop - [siderolabs/crypto@`53659fc`](https://redirect.github.com/siderolabs/crypto/commit/53659fc) refactor: split into files </p> </details> ##### Changes from siderolabs/discovery-client <details><summary>3 commits</summary> <p> - [siderolabs/discovery-client@`0bffa6f`](https://redirect.github.com/siderolabs/discovery-client/commit/0bffa6f) fix: allow TLS config to be passed as a function - [siderolabs/discovery-client@`09c6687`](https://redirect.github.com/siderolabs/discovery-client/commit/09c6687) chore: fix project name in release.toml - [siderolabs/discovery-client@`71b0c6d`](https://redirect.github.com/siderolabs/discovery-client/commit/71b0c6d) fix: add FIPS-140-3 strict compliance </p> </details> ##### Changes from siderolabs/gen <details><summary>5 commits</summary> <p> - [siderolabs/gen@`044d921`](https://redirect.github.com/siderolabs/gen/commit/044d921) feat: add xslices.Deduplicate - [siderolabs/gen@`dcb2b74`](https://redirect.github.com/siderolabs/gen/commit/dcb2b74) feat: add `panicsafe` package - [siderolabs/gen@`b36ee43`](https://redirect.github.com/siderolabs/gen/commit/b36ee43) feat: make `xyaml.CheckUnknownKeys` public - [siderolabs/gen@`3e319e7`](https://redirect.github.com/siderolabs/gen/commit/3e319e7) feat: implement `xyaml.UnmarshalStrict` - [siderolabs/gen@`7c0324f`](https://redirect.github.com/siderolabs/gen/commit/7c0324f) chore: future-proof HashTrieMap </p> </details> ##### Changes from siderolabs/go-circular <details><summary>1 commit</summary> <p> - [siderolabs/go-circular@`5b39ef8`](https://redirect.github.com/siderolabs/go-circular/commit/5b39ef8) fix: do not log error if chunk zero was never written </p> </details> ##### Changes from siderolabs/go-kubernetes <details><summary>4 commits</summary> <p> - [siderolabs/go-kubernetes@`7887034`](https://redirect.github.com/siderolabs/go-kubernetes/commit/7887034) feat: add checks for Kubernetes 1.34 removals - [siderolabs/go-kubernetes@`657a74b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/657a74b) feat: prepare for Kubernetes 1.34 - [siderolabs/go-kubernetes@`9070be4`](https://redirect.github.com/siderolabs/go-kubernetes/commit/9070be4) fix: remove DynamicResourceAllocation feature gate - [siderolabs/go-kubernetes@`8cb588b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/8cb588b) fix: k8s 1.32->1.33 upgrade check </p> </details> ##### Changes from siderolabs/go-pcidb <details><summary>1 commit</summary> <p> - [siderolabs/go-pcidb@`9baca16`](https://redirect.github.com/siderolabs/go-pcidb/commit/9baca16) feat: update PCI DB to the latest version </p> </details> ##### Changes from siderolabs/pkgs <details><summary>59 commits</summary> <p> - [siderolabs/pkgs@`a94734c`](https://redirect.github.com/siderolabs/pkgs/commit/a94734c) feat: update containerd to 2.1.4 - [siderolabs/pkgs@`662c5a4`](https://redirect.github.com/siderolabs/pkgs/commit/662c5a4) feat: enable [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [siderolabs/pkgs@`48afc2a`](https://redirect.github.com/siderolabs/pkgs/commit/48afc2a) fix: enable ISCSI IBFT - [siderolabs/pkgs@`ddb7b5e`](https://redirect.github.com/siderolabs/pkgs/commit/ddb7b5e) feat: update Linux to 6.12.40 - [siderolabs/pkgs@`5616981`](https://redirect.github.com/siderolabs/pkgs/commit/5616981) feat: enable bootloader control on amd64 - [siderolabs/pkgs@`4a840bc`](https://redirect.github.com/siderolabs/pkgs/commit/4a840bc) chore: allow more than one commit for a PR - [siderolabs/pkgs@`e2fbfb1`](https://redirect.github.com/siderolabs/pkgs/commit/e2fbfb1) feat: update tools/toolchain to 1.11.0 - [siderolabs/pkgs@`383bbb4`](https://redirect.github.com/siderolabs/pkgs/commit/383bbb4) feat: update NVIDIA production to 570.158.01 - [siderolabs/pkgs@`853cf3a`](https://redirect.github.com/siderolabs/pkgs/commit/853cf3a) feat: bump e2fsprogs, ipxe, kspp, tools - [siderolabs/pkgs@`a3f8281`](https://redirect.github.com/siderolabs/pkgs/commit/a3f8281) feat: update Linux to 6.12.38 - [siderolabs/pkgs@`8ed84c5`](https://redirect.github.com/siderolabs/pkgs/commit/8ed84c5) feat: refactor HW\_RANDOM configuration - [siderolabs/pkgs@`108099f`](https://redirect.github.com/siderolabs/pkgs/commit/108099f) feat: enable AMD encrypted memory - [siderolabs/pkgs@`c97d25e`](https://redirect.github.com/siderolabs/pkgs/commit/c97d25e) fix: remove erroneous PURLs - [siderolabs/pkgs@`90f7c65`](https://redirect.github.com/siderolabs/pkgs/commit/90f7c65) fix: bump bldr - [siderolabs/pkgs@`a24b40e`](https://redirect.github.com/siderolabs/pkgs/commit/a24b40e) feat: update Linux to 6.12.36 and firmware - [siderolabs/pkgs@`2537e61`](https://redirect.github.com/siderolabs/pkgs/commit/2537e61) docs: more SBOM metadata to cover whole Talos - [siderolabs/pkgs@`0f4cbbc`](https://redirect.github.com/siderolabs/pkgs/commit/0f4cbbc) feat: update dependencies - [siderolabs/pkgs@`9cec45c`](https://redirect.github.com/siderolabs/pkgs/commit/9cec45c) feat: add SBOM metadata for some packages - [siderolabs/pkgs@`03bb94c`](https://redirect.github.com/siderolabs/pkgs/commit/03bb94c) feat: update dependencies - [siderolabs/pkgs@`c613abd`](https://redirect.github.com/siderolabs/pkgs/commit/c613abd) fix: iptables url - [siderolabs/pkgs@`fae59df`](https://redirect.github.com/siderolabs/pkgs/commit/fae59df) fix: download and copy hailo8 firmware - [siderolabs/pkgs@`fadf1e2`](https://redirect.github.com/siderolabs/pkgs/commit/fadf1e2) feat: update containerd to 2.1.2 - [siderolabs/pkgs@`a0b0da1`](https://redirect.github.com/siderolabs/pkgs/commit/a0b0da1) feat: enable io.latency cgroup controller - [siderolabs/pkgs@`0aaa07a`](https://redirect.github.com/siderolabs/pkgs/commit/0aaa07a) feat: add hailort package - [siderolabs/pkgs@`8555e94`](https://redirect.github.com/siderolabs/pkgs/commit/8555e94) chore: use ftpmirror for GNU sources - [siderolabs/pkgs@`9fbe2b4`](https://redirect.github.com/siderolabs/pkgs/commit/9fbe2b4) feat: update Go to 1.24.4 - [siderolabs/pkgs@`79bfa9e`](https://redirect.github.com/siderolabs/pkgs/commit/79bfa9e) feat: update NVIDIA drivers to 570.148.08 - [siderolabs/pkgs@`c8b8bd8`](https://redirect.github.com/siderolabs/pkgs/commit/c8b8bd8) feat: bump dependencies - [siderolabs/pkgs@`54bf03e`](https://redirect.github.com/siderolabs/pkgs/commit/54bf03e) feat: update Linux to 6.12.31 - [siderolabs/pkgs@`93b3aaa`](https://redirect.github.com/siderolabs/pkgs/commit/93b3aaa) feat: add patch for CephFS IMA performance regression - [siderolabs/pkgs@`ebd6627`](https://redirect.github.com/siderolabs/pkgs/commit/ebd6627) feat: disable IMA support - [siderolabs/pkgs@`8aad53b`](https://redirect.github.com/siderolabs/pkgs/commit/8aad53b) feat: add CONFIG\_NFT\_CONNLIMIT to kernel - [siderolabs/pkgs@`7a299fa`](https://redirect.github.com/siderolabs/pkgs/commit/7a299fa) feat: update Linux to 6.12.30 - [siderolabs/pkgs@`8c4603e`](https://redirect.github.com/siderolabs/pkgs/commit/8c4603e) feat: move more configs to modules on arm64 - [siderolabs/pkgs@`7b1183b`](https://redirect.github.com/siderolabs/pkgs/commit/7b1183b) feat(kernel): enable IB user-space management and RDMA - [siderolabs/pkgs@`1b1430e`](https://redirect.github.com/siderolabs/pkgs/commit/1b1430e) fix: drop pcre2 binaries - [siderolabs/pkgs@`487610c`](https://redirect.github.com/siderolabs/pkgs/commit/487610c) fix: drop broken symlinks - [siderolabs/pkgs@`f31d518`](https://redirect.github.com/siderolabs/pkgs/commit/f31d518) fix: clean up some binaries - [siderolabs/pkgs@`0f74b9b`](https://redirect.github.com/siderolabs/pkgs/commit/0f74b9b) feat: update containerd to v2.1.1 - [siderolabs/pkgs@`89b4037`](https://redirect.github.com/siderolabs/pkgs/commit/89b4037) fix: tenstorrent pkg name - [siderolabs/pkgs@`a14b544`](https://redirect.github.com/siderolabs/pkgs/commit/a14b544) chore: drop qemu-tools vmdk support - [siderolabs/pkgs@`2563e47`](https://redirect.github.com/siderolabs/pkgs/commit/2563e47) feat: add tenstorrent package - [siderolabs/pkgs@`2a1c42f`](https://redirect.github.com/siderolabs/pkgs/commit/2a1c42f) fix(renovate): flannel config - [siderolabs/pkgs@`bfa69a8`](https://redirect.github.com/siderolabs/pkgs/commit/bfa69a8) feat: add open-vmdk package - [siderolabs/pkgs@`9f1ba1f`](https://redirect.github.com/siderolabs/pkgs/commit/9f1ba1f) fix: bring back updated containerd gvisor patch - [siderolabs/pkgs@`1567cb6`](https://redirect.github.com/siderolabs/pkgs/commit/1567cb6) feat: update Linux 6.12.28, firmware - [siderolabs/pkgs@`9bc66e6`](https://redirect.github.com/siderolabs/pkgs/commit/9bc66e6) feat: update containerd to 2.1.0 - [siderolabs/pkgs@`c6b54e0`](https://redirect.github.com/siderolabs/pkgs/commit/c6b54e0) feat: enable zswap - [siderolabs/pkgs@`4cd7084`](https://redirect.github.com/siderolabs/pkgs/commit/4cd7084) feat: update dependencies - [siderolabs/pkgs@`a3fcbf8`](https://redirect.github.com/siderolabs/pkgs/commit/a3fcbf8) feat(kernel): enable panthor driver - [siderolabs/pkgs@`74d1665`](https://redirect.github.com/siderolabs/pkgs/commit/74d1665) feat: update ZFS to 2.3.2 - [siderolabs/pkgs@`ddc866b`](https://redirect.github.com/siderolabs/pkgs/commit/ddc866b) feat: update Linux to 6.12.27 - [siderolabs/pkgs@`a347857`](https://redirect.github.com/siderolabs/pkgs/commit/a347857) fix: build containerd with Go 1.23 - [siderolabs/pkgs@`74da85c`](https://redirect.github.com/siderolabs/pkgs/commit/74da85c) fix: containerd build doesn't need seccomp - [siderolabs/pkgs@`4effa05`](https://redirect.github.com/siderolabs/pkgs/commit/4effa05) fix: downgrade libseccomp to 2.5.5 - [siderolabs/pkgs@`9cea00b`](https://redirect.github.com/siderolabs/pkgs/commit/9cea00b) feat: update Linux to 6.12.25 - [siderolabs/pkgs@`cb108a5`](https://redirect.github.com/siderolabs/pkgs/commit/cb108a5) feat(kernel): enable bcache module - [siderolabs/pkgs@`d042432`](https://redirect.github.com/siderolabs/pkgs/commit/d042432) fix: backport sandbox fix for Gvisor - [siderolabs/pkgs@`fa625dc`](https://redirect.github.com/siderolabs/pkgs/commit/fa625dc) feat: update Linux 6.12.24, containerd 2.0.5 </p> </details> ##### Changes from siderolabs/siderolink <details><summary>3 commits</summary> <p> - [siderolabs/siderolink@`5f46f65`](https://redirect.github.com/siderolabs/siderolink/commit/5f46f65) feat: handle panics in goroutines - [siderolabs/siderolink@`d09ff45`](https://redirect.github.com/siderolabs/siderolink/commit/d09ff45) fix: race in wait value - [siderolabs/siderolink@`d2a79e0`](https://redirect.github.com/siderolabs/siderolink/commit/d2a79e0) fix: clean up device on failure </p> </details> ##### Changes from siderolabs/tools <details><summary>10 commits</summary> <p> - [siderolabs/tools@`1d451f3`](https://redirect.github.com/siderolabs/tools/commit/1d451f3) feat: update toolchain to 1.11.0 - [siderolabs/tools@`650b916`](https://redirect.github.com/siderolabs/tools/commit/650b916) chore: bump toolchain, update names in SBOM - [siderolabs/tools@`594704b`](https://redirect.github.com/siderolabs/tools/commit/594704b) feat: bump dependencies - [siderolabs/tools@`4818702`](https://redirect.github.com/siderolabs/tools/commit/4818702) docs: add SBOM metadata for packages copied to pkgs - [siderolabs/tools@`542a03c`](https://redirect.github.com/siderolabs/tools/commit/542a03c) feat: update dependencies - [siderolabs/tools@`0554e87`](https://redirect.github.com/siderolabs/tools/commit/0554e87) chore: use ftpmirror for GNU sources - [siderolabs/tools@`1dfd14b`](https://redirect.github.com/siderolabs/tools/commit/1dfd14b) feat: update Go to 1.24.4 - [siderolabs/tools@`af3fd64`](https://redirect.github.com/siderolabs/tools/commit/af3fd64) feat: update dependencies - [siderolabs/tools@`e35234b`](https://redirect.github.com/siderolabs/tools/commit/e35234b) feat: update dependencies - [siderolabs/tools@`c96a4e6`](https://redirect.github.com/siderolabs/tools/commit/c96a4e6) chore: update toolchain to the latest version </p> </details> ##### Dependency Changes - **cloud.google.com/go/compute/metadata** v0.6.0 -> v0.7.0 - **github.com/Azure/azure-sdk-for-go/sdk/azcore** v1.18.0 -> v1.18.1 - **github.com/Azure/azure-sdk-for-go/sdk/azidentity** v1.9.0 -> v1.10.1 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates** v1.3.1 -> v1.4.0 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys** v1.3.1 -> v1.4.0 - **github.com/aws/aws-sdk-go-v2/config** v1.29.14 -> v1.29.17 - **github.com/aws/aws-sdk-go-v2/feature/ec2/imds** v1.16.30 -> v1.16.32 - **github.com/aws/aws-sdk-go-v2/service/kms** v1.38.3 -> v1.41.2 - **github.com/aws/smithy-go** v1.22.3 -> v1.22.4 - **github.com/containerd/containerd/api** v1.8.0 -> v1.9.0 - **github.com/containerd/containerd/v2** v2.0.5 -> v2.1.4 - **github.com/containernetworking/plugins** v1.6.2 -> v1.7.1 - **github.com/cosi-project/runtime** v0.10.2 -> v1.10.7 - **github.com/detailyang/go-fallocate** [`432fa64`](https://redirect.github.com/siderolabs/talos/commit/432fa640bd2e) ***new*** - **github.com/docker/cli** v28.0.4 -> v28.3.3 - **github.com/docker/docker** v28.0.4 -> v28.3.3 - **github.com/equinix-ms/go-vmw-guestrpc** v0.1.1 ***new*** - **github.com/foxboron/go-uefi** [`69fb7db`](https://redirect.github.com/siderolabs/talos/commit/69fb7dba244f) -> [`a3183a1`](https://redirect.github.com/siderolabs/talos/commit/a3183a1bfc84) - **github.com/g0rbe/go-chattr** v1.0.1 ***new*** - **github.com/google/cadvisor** v0.52.1 -> v0.53.0 - **github.com/google/cel-go** v0.24.1 -> v0.26.0 - **github.com/google/go-containerregistry** v0.20.3 -> v0.20.6 - **github.com/google/go-tpm** v0.9.3 -> v0.9.5 - **github.com/grpc-ecosystem/go-grpc-middleware/v2** v2.3.1 -> v2.3.2 - **github.com/hetznercloud/hcloud-go/v2** v2.21.0 -> v2.22.0 - **github.com/jsimonetti/rtnetlink/v2** v2.0.3 -> v2.0.5 - **github.com/klauspost/cpuid/v2** v2.2.10 -> v2.3.0 - **github.com/linode/go-metadata** v0.2.1 -> v0.2.2 - **github.com/miekg/dns** v1.1.65 -> v1.1.67 - **github.com/pkg/xattr** v0.4.10 -> v0.4.12 - **github.com/prometheus/procfs** v0.16.0 -> v0.17.0 - **github.com/rivo/tview** [`949945f`](https://redirect.github.com/siderolabs/talos/commit/949945f8d922) -> [`a4a78f1`](https://redirect.github.com/siderolabs/talos/commit/a4a78f1e05cb) - **github.com/safchain/ethtool** v0.5.10 -> v0.6.1 - **github.com/scaleway/scaleway-sdk-go** v1.0.0-beta.33 -> v1.0.0-beta.34 - **github.com/siderolabs/crypto** v0.5.1 -> v0.6.3 - **github.com/siderolabs/discovery-client** v0.1.11 -> v0.1.13 - **github.com/siderolabs/gen** v0.8.0 -> v0.8.5 - **github.com/siderolabs/go-blockdevice/v2** v2.0.16 -> v2.0.19 - **github.com/siderolabs/go-circular** v0.2.2 -> v0.2.3 - **github.com/siderolabs/go-kubernetes** v0.2.21 -> v0.2.25 - **github.com/siderolabs/go-pcidb** v0.3.1 -> v0.3.2 - **github.com/siderolabs/pkgs** v1.10.0-5-g48dba3e -> v1.11.0-6-ga94734c - **github.com/siderolabs/siderolink** v0.3.13 -> v0.3.15 - **github.com/siderolabs/talos/pkg/machinery** v1.10.0 -> v1.11.0-beta.1 - **github.com/siderolabs/tools** v1.10.0 -> v1.11.0 - **github.com/spf13/pflag** v1.0.6 -> v1.0.7 - **go.etcd.io/etcd/api/v3** v3.5.21 -> v3.6.4 - **go.etcd.io/etcd/client/pkg/v3** v3.5.21 -> v3.6.4 - **go.etcd.io/etcd/client/v3** v3.5.21 -> v3.6.4 - **go.etcd.io/etcd/etcdutl/v3** v3.5.21 -> v3.6.4 - **golang.org/x/net** v0.39.0 -> v0.42.0 - **golang.org/x/oauth2** v0.29.0 -> v0.30.0 - **golang.org/x/sync** v0.13.0 -> v0.16.0 - **golang.org/x/sys** v0.32.0 -> v0.34.0 - **golang.org/x/term** v0.31.0 -> v0.33.0 - **golang.org/x/text** v0.24.0 -> v0.27.0 - **golang.org/x/time** v0.11.0 -> v0.12.0 - **google.golang.org/grpc** </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
292 lines
15 KiB
Modula-2
292 lines
15 KiB
Modula-2
module github.com/truecharts/public/clustertool
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
filippo.io/age v1.2.1
|
|
github.com/Masterminds/semver/v3 v3.4.0
|
|
github.com/beevik/ntp v1.4.3
|
|
github.com/budimanjojo/talhelper/v3 v3.0.32
|
|
github.com/getsops/sops/v3 v3.10.2
|
|
github.com/go-git/go-git/v5 v5.16.2
|
|
github.com/go-logr/zerologr v1.2.3
|
|
github.com/go-playground/validator/v10 v10.27.0
|
|
github.com/invopop/jsonschema v0.13.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/knadh/koanf/parsers/yaml v1.1.0
|
|
github.com/knadh/koanf/providers/file v1.2.0
|
|
github.com/knadh/koanf/v2 v2.2.2
|
|
github.com/leaanthony/debme v1.2.1
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/siderolabs/talos/pkg/machinery v1.11.0-beta.1
|
|
github.com/spf13/cobra v1.9.1
|
|
golang.org/x/crypto v0.40.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
helm.sh/helm/v3 v3.18.4
|
|
k8s.io/api v0.34.0-beta.0
|
|
k8s.io/apimachinery v0.34.0-beta.0
|
|
k8s.io/client-go v0.34.0-beta.0
|
|
sigs.k8s.io/controller-runtime v0.21.0
|
|
sigs.k8s.io/kustomize/api v0.20.1
|
|
sigs.k8s.io/kustomize/kyaml v0.20.1
|
|
sigs.k8s.io/yaml v1.6.0
|
|
)
|
|
|
|
require (
|
|
cel.dev/expr v0.24.0 // indirect
|
|
cloud.google.com/go v0.121.1 // indirect
|
|
cloud.google.com/go/auth v0.16.2 // indirect
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
|
|
cloud.google.com/go/compute/metadata v0.7.0 // indirect
|
|
cloud.google.com/go/iam v1.5.2 // indirect
|
|
cloud.google.com/go/kms v1.21.2 // indirect
|
|
cloud.google.com/go/longrunning v0.6.7 // indirect
|
|
cloud.google.com/go/monitoring v1.24.2 // indirect
|
|
cloud.google.com/go/storage v1.55.0 // indirect
|
|
dario.cat/mergo v1.0.1 // indirect
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.1 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.10.1 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.1 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.4.0 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.2.0 // indirect
|
|
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 // indirect
|
|
github.com/BurntSushi/toml v1.5.0 // indirect
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.53.0 // indirect
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.53.0 // indirect
|
|
github.com/MakeNowJust/heredoc v1.0.0 // indirect
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
|
|
github.com/Masterminds/squirrel v1.5.4 // indirect
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/ProtonMail/go-crypto v1.3.0 // indirect
|
|
github.com/a8m/envsubst v1.4.3 // indirect
|
|
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
github.com/aws/aws-sdk-go-v2 v1.36.5 // indirect
|
|
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.10 // indirect
|
|
github.com/aws/aws-sdk-go-v2/config v1.29.17 // indirect
|
|
github.com/aws/aws-sdk-go-v2/credentials v1.17.70 // indirect
|
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.32 // indirect
|
|
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.72 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.36 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.36 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.4 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.17 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/kms v1.41.2 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.2 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sso v1.25.5 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.3 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sts v1.34.0 // indirect
|
|
github.com/aws/smithy-go v1.22.4 // indirect
|
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
|
github.com/blang/semver v3.5.1+incompatible // indirect
|
|
github.com/blang/semver/v4 v4.0.0 // indirect
|
|
github.com/buger/jsonparser v1.1.1 // indirect
|
|
github.com/carapace-sh/carapace-shlex v1.0.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/chai2010/gettext-go v1.0.2 // indirect
|
|
github.com/cloudflare/circl v1.6.1 // indirect
|
|
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
|
|
github.com/containerd/containerd v1.7.27 // indirect
|
|
github.com/containerd/errdefs v1.0.0 // indirect
|
|
github.com/containerd/go-cni v1.1.12 // indirect
|
|
github.com/containerd/log v0.1.0 // indirect
|
|
github.com/containerd/platforms v1.0.0-rc.1 // indirect
|
|
github.com/containernetworking/cni v1.3.0 // indirect
|
|
github.com/cosi-project/runtime v1.10.7 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
|
|
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
|
|
github.com/emirpasic/gods v1.18.1 // indirect
|
|
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
|
|
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
|
|
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
|
|
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
|
|
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/fsnotify/fsnotify v1.9.0 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
|
|
github.com/gertd/go-pluralize v0.2.1 // indirect
|
|
github.com/getsops/gopgagent v0.0.0-20241224165529-7044f28e491e // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-errors/errors v1.4.2 // indirect
|
|
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
|
|
github.com/go-git/go-billy/v5 v5.6.2 // indirect
|
|
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.1 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
|
|
github.com/gobwas/glob v0.2.3 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
|
|
github.com/google/btree v1.1.3 // indirect
|
|
github.com/google/cel-go v0.26.0 // indirect
|
|
github.com/google/gnostic-models v0.7.0 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/google/s2a-go v0.1.9 // indirect
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.14.2 // indirect
|
|
github.com/gookit/filter v1.2.2 // indirect
|
|
github.com/gookit/goutil v0.6.18 // indirect
|
|
github.com/gookit/validate v1.5.5 // indirect
|
|
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
|
|
github.com/gosuri/uitable v0.0.4 // indirect
|
|
github.com/goware/prefixer v0.0.0-20160118172347-395022866408 // indirect
|
|
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
|
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 // indirect
|
|
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
|
|
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
|
|
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
|
|
github.com/hashicorp/vault/api v1.16.0 // indirect
|
|
github.com/hexops/gotextdiff v1.0.3 // indirect
|
|
github.com/huandu/xstrings v1.5.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
github.com/jmoiron/sqlx v1.4.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/josharian/native v1.1.0 // indirect
|
|
github.com/jsimonetti/rtnetlink/v2 v2.0.5 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/kevinburke/ssh_config v1.2.0 // indirect
|
|
github.com/klauspost/compress v1.18.0 // indirect
|
|
github.com/knadh/koanf/maps v0.1.2 // indirect
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
|
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
|
|
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/lib/pq v1.10.9 // indirect
|
|
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
|
|
github.com/mailru/easyjson v0.9.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
|
github.com/mdlayher/ethtool v0.4.0 // indirect
|
|
github.com/mdlayher/genetlink v1.3.2 // indirect
|
|
github.com/mdlayher/netlink v1.7.3-0.20250113171957-fbb4dce95f42 // indirect
|
|
github.com/mdlayher/socket v0.5.1 // indirect
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/moby/spdystream v0.5.0 // indirect
|
|
github.com/moby/term v0.5.2 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
|
|
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.1.1 // indirect
|
|
github.com/opencontainers/runtime-spec v1.2.1 // indirect
|
|
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
|
|
github.com/petermattis/goid v0.0.0-20250508124226-395b08cebbdb // indirect
|
|
github.com/pjbgf/sha1cd v0.3.2 // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/rubenv/sql-migrate v1.8.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
|
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
|
|
github.com/sasha-s/go-deadlock v0.3.5 // indirect
|
|
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
|
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
github.com/siderolabs/crypto v0.6.3 // indirect
|
|
github.com/siderolabs/gen v0.8.5 // indirect
|
|
github.com/siderolabs/go-pointer v1.0.1 // indirect
|
|
github.com/siderolabs/image-factory v0.7.6 // indirect
|
|
github.com/siderolabs/net v0.4.0 // indirect
|
|
github.com/siderolabs/protoenc v0.2.2 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/skeema/knownhosts v1.3.1 // indirect
|
|
github.com/spf13/cast v1.7.1 // indirect
|
|
github.com/spf13/pflag v1.0.7 // indirect
|
|
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
|
|
github.com/stoewer/go-strcase v1.3.0 // indirect
|
|
github.com/urfave/cli v1.22.16 // indirect
|
|
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/xanzy/ssh-agent v0.3.3 // indirect
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
|
github.com/xlab/treeprint v1.2.0 // indirect
|
|
github.com/zeebo/errs v1.4.0 // indirect
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
|
go.opentelemetry.io/contrib/detectors/gcp v1.36.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
|
|
go.opentelemetry.io/otel v1.37.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.37.0 // indirect
|
|
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
|
|
go.opentelemetry.io/otel/sdk/metric v1.36.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.37.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.0 // indirect
|
|
go.yaml.in/yaml/v2 v2.4.2 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect
|
|
golang.org/x/mod v0.26.0 // indirect
|
|
golang.org/x/net v0.42.0 // indirect
|
|
golang.org/x/oauth2 v0.30.0 // indirect
|
|
golang.org/x/sync v0.16.0 // indirect
|
|
golang.org/x/sys v0.34.0 // indirect
|
|
golang.org/x/term v0.33.0 // indirect
|
|
golang.org/x/text v0.27.0 // indirect
|
|
golang.org/x/time v0.12.0 // indirect
|
|
google.golang.org/api v0.241.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20250505200425-f936aa4a68b2 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250715232539-7130f93afb79 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250715232539-7130f93afb79 // indirect
|
|
google.golang.org/grpc v1.73.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
k8s.io/apiextensions-apiserver v0.33.2 // indirect
|
|
k8s.io/apiserver v0.33.2 // indirect
|
|
k8s.io/cli-runtime v0.33.2 // indirect
|
|
k8s.io/component-base v0.33.2 // indirect
|
|
k8s.io/klog/v2 v2.130.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
|
|
k8s.io/kubectl v0.33.2 // indirect
|
|
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
|
|
oras.land/oras-go/v2 v2.6.0 // indirect
|
|
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
|
|
sigs.k8s.io/randfill v1.0.0 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v6 v6.2.0 // indirect
|
|
)
|