2014-10-06 01:24:19 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. 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 (
|
2014-11-01 22:44:03 +00:00
|
|
|
"fmt"
|
2014-10-06 01:24:19 +00:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubectl"
|
2014-12-28 04:49:51 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubectl/resource"
|
2014-10-27 19:56:34 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
2014-12-28 04:49:51 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
|
2014-11-18 18:04:10 +00:00
|
|
|
|
2014-10-06 01:24:19 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2014-10-27 19:56:34 +00:00
|
|
|
func (f *Factory) NewCmdGet(out io.Writer) *cobra.Command {
|
2014-10-06 01:24:19 +00:00
|
|
|
cmd := &cobra.Command{
|
2014-10-30 02:32:25 +00:00
|
|
|
Use: "get [(-o|--output=)json|yaml|...] <resource> [<id>]",
|
2014-10-06 01:24:19 +00:00
|
|
|
Short: "Display one or many resources",
|
|
|
|
Long: `Display one or many resources.
|
|
|
|
|
|
|
|
Possible resources include pods (po), replication controllers (rc), services
|
2014-11-04 02:02:27 +00:00
|
|
|
(se), minions (mi), or events (ev).
|
2014-10-06 01:24:19 +00:00
|
|
|
|
2014-11-01 22:44:03 +00:00
|
|
|
If you specify a Go template, you can use any fields defined for the API version
|
|
|
|
you are connecting to the server with.
|
2014-10-06 01:24:19 +00:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
$ kubectl get pods
|
|
|
|
<list all pods in ps output format>
|
|
|
|
|
|
|
|
$ kubectl get replicationController 1234-56-7890-234234-456456
|
2014-10-21 19:30:43 +00:00
|
|
|
<list single replication controller in ps output format>
|
2014-10-06 01:24:19 +00:00
|
|
|
|
2014-11-22 01:55:48 +00:00
|
|
|
$ kubectl get -o json pod 1234-56-7890-234234-456456
|
2014-10-06 01:24:19 +00:00
|
|
|
<list single pod in json output format>`,
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2014-10-27 19:56:34 +00:00
|
|
|
mapping, namespace, name := ResourceOrTypeFromArgs(cmd, args, f.Mapper)
|
|
|
|
|
2014-11-10 17:09:32 +00:00
|
|
|
selector := GetFlagString(cmd, "selector")
|
2014-11-12 01:31:13 +00:00
|
|
|
labelSelector, err := labels.ParseSelector(selector)
|
2014-10-27 19:56:34 +00:00
|
|
|
checkErr(err)
|
|
|
|
|
2014-12-28 05:27:52 +00:00
|
|
|
client, err := f.RESTClient(cmd, mapping)
|
2014-10-27 19:56:34 +00:00
|
|
|
checkErr(err)
|
|
|
|
|
2014-11-10 17:09:32 +00:00
|
|
|
outputFormat := GetFlagString(cmd, "output")
|
|
|
|
templateFile := GetFlagString(cmd, "template")
|
|
|
|
defaultPrinter, err := f.Printer(cmd, mapping, GetFlagBool(cmd, "no-headers"))
|
2014-10-27 19:56:34 +00:00
|
|
|
checkErr(err)
|
|
|
|
|
2014-11-12 00:15:22 +00:00
|
|
|
outputVersion := GetFlagString(cmd, "output-version")
|
|
|
|
if len(outputVersion) == 0 {
|
|
|
|
outputVersion = mapping.APIVersion
|
|
|
|
}
|
2014-11-18 18:04:10 +00:00
|
|
|
|
|
|
|
printer, err := kubectl.GetPrinter(outputFormat, templateFile, outputVersion, mapping.ObjectConvertor, defaultPrinter)
|
2014-11-01 22:44:03 +00:00
|
|
|
checkErr(err)
|
|
|
|
|
2014-12-28 04:49:51 +00:00
|
|
|
restHelper := resource.NewHelper(client, mapping)
|
|
|
|
var obj runtime.Object
|
|
|
|
if len(name) == 0 {
|
|
|
|
obj, err = restHelper.List(namespace, labelSelector)
|
|
|
|
} else {
|
|
|
|
obj, err = restHelper.Get(namespace, name)
|
|
|
|
}
|
2014-10-06 01:24:19 +00:00
|
|
|
checkErr(err)
|
2014-11-01 22:44:03 +00:00
|
|
|
|
2014-11-18 18:04:10 +00:00
|
|
|
isWatch, isWatchOnly := GetFlagBool(cmd, "watch"), GetFlagBool(cmd, "watch-only")
|
|
|
|
|
|
|
|
// print the current object
|
|
|
|
if !isWatchOnly {
|
2014-11-14 01:02:36 +00:00
|
|
|
if err := printer.PrintObj(obj, out); err != nil {
|
2014-11-20 10:00:36 +00:00
|
|
|
checkErr(fmt.Errorf("unable to output the provided object: %v", err))
|
2014-11-14 01:02:36 +00:00
|
|
|
}
|
2014-11-01 22:44:03 +00:00
|
|
|
}
|
2014-11-12 01:31:13 +00:00
|
|
|
|
2014-11-18 18:04:10 +00:00
|
|
|
// print watched changes
|
|
|
|
if isWatch || isWatchOnly {
|
|
|
|
rv, err := mapping.MetadataAccessor.ResourceVersion(obj)
|
2014-11-12 01:31:13 +00:00
|
|
|
checkErr(err)
|
|
|
|
|
2014-11-18 18:04:10 +00:00
|
|
|
w, err := restHelper.Watch(namespace, rv, labelSelector, labels.Everything())
|
2014-11-12 01:31:13 +00:00
|
|
|
checkErr(err)
|
|
|
|
|
|
|
|
kubectl.WatchLoop(w, printer, out)
|
|
|
|
}
|
2014-10-06 01:24:19 +00:00
|
|
|
},
|
|
|
|
}
|
2014-10-30 02:32:25 +00:00
|
|
|
cmd.Flags().StringP("output", "o", "", "Output format: json|yaml|template|templatefile")
|
2014-11-02 14:21:50 +00:00
|
|
|
cmd.Flags().String("output-version", "", "Output the formatted object with the given version (default api-version)")
|
2014-10-30 02:32:25 +00:00
|
|
|
cmd.Flags().Bool("no-headers", false, "When using the default output, don't print headers")
|
|
|
|
cmd.Flags().StringP("template", "t", "", "Template string or path to template file to use when --output=template or --output=templatefile")
|
2014-10-06 01:24:19 +00:00
|
|
|
cmd.Flags().StringP("selector", "l", "", "Selector (label query) to filter on")
|
2014-11-12 01:31:13 +00:00
|
|
|
cmd.Flags().BoolP("watch", "w", false, "After listing/getting the requested object, watch for changes.")
|
2014-11-14 01:02:36 +00:00
|
|
|
cmd.Flags().Bool("watch-only", false, "Watch for changes to the requseted object(s), without listing/getting first.")
|
2014-10-06 01:24:19 +00:00
|
|
|
return cmd
|
|
|
|
}
|