Documentation ¶
Index ¶
- Variables
- func Append(oldConfig, newConfig types.Config) types.Config
- func Parse(rawConfig []byte) (types.Config, report.Report, error)
- func ParseFromLatest(rawConfig []byte) (types.Config, report.Report, error)
- func ParseFromV1(rawConfig []byte) (types.Config, error)
- func TranslateFromV1(old v1.Config) (types.Config, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrCloudConfig = errors.New("not a config (found coreos-cloudconfig)") ErrEmpty = errors.New("not a config (empty)") ErrScript = errors.New("not a config (found coreos-cloudinit script)") ErrDeprecated = errors.New("config format deprecated") ErrInvalid = errors.New("config is not valid") )
Functions ¶
func Append ¶
Append appends newConfig to oldConfig and returns the result. Appending one config to another is accomplished by iterating over every field in the config structure, appending slices, recursively appending structs, and overwriting old values with new values for all other types.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.