mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
74 lines
1.9 KiB
Go
74 lines
1.9 KiB
Go
// Copyright (c) 2020 TypeFox 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 (
|
|
"context"
|
|
|
|
"github.com/gitpod-io/gitpod/gpctl/pkg/util"
|
|
"github.com/gitpod-io/gitpod/image-builder/api"
|
|
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/xerrors"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/credentials"
|
|
"k8s.io/client-go/kubernetes"
|
|
)
|
|
|
|
// imagebuildsCmd represents the client command
|
|
var imagebuildsCmd = &cobra.Command{
|
|
Use: "imagebuilds",
|
|
Short: "Controls and inspects workspace Docker image builds",
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
|
|
func init() {
|
|
imagebuildsCmd.PersistentFlags().StringP("tls", "t", "", "TLS certificate when connecting to a secured gRPC endpoint")
|
|
|
|
rootCmd.AddCommand(imagebuildsCmd)
|
|
}
|
|
|
|
func getImagebuildsClient(ctx context.Context) (*grpc.ClientConn, api.ImageBuilderClient, error) {
|
|
cfg, namespace, err := getKubeconfig()
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
clientSet, err := kubernetes.NewForConfig(cfg)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
port := "20202:8080"
|
|
podName, err := util.FindAnyPodForComponent(clientSet, namespace, "image-builder")
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
readychan, errchan := util.ForwardPort(ctx, cfg, namespace, podName, port)
|
|
select {
|
|
case <-readychan:
|
|
case err := <-errchan:
|
|
return nil, nil, err
|
|
case <-ctx.Done():
|
|
return nil, nil, ctx.Err()
|
|
}
|
|
|
|
secopt := grpc.WithInsecure()
|
|
cert, _ := workspacesCmd.Flags().GetString("tls")
|
|
if cert != "" {
|
|
creds, err := credentials.NewClientTLSFromFile(cert, "")
|
|
if err != nil {
|
|
return nil, nil, xerrors.Errorf("could not load tls cert: %w", err)
|
|
}
|
|
|
|
secopt = grpc.WithTransportCredentials(creds)
|
|
}
|
|
|
|
conn, err := grpc.Dial("localhost:20202", secopt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return conn, api.NewImageBuilderClient(conn), nil
|
|
}
|