mirror of
https://github.com/kairos-io/provider-k3s.git
synced 2025-08-25 08:48:55 +00:00
9 lines
237 B
Go
9 lines
237 B
Go
|
package api
|
||
|
|
||
|
type K3sConfig struct {
|
||
|
ClusterInit bool `yaml:"cluster-init,omitempty"`
|
||
|
Token string `yaml:"token,omitempty"`
|
||
|
Server string `yaml:"server,omitempty"`
|
||
|
TLSSan []string `yaml:"tls-san,omitempty"`
|
||
|
}
|