mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-10 07:01:12 +02:00
A special META key might contain optional platform network config for the `METAL` platform. It is completely optional, but if present, it works same way as in the clouds: it is applied with low priority (can be overridden with machine config), but provides some initial defaults for the machine. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
19 lines
690 B
Go
19 lines
690 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 meta
|
|
|
|
const (
|
|
// Upgrade is the upgrade tag.
|
|
Upgrade = iota + 6
|
|
// StagedUpgradeImageRef stores image reference for staged upgrade.
|
|
StagedUpgradeImageRef
|
|
// StagedUpgradeInstallOptions stores JSON-serialized install.Options.
|
|
StagedUpgradeInstallOptions
|
|
// StateEncryptionConfig stores JSON-serialized v1alpha1.Encryption.
|
|
StateEncryptionConfig
|
|
// MetalNetworkPlatformConfig stores serialized NetworkPlatformConfig for the `metal` platform.
|
|
MetalNetworkPlatformConfig
|
|
)
|