mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-25 00:21:10 +02:00
This PR moves to using v1alpha1 as the inital node config version, so we can graduate these configs a little more cleanly later on. Signed-off-by: Spencer Smith <robertspencersmith@gmail.com>
13 lines
378 B
Go
13 lines
378 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 v1alpha1
|
|
|
|
// NodeConfig holds the full representation of the node config
|
|
type NodeConfig struct {
|
|
Version string
|
|
Machine *MachineConfig
|
|
Cluster *ClusterConfig
|
|
}
|