mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 15:59:28 +00:00
17 lines
296 B
Go
17 lines
296 B
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/rancher/k3s/pkg/daemons/config"
|
|
)
|
|
|
|
type Config struct {
|
|
DisableAgent bool
|
|
DisableServiceLB bool
|
|
ControlConfig config.Control
|
|
Rootless bool
|
|
SupervisorPort int
|
|
StartupHooks []func(context.Context, config.Control) error
|
|
}
|