mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 12:09:33 +00:00
14 lines
269 B
Go
14 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
|
|
}
|