mirror of
https://github.com/kairos-io/provider-kairos.git
synced 2025-08-16 06:33:13 +00:00
25 lines
832 B
Go
25 lines
832 B
Go
package config
|
|
|
|
type Kairos struct {
|
|
NetworkToken string `yaml:"network_token,omitempty"`
|
|
NetworkID string `yaml:"network_id,omitempty"`
|
|
Role string `yaml:"role,omitempty"`
|
|
DNS bool `yaml:"dns,omitempty"`
|
|
LogLevel string `yaml:"loglevel,omitempty"`
|
|
}
|
|
|
|
type Config struct {
|
|
Kairos *Kairos `yaml:"kairos,omitempty"`
|
|
K3sAgent K3s `yaml:"k3s-agent,omitempty"`
|
|
K3s K3s `yaml:"k3s,omitempty"`
|
|
VPN map[string]string `yaml:"vpn,omitempty"`
|
|
}
|
|
|
|
type K3s struct {
|
|
Env map[string]string `yaml:"env,omitempty"`
|
|
ReplaceEnv bool `yaml:"replace_env,omitempty"`
|
|
ReplaceArgs bool `yaml:"replace_args,omitempty"`
|
|
Args []string `yaml:"args,omitempty"`
|
|
Enabled bool `yaml:"enabled,omitempty"`
|
|
}
|