package cmd
import (
"context"
"fmt"
"time"
"github.com/spf13/cobra"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
"github.com/gitpod-io/gitpod/common-go/log"
"github.com/gitpod-io/gitpod/supervisor/pkg/supervisor"
)
var terminalCmd = &cobra.Command{
Use: "terminal",
Short: "interacts with supervisor's terminal mux",
Hidden: true,
}
func init() {
rootCmd.AddCommand(terminalCmd)
}
func dialSupervisor() *grpc.ClientConn {
cfg, err := supervisor.GetConfig()
if err != nil {
log.WithError(err).Fatal("cannot get config")
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
url := fmt.Sprintf("localhost:%d", cfg.APIEndpointPort)
conn, err := grpc.DialContext(ctx, url, grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithBlock())
if err != nil {
log.WithError(err).Fatal("cannot connect to supervisor")
}
return conn
}