mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			309 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			309 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2014 The Kubernetes Authors All rights reserved.
 | 
						|
 | 
						|
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 cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"io"
 | 
						|
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
	"k8s.io/kubernetes/pkg/api/meta"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl"
 | 
						|
	cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl/resource"
 | 
						|
	"k8s.io/kubernetes/pkg/runtime"
 | 
						|
	"k8s.io/kubernetes/pkg/watch"
 | 
						|
)
 | 
						|
 | 
						|
// GetOptions is the start of the data required to perform the operation.  As new fields are added, add them here instead of
 | 
						|
// referencing the cmd.Flags()
 | 
						|
type GetOptions struct {
 | 
						|
	Filenames []string
 | 
						|
}
 | 
						|
 | 
						|
const (
 | 
						|
	get_long = `Display one or many resources.
 | 
						|
 | 
						|
Possible resource types include (case insensitive): pods (po), services (svc),
 | 
						|
replicationcontrollers (rc), nodes (no), events (ev), componentstatuses (cs),
 | 
						|
limitranges (limits), persistentvolumes (pv), persistentvolumeclaims (pvc),
 | 
						|
resourcequotas (quota), namespaces (ns), endpoints (ep),
 | 
						|
horizontalpodautoscalers (hpa), serviceaccounts or secrets.
 | 
						|
 | 
						|
By specifying the output as 'template' and providing a Go template as the value
 | 
						|
of the --template flag, you can filter the attributes of the fetched resource(s).`
 | 
						|
	get_example = `# List all pods in ps output format.
 | 
						|
kubectl get pods
 | 
						|
 | 
						|
# List all pods in ps output format with more information (such as node name).
 | 
						|
kubectl get pods -o wide
 | 
						|
 | 
						|
# List a single replication controller with specified NAME in ps output format.
 | 
						|
kubectl get replicationcontroller web
 | 
						|
 | 
						|
# List a single pod in JSON output format.
 | 
						|
kubectl get -o json pod web-pod-13je7
 | 
						|
 | 
						|
# List a pod identified by type and name specified in "pod.yaml" in JSON output format.
 | 
						|
kubectl get -f pod.yaml -o json
 | 
						|
 | 
						|
# Return only the phase value of the specified pod.
 | 
						|
kubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}
 | 
						|
 | 
						|
# List all replication controllers and services together in ps output format.
 | 
						|
kubectl get rc,services
 | 
						|
 | 
						|
# List one or more resources by their type and names.
 | 
						|
kubectl get rc/web service/frontend pods/web-pod-13je7`
 | 
						|
)
 | 
						|
 | 
						|
// NewCmdGet creates a command object for the generic "get" action, which
 | 
						|
// retrieves one or more resources from a server.
 | 
						|
func NewCmdGet(f *cmdutil.Factory, out io.Writer) *cobra.Command {
 | 
						|
	options := &GetOptions{}
 | 
						|
 | 
						|
	// retrieve a list of handled resources from printer as valid args
 | 
						|
	validArgs := []string{}
 | 
						|
	p, err := f.Printer(nil, false, false, false, false, false, false, []string{})
 | 
						|
	cmdutil.CheckErr(err)
 | 
						|
	if p != nil {
 | 
						|
		validArgs = p.HandledResources()
 | 
						|
	}
 | 
						|
 | 
						|
	cmd := &cobra.Command{
 | 
						|
		Use:     "get [(-o|--output=)json|yaml|wide|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=...] (TYPE [NAME | -l label] | TYPE/NAME ...) [flags]",
 | 
						|
		Short:   "Display one or many resources",
 | 
						|
		Long:    get_long,
 | 
						|
		Example: get_example,
 | 
						|
		Run: func(cmd *cobra.Command, args []string) {
 | 
						|
			err := RunGet(f, out, cmd, args, options)
 | 
						|
			cmdutil.CheckErr(err)
 | 
						|
		},
 | 
						|
		ValidArgs: validArgs,
 | 
						|
	}
 | 
						|
	cmdutil.AddPrinterFlags(cmd)
 | 
						|
	cmd.Flags().StringP("selector", "l", "", "Selector (label query) to filter on")
 | 
						|
	cmd.Flags().BoolP("watch", "w", false, "After listing/getting the requested object, watch for changes.")
 | 
						|
	cmd.Flags().Bool("watch-only", false, "Watch for changes to the requested object(s), without listing/getting first.")
 | 
						|
	cmd.Flags().Bool("all-namespaces", false, "If present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace.")
 | 
						|
	cmd.Flags().StringSliceP("label-columns", "L", []string{}, "Accepts a comma separated list of labels that are going to be presented as columns. Names are case-sensitive. You can also use multiple flag statements like -L label1 -L label2...")
 | 
						|
	cmd.Flags().Bool("export", false, "If true, use 'export' for the resources.  Exported resources are stripped of cluster-specific information.")
 | 
						|
	usage := "Filename, directory, or URL to a file identifying the resource to get from a server."
 | 
						|
	kubectl.AddJsonFilenameFlag(cmd, &options.Filenames, usage)
 | 
						|
	return cmd
 | 
						|
}
 | 
						|
 | 
						|
