mirror of
https://github.com/siderolabs/talos.git
synced 2025-12-26 03:41:23 +01:00
This is the official v0.13.1 release. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
# commit to be tagged for new release
|
|
commit = "HEAD"
|
|
|
|
project_name = "Talos"
|
|
github_repo = "talos-systems/talos"
|
|
match_deps = "^github.com/(talos-systems/[a-zA-Z0-9-]+)$"
|
|
|
|
# previous release
|
|
previous = "v0.13.0"
|
|
|
|
pre_release = false
|
|
|
|
preface = """\
|
|
"""
|
|
|
|
[notes]
|
|
|
|
[notes.caps]
|
|
title = "Kexec and capabilities"
|
|
description = """\
|
|
When kexec support is disabled Talos no longer drops Linux capabilities (`CAP_SYS_BOOT` and `CAP_SYS_MODULES`) for child processes.
|
|
That is helpful for advanced use-cases like Docker-in-Docker.
|
|
|
|
If you want to permanently disable kexec and capabilities dropping, pass `kexec_load_disabled=1` argument to the kernel.
|
|
For example:
|
|
|
|
```yaml
|
|
install:
|
|
extraKernelArgs:
|
|
- kexec_load_disabled=1
|
|
```
|
|
|
|
Please note that capabilities are dropped before machine configuration is loaded,
|
|
so disabling kexec via `machine.sysctls` (like in the section `Reboots via kexec`) will not be enough.
|
|
"""
|
|
|
|
|
|
[make_deps]
|
|
|
|
[make_deps.tools]
|
|
variable = "TOOLS"
|
|
repository = "github.com/talos-systems/tools"
|
|
|
|
[make_deps.pkgs]
|
|
variable = "PKGS"
|
|
repository = "github.com/talos-systems/pkgs"
|
|
|
|
[make_deps.extras]
|
|
variable = "EXTRAS"
|
|
repository = "github.com/talos-systems/extras"
|