mirror of
https://github.com/k3s-io/k3s.git
synced 2026-03-09 09:46:08 -04:00
13 lines
269 B
Go
13 lines
269 B
Go
package server
|
|
|
|
import (
|
|
"github.com/rancher/k3s/pkg/daemons/config"
|
|
"github.com/rancher/norman/pkg/dynamiclistener"
|
|
)
|
|
|
|
type Config struct {
|
|
DisableAgent bool
|
|
DisableServiceLB bool
|
|
TLSConfig dynamiclistener.UserConfig
|
|
ControlConfig config.Control
|
|
}
|