// RunGet implements the generic Get command
 | 
						|
// TODO: convert all direct flag accessors to a struct and pass that instead of cmd
 | 
						|
func RunGet(f *cmdutil.Factory, out io.Writer, cmd *cobra.Command, args []string, options *GetOptions) error {
 | 
						|
	selector := cmdutil.GetFlagString(cmd, "selector")
 | 
						|
	allNamespaces := cmdutil.GetFlagBool(cmd, "all-namespaces")
 | 
						|
	mapper, typer := f.Object()
 | 
						|
 | 
						|
	cmdNamespace, enforceNamespace, err := f.DefaultNamespace()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	if allNamespaces {
 | 
						|
		enforceNamespace = false
 | 
						|
	}
 | 
						|
 | 
						|
	if len(args) == 0 && len(options.Filenames) == 0 {
 | 
						|
		fmt.Fprint(out, "You must specify the type of resource to get. ", valid_resources)
 | 
						|
		return cmdutil.UsageError(cmd, "Required resource not specified.")
 | 
						|
	}
 | 
						|
 | 
						|
	// always show resources when getting by name or filename
 | 
						|
	argsHasNames, err := resource.HasNames(args)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	if len(options.Filenames) > 0 || argsHasNames {
 | 
						|
		cmd.Flag("show-all").Value.Set("true")
 | 
						|
	}
 | 
						|
	export := cmdutil.GetFlagBool(cmd, "export")
 | 
						|
 | 
						|
	// handle watch separately since we cannot watch multiple resource types
 | 
						|
	isWatch, isWatchOnly := cmdutil.GetFlagBool(cmd, "watch"), cmdutil.GetFlagBool(cmd, "watch-only")
 | 
						|
	if isWatch || isWatchOnly {
 | 
						|
		r := resource.NewBuilder(mapper, typer, resource.ClientMapperFunc(f.ClientForMapping), f.Decoder(true)).
 | 
						|
			NamespaceParam(cmdNamespace).DefaultNamespace().AllNamespaces(allNamespaces).
 | 
						|
			FilenameParam(enforceNamespace, options.Filenames...).
 | 
						|
			SelectorParam(selector).
 | 
						|
			ExportParam(export).
 | 
						|
			ResourceTypeOrNameArgs(true, args...).
 | 
						|
			SingleResourceType().
 | 
						|
			Latest().
 | 
						|
			Do()
 | 
						|
		err := r.Err()
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		infos, err := r.Infos()
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		if len(infos) != 1 {
 | 
						|
			return fmt.Errorf("watch is only supported on individual resources and resource collections - %d resources were found", len(infos))
 | 
						|
		}
 | 
						|
		info := infos[0]
 | 
						|
		mapping := info.ResourceMapping()
 | 
						|
		printer, err := f.PrinterForMapping(cmd, mapping, allNamespaces)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		obj, err := r.Object()
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		rv, err := mapping.MetadataAccessor.ResourceVersion(obj)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		// print the current object
 | 
						|
		if !isWatchOnly {
 | 
						|
			if err := printer.PrintObj(obj, out); err != nil {
 | 
						|
				return fmt.Errorf("unable to output the provided object: %v", err)
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		// print watched changes
 | 
						|
		w, err := r.Watch(rv)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		kubectl.WatchLoop(w, func(e watch.Event) error {
 | 
						|
			return printer.PrintObj(e.Object, out)
 | 
						|
		})
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	b := resource.NewBuilder(mapper, typer, resource.ClientMapperFunc(f.ClientForMapping), f.Decoder(true)).
 | 
						|
		NamespaceParam(cmdNamespace).DefaultNamespace().AllNamespaces(allNamespaces).
 | 
						|
		FilenameParam(enforceNamespace, options.Filenames...).
 | 
						|
		SelectorParam(selector).
 | 
						|
		ExportParam(export).
 | 
						|
		ResourceTypeOrNameArgs(true, args...).
 | 
						|
		ContinueOnError().
 | 
						|
		Latest()
 | 
						|
	printer, generic, err := cmdutil.PrinterForCommand(cmd)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	if generic {
 | 
						|
		clientConfig, err := f.ClientConfig()
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		singular := false
 | 
						|
		r := b.Flatten().Do()
 | 
						|
		infos, err := r.IntoSingular(&singular).Infos()
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		// the outermost object will be converted to the output-version, but inner
 | 
						|
		// objects can use their mappings
 | 
						|
		version, err := cmdutil.OutputVersion(cmd, clientConfig.GroupVersion)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		obj, err := resource.AsVersionedObject(infos, !singular, version.String(), f.JSONEncoder())
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		return printer.PrintObj(obj, out)
 | 
						|
	}
 | 
						|
 | 
						|
	infos, err := b.Flatten().Do().Infos()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	objs := make([]runtime.Object, len(infos))
 | 
						|
	for ix := range infos {
 | 
						|
		objs[ix] = infos[ix].Object
 | 
						|
	}
 | 
						|
 | 
						|
	sorting, err := cmd.Flags().GetString("sort-by")
 | 
						|
	var sorter *kubectl.RuntimeSort
 | 
						|
	if err == nil && len(sorting) > 0 && len(objs) > 1 {
 | 
						|
		clientConfig, err := f.ClientConfig()
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		version, err := cmdutil.OutputVersion(cmd, clientConfig.GroupVersion)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		for ix := range infos {
 | 
						|
			objs[ix], err = infos[ix].Mapping.ConvertToVersion(infos[ix].Object, version.String())
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		// TODO: questionable
 | 
						|
		if sorter, err = kubectl.SortObjects(f.Decoder(true), objs, sorting); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// use the default printer for each object
 | 
						|
	printer = nil
 | 
						|
	var lastMapping *meta.RESTMapping
 | 
						|
	w := kubectl.GetNewTabWriter(out)
 | 
						|
	defer w.Flush()
 | 
						|
 | 
						|
	for ix := range objs {
 | 
						|
		var mapping *meta.RESTMapping
 | 
						|
		var original runtime.Object
 | 
						|
		if sorter != nil {
 | 
						|
			mapping = infos[sorter.OriginalPosition(ix)].Mapping
 | 
						|
			original = infos[sorter.OriginalPosition(ix)].Object
 | 
						|
		} else {
 | 
						|
			mapping = infos[ix].Mapping
 | 
						|
			original = infos[ix].Object
 | 
						|
		}
 | 
						|
		if printer == nil || lastMapping == nil || mapping == nil || mapping.Resource != lastMapping.Resource {
 | 
						|
			printer, err = f.PrinterForMapping(cmd, mapping, allNamespaces)
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			lastMapping = mapping
 | 
						|
		}
 | 
						|
		if _, found := printer.(*kubectl.HumanReadablePrinter); found {
 | 
						|
			if err := printer.PrintObj(original, w); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		if err := printer.PrintObj(original, w); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |