k3s/pkg/server/types.go

15 lines
281 B
Go
Raw Normal View History

2019-01-01 08:23:01 +00:00
package server
import (
2019-05-09 22:05:51 +00:00
"github.com/rancher/dynamiclistener"
2019-01-09 16:54:15 +00:00
"github.com/rancher/k3s/pkg/daemons/config"
2019-01-01 08:23:01 +00:00
)
type Config struct {
2019-02-02 05:09:11 +00:00
DisableAgent bool
DisableServiceLB bool
TLSConfig dynamiclistener.UserConfig
ControlConfig config.Control
2019-03-08 22:47:44 +00:00
Rootless bool
2019-01-01 08:23:01 +00:00
}