INNER CODE UNIT · Go

start

kubernetes-sigs/kueue · cmd/experimental/kueue-priority-booster/main.go:63

func start(configFile string) error {
	log := ctrl.Log.WithName("setup")

	cfg, err := boostconfig.Load(configFile)
	if err != nil {
		log.Error(err, "Unable to load the configuration")
		return err
	}

	mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
		Scheme:                 scheme,
		HealthProbeBindAddress: ":8081",
	})
	if err != nil {
		log.Error(err, "Unable to start manager")
		return err
	}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…