mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 04:59:29 +00:00
17 lines
305 B
Go
17 lines
305 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, <-chan struct{}, string) error
|
|
}
|