mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-06-27 07:27:33 +00:00
* 🎨 Do not need to prefix '.' on queries * ✨ Add recovery to stateapi * ✨ Add cloudconfig SDK * ✨ Unify post-install/firstboot hooks This also adds capabilities to add grub option at first boot rather than after installation as for bundles. * 🤖 Optimize tests to wait for state to change
11 lines
124 B
Go
11 lines
124 B
Go
package state
|
|
|
|
type Machine struct {
|
|
BootArgs []string
|
|
CloudConfig string
|
|
}
|
|
|
|
type Spec struct {
|
|
MachineSpec Machine
|
|
}
|