k3s/pkg/server/types.go

14 lines
269 B
Go
Raw Normal View History

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