mirror of https://github.com/kubernetes/kops.git
226 lines
5.3 KiB
Go
226 lines
5.3 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/kops/cmd/kops/util"
|
|
api "k8s.io/kops/pkg/apis/kops"
|
|
"k8s.io/kops/pkg/kopscodecs"
|
|
"k8s.io/kubectl/pkg/util/i18n"
|
|
"k8s.io/kubectl/pkg/util/templates"
|
|
)
|
|
|
|
var (
|
|
getLong = templates.LongDesc(i18n.T(`
|
|
Display one or many resources.` + validResources))
|
|
|
|
getExample = templates.Examples(i18n.T(`
|
|
# Get all clusters in a state store
|
|
kops get clusters
|
|
|
|
# Get a cluster and its instancegroups
|
|
kops get k8s-cluster.example.com
|
|
|
|
# Get a cluster and its instancegroups' YAML desired configuration
|
|
kops get k8s-cluster.example.com -o yaml
|
|
|
|
# Save a cluster and its instancegroups' desired configuration to YAML file
|
|
kops get k8s-cluster.example.com -o yaml > cluster-desired-config.yaml
|
|
|
|
# Get a secret
|
|
kops get secrets kube -oplaintext
|
|
|
|
# Get the admin password for a cluster
|
|
kops get secrets admin -oplaintext`))
|
|
|
|
getShort = i18n.T(`Get one or many resources.`)
|
|
)
|
|
|
|
type GetOptions struct {
|
|
output string
|
|
clusterName string
|
|
}
|
|
|
|
const (
|
|
OutputYaml = "yaml"
|
|
OutputTable = "table"
|
|
OutputJSON = "json"
|
|
)
|
|
|
|
func NewCmdGet(f *util.Factory, out io.Writer) *cobra.Command {
|
|
options := &GetOptions{
|
|
output: OutputTable,
|
|
}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "get",
|
|
SuggestFor: []string{"list"},
|
|
Short: getShort,
|
|
Long: getLong,
|
|
Example: getExample,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := context.TODO()
|
|
|
|
if len(args) != 0 {
|
|
options.clusterName = args[0]
|
|
}
|
|
|
|
if rootCommand.clusterName != "" {
|
|
if len(args) != 0 {
|
|
exitWithError(fmt.Errorf("cannot mix --name for cluster with positional arguments"))
|
|
}
|
|
|
|
options.clusterName = rootCommand.clusterName
|
|
}
|
|
|
|
err := RunGet(ctx, &rootCommand, os.Stdout, options)
|
|
if err != nil {
|
|
exitWithError(err)
|
|
}
|
|
},
|
|
}
|
|
|
|
cmd.PersistentFlags().StringVarP(&options.output, "output", "o", options.output, "output format. One of: table, yaml, json")
|
|
|
|
// create subcommands
|
|
cmd.AddCommand(NewCmdGetCluster(f, out, options))
|
|
cmd.AddCommand(NewCmdGetInstanceGroups(f, out, options))
|
|
cmd.AddCommand(NewCmdGetSecrets(f, out, options))
|
|
|
|
return cmd
|
|
}
|
|
|
|
func RunGet(ctx context.Context, f Factory, out io.Writer, options *GetOptions) error {
|
|
|
|
client, err := f.Clientset()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cluster, err := client.GetCluster(ctx, options.clusterName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if cluster == nil {
|
|
return fmt.Errorf("No cluster found")
|
|
}
|
|
|
|
igList, err := client.InstanceGroupsFor(cluster).List(ctx, metav1.ListOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if igList == nil || igList.Items == nil || len(igList.Items) == 0 {
|
|
fmt.Fprintf(os.Stderr, "No instance groups found\n")
|
|
}
|
|
|
|
var instancegroups []*api.InstanceGroup
|
|
for i := range igList.Items {
|
|
instancegroups = append(instancegroups, &igList.Items[i])
|
|
}
|
|
|
|
var obj []runtime.Object
|
|
if options.output != OutputTable {
|
|
obj = append(obj, cluster)
|
|
for _, group := range instancegroups {
|
|
obj = append(obj, group)
|
|
}
|
|
}
|
|
|
|
switch options.output {
|
|
case OutputYaml:
|
|
if err := fullOutputYAML(out, obj...); err != nil {
|
|
return fmt.Errorf("error writing cluster yaml to stdout: %v", err)
|
|
}
|
|
|
|
return nil
|
|
|
|
case OutputJSON:
|
|
if err := fullOutputJSON(out, obj...); err != nil {
|
|
return fmt.Errorf("error writing cluster json to stdout: %v", err)
|
|
}
|
|
return nil
|
|
|
|
case OutputTable:
|
|
fmt.Fprintf(os.Stdout, "Cluster\n")
|
|
err = clusterOutputTable([]*api.Cluster{cluster}, out)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintf(os.Stdout, "\nInstance Groups\n")
|
|
err = igOutputTable(cluster, instancegroups, out)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
default:
|
|
return fmt.Errorf("Unknown output format: %q", options.output)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func writeYAMLSep(out io.Writer) error {
|
|
_, err := out.Write([]byte("\n---\n\n"))
|
|
if err != nil {
|
|
return fmt.Errorf("error writing to stdout: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type marshalFunc func(obj runtime.Object) ([]byte, error)
|
|
|
|
func marshalToWriter(obj runtime.Object, marshal marshalFunc, w io.Writer) error {
|
|
b, err := marshal(obj)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = w.Write(b)
|
|
if err != nil {
|
|
return fmt.Errorf("error writing to stdout: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// obj must be a pointer to a marshalable object
|
|
func marshalYaml(obj runtime.Object) ([]byte, error) {
|
|
y, err := kopscodecs.ToVersionedYaml(obj)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error marshaling yaml: %v", err)
|
|
}
|
|
return y, nil
|
|
}
|
|
|
|
// obj must be a pointer to a marshalable object
|
|
func marshalJSON(obj runtime.Object) ([]byte, error) {
|
|
j, err := kopscodecs.ToVersionedJSON(obj)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error marshaling json: %v", err)
|
|
}
|
|
return j, nil
|
|
}
|