kairos-sdk/sdk/state/machine.go
Ettore Di Giacinto 8b862e5e6a sparkles: enhancements (#263)
* 🎨 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
2022-10-24 08:34:49 +02:00

11 lines
124 B
Go

package state
type Machine struct {
BootArgs []string
CloudConfig string
}
type Spec struct {
MachineSpec Machine
}