k3s/pkg/server/types.go

15 lines
281 B
Go
Raw Normal View History

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