Merge pull request #632 from ibuildthecloud/k3v

Add option to disable scheduler
pull/634/head
Erik Wilson 5 years ago committed by GitHub
commit aab7045bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,6 +31,7 @@ type Server struct {
StorageKeyFile string
AdvertiseIP string
AdvertisePort int
DisableScheduler bool
}
var ServerConfig Server
@ -191,6 +192,11 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
Value: 0,
Destination: &ServerConfig.AdvertisePort,
},
cli.BoolFlag{
Name: "disable-scheduler",
Usage: "Disable Kubernetes default scheduler",
Destination: &ServerConfig.DisableScheduler,
},
NodeIPFlag,
NodeNameFlag,
DockerFlag,

@ -100,6 +100,7 @@ func run(app *cli.Context, cfg *cmds.Server) error {
serverConfig.ControlConfig.DataDir = cfg.DataDir
serverConfig.ControlConfig.KubeConfigOutput = cfg.KubeConfigOutput
serverConfig.ControlConfig.KubeConfigMode = cfg.KubeConfigMode
serverConfig.ControlConfig.NoScheduler = cfg.DisableScheduler
serverConfig.Rootless = cfg.Rootless
serverConfig.TLSConfig.HTTPSPort = cfg.HTTPSPort
serverConfig.TLSConfig.HTTPPort = cfg.HTTPPort

Loading…
Cancel
Save