gitpod/dev/gpctl/cmd/clusters-list.go
2022-10-19 09:34:34 +02:00

51 lines
1.2 KiB
Go

// Copyright (c) 2021 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 (
"context"
"io"
"github.com/spf13/cobra"
"github.com/gitpod-io/gitpod/common-go/log"
"github.com/gitpod-io/gitpod/ws-manager-bridge/api"
)
// clustersListCmd represents the clustersListCmd command
var clustersListCmd = &cobra.Command{
Use: "list",
Short: "Lists all clusters",
Run: func(cmd *cobra.Command, args []string) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
conn, client, err := getClustersClient(ctx)
if err != nil {
log.WithError(err).Fatal("cannot connect")
}
defer conn.Close()
resp, err := client.List(ctx, &api.ListRequest{})
if err != nil && err != io.EOF {
log.Fatal(err)
}
tpl := `NAME APPCLUSTER URL STATIC STATE SCORE GOVERNED ADMISSION CONSTRAINTS
{{- range .Status }}
{{ .Name }} {{ .ApplicationCluster }} {{ .Url }} {{ .Static }} {{ .State }} {{ .Score }} {{ .Governed }} {{ .AdmissionConstraint -}}
{{ end }}
`
err = getOutputFormat(tpl, "{..name}").Print(resp)
if err != nil {
log.Fatal(err)
}
},
}
func init() {
clustersCmd.AddCommand(clustersListCmd)
}