mirror of
https://github.com/lingble/talos.git
synced 2026-03-20 04:03:37 +00:00
Talos diagnostics analyzes current system state and comes up with detailed warnings on the system misconfiguration which might be tricky to figure out other way. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
81 lines
1.8 KiB
TOML
81 lines
1.8 KiB
TOML
# commit to be tagged for new release
|
|
commit = "HEAD"
|
|
|
|
project_name = "Talos"
|
|
github_repo = "siderolabs/talos"
|
|
match_deps = "^github.com/((talos-systems|siderolabs)/[a-zA-Z0-9-]+)$"
|
|
|
|
# previous release
|
|
previous = "v1.7.0"
|
|
|
|
pre_release = true
|
|
|
|
preface = """\
|
|
"""
|
|
|
|
[notes]
|
|
[notes.updates]
|
|
title = "Component Updates"
|
|
description = """\
|
|
Kubernetes: 1.30.1
|
|
Linux: 6.6.32
|
|
containerd: 2.0.0-rc.2
|
|
runc: 1.2.0-rc.1
|
|
etcd: 3.5.14
|
|
Flannel: 0.25.3
|
|
|
|
Talos is built with Go 1.22.4.
|
|
"""
|
|
|
|
|
|
[notes.zstd]
|
|
title = "ZSTD Compression"
|
|
description = """\
|
|
Talos Linux now compresses kernel and initramfs using ZSTD.
|
|
Linux arm64 kernel is now compressed (previously it was uncompressed).
|
|
"""
|
|
|
|
[notes.forward-kube-dns-to-host]
|
|
title = "DNS Forwarding for CoreDNS pods"
|
|
description = """\
|
|
Usage of the host DNS resolver as upstream for Kubernetes CoreDNS pods is now enabled by default. You can disable it
|
|
with:
|
|
|
|
```yaml
|
|
machine:
|
|
features:
|
|
hostDNS:
|
|
enabled: true
|
|
forwardKubeDNSToHost: false
|
|
```
|
|
|
|
Please note that on running cluster you will have to kill CoreDNS pods for this change to apply.
|
|
"""
|
|
|
|
[notes.lspci]
|
|
title = "PCI Devices"
|
|
description = """\
|
|
A list of PCI devices can now be obtained via `PCIDevices` resource, e.g. `talosctl get pcidevices`.
|
|
"""
|
|
|
|
[notes.diagnostics]
|
|
title = "Diagnostics"
|
|
description = """\
|
|
Talos Linux now shows diagnostics information for common problems related to misconfiguration via `talosctl health` and Talos dashboard.
|
|
"""
|
|
|
|
|
|
[make_deps]
|
|
|
|
[make_deps.tools]
|
|
variable = "TOOLS"
|
|
repository = "github.com/siderolabs/tools"
|
|
|
|
[make_deps.pkgs]
|
|
variable = "PKGS"
|
|
repository = "github.com/siderolabs/pkgs"
|
|
|
|
[make_deps.extras]
|
|
variable = "EXTRAS"
|
|
repository = "github.com/siderolabs/extras"
|