mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-10 23:21:34 +02:00
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.20.md#changelog-since-v1202 Also updater pkgs for: * talos-systems/pkgs#238 (raspberrypi-firmware update) * talos-systems/pkgs#242 (Linux 5.10.17 + init_on_free=0) Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
23 lines
731 B
Go
23 lines
731 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package kernel
|
|
|
|
// DefaultArgs returns the Talos default kernel commandline options.
|
|
var DefaultArgs = []string{
|
|
"init_on_alloc=1",
|
|
"slab_nomerge=",
|
|
"pti=on",
|
|
"consoleblank=0",
|
|
// AWS recommends setting the nvme_core.io_timeout to the highest value possible.
|
|
// See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nvme-ebs-volumes.html.
|
|
"nvme_core.io_timeout=4294967295",
|
|
"random.trust_cpu=on",
|
|
// Disable rate limited printk
|
|
"printk.devkmsg=on",
|
|
"ima_template=ima-ng",
|
|
"ima_appraise=fix",
|
|
"ima_hash=sha512",
|
|
}
|