Add machine readable output (-o flag) to kn source apiserver describe (#1146)

Signed-off-by: Arghya Sadhu <arghya88@gmail.com>
This commit is contained in:
Arghya Sadhu 2020-11-26 22:01:35 +05:30 committed by GitHub
parent 2941816951
commit b8bce53452
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 65 additions and 14 deletions

View File

@ -17,6 +17,10 @@
|===
| | Description | PR
| 🐛
| Add machine readable output (-o flag) to kn source apiserver describe
| https://github.com/knative/client/pull/1146[#1146]
| 🐛
| Fix a race condition when using Kubernetes watches
| https://github.com/knative/client/pull/1113[#1113]

View File

@ -14,15 +14,21 @@ kn source apiserver describe NAME
```
# Describe an ApiServer source with name 'k8sevents'
# Describe an api-server source with name 'k8sevents'
kn source apiserver describe k8sevents
# Describe an api-server source with name 'k8sevents' in YAML format
kn source apiserver describe k8sevents -o yaml
```
### Options
```
--allow-missing-template-keys If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to golang and jsonpath output formats. (default true)
-h, --help help for describe
-n, --namespace string Specify the namespace to operate in.
-o, --output string Output format. One of: json|yaml|name|go-template|go-template-file|template|templatefile|jsonpath|jsonpath-file.
--template string Template string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
-v, --verbose More output.
```

View File

@ -18,8 +18,10 @@ import (
"errors"
"fmt"
"sort"
"strings"
"github.com/spf13/cobra"
"k8s.io/cli-runtime/pkg/genericclioptions"
v1alpha2 "knative.dev/eventing/pkg/apis/sources/v1alpha2"
"knative.dev/client/lib/printing"
@ -27,14 +29,23 @@ import (
"knative.dev/client/pkg/printers"
)
var describeExample = `
# Describe an api-server source with name 'k8sevents'
kn source apiserver describe k8sevents
# Describe an api-server source with name 'k8sevents' in YAML format
kn source apiserver describe k8sevents -o yaml`
// NewAPIServerDescribeCommand to describe an ApiServer source object
func NewAPIServerDescribeCommand(p *commands.KnParams) *cobra.Command {
apiServerDescribe := &cobra.Command{
// For machine readable output
machineReadablePrintFlags := genericclioptions.NewPrintFlags("")
command := &cobra.Command{
Use: "describe NAME",
Short: "Show details of an api-server source",
Example: `
# Describe an ApiServer source with name 'k8sevents'
kn source apiserver describe k8sevents`,
Example: describeExample,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 1 {
return errors.New("'kn source apiserver describe' requires name of the source as single argument")
@ -52,6 +63,15 @@ func NewAPIServerDescribeCommand(p *commands.KnParams) *cobra.Command {
}
out := cmd.OutOrStdout()
// Print out machine readable output if requested
if machineReadablePrintFlags.OutputFlagSpecified() {
printer, err := machineReadablePrintFlags.ToPrinter()
if err != nil {
return err
}
return printer.PrintObj(apiSource, out)
}
dw := printers.NewPrefixWriter(out)
printDetails, err := cmd.Flags().GetBool("verbose")
@ -90,11 +110,12 @@ func NewAPIServerDescribeCommand(p *commands.KnParams) *cobra.Command {
return nil
},
}
flags := apiServerDescribe.Flags()
flags := command.Flags()
commands.AddNamespaceFlags(flags, false)
flags.BoolP("verbose", "v", false, "More output.")
return apiServerDescribe
machineReadablePrintFlags.AddFlags(command)
command.Flag("output").Usage = fmt.Sprintf("Output format. One of: %s.", strings.Join(machineReadablePrintFlags.AllowedFormats(), "|"))
return command
}
func writeResources(dw printers.PrefixWriter, apiVersionKindSelectors []v1alpha2.APIVersionKindSelector) {

View File

@ -50,6 +50,23 @@ func TestSimpleDescribe(t *testing.T) {
apiServerRecorder.Validate()
}
func TestDescribeMachineReadable(t *testing.T) {
apiServerClient := v1alpha2.NewMockKnAPIServerSourceClient(t, "mynamespace")
apiServerRecorder := apiServerClient.Recorder()
sampleSource := createAPIServerSource("testsource", "Event", "v1", "testsa", "Reference", map[string]string{"foo": "bar"}, createSinkv1("testsvc", "default"))
sampleSource.APIVersion = "sources.knative.dev/v1"
sampleSource.Kind = "ApiServerSource"
sampleSource.Namespace = "mynamespace"
apiServerRecorder.GetAPIServerSource("testsource", sampleSource, nil)
out, err := executeAPIServerSourceCommand(apiServerClient, nil, "describe", "testsource", "-o", "yaml")
assert.NilError(t, err)
assert.Assert(t, util.ContainsAll(out, "kind: ApiServerSource", "spec:", "status:", "metadata:"))
apiServerRecorder.Validate()
}
func TestDescribeError(t *testing.T) {
apiServerClient := v1alpha2.NewMockKnAPIServerSourceClient(t, "mynamespace")

View File

@ -74,7 +74,10 @@ func (c *apiServerSourcesClient) GetAPIServerSource(name string) (*v1alpha2.ApiS
if err != nil {
return nil, knerrors.GetError(err)
}
err = updateSourceGVK(apiSource)
if err != nil {
return nil, err
}
return apiSource, nil
}