2022-12-08 13:05:19 -03:00

37 lines
917 B
Go

// Copyright (c) 2020 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package cmd
import (
"os"
"github.com/spf13/cobra"
common_grpc "github.com/gitpod-io/gitpod/common-go/grpc"
"github.com/gitpod-io/gitpod/common-go/log"
"github.com/gitpod-io/gitpod/supervisor/pkg/supervisor"
)
var runOpts struct {
RunGP bool
}
var runCmd = &cobra.Command{
Use: "run",
Short: "starts the supervisor",
Run: func(cmd *cobra.Command, args []string) {
log.Init(ServiceName, Version, true, os.Getenv("SUPERVISOR_DEBUG_ENABLE") == "true")
common_grpc.SetupLogging()
supervisor.Version = Version
supervisor.Run(supervisor.WithRunGP(runOpts.RunGP))
},
}
func init() {
rootCmd.AddCommand(runCmd)
runCmd.Flags().BoolVar(&runOpts.RunGP, "rungp", false, "run supervisor in a run-gp context")
}