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