This is an automated email from the ASF dual-hosted git repository.

astefanutti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new f3730bb  feat(cli): support k8s api shortnames for kit & platform with 
kamel describe
f3730bb is described below

commit f3730bbd58c6d46ff32e3dbfea58d91dc4a89943
Author: Tadayoshi Sato <sato.tadayo...@gmail.com>
AuthorDate: Wed Jun 2 14:50:33 2021 +0900

    feat(cli): support k8s api shortnames for kit & platform with kamel describe
---
 pkg/cmd/describe_kit.go      | 1 +
 pkg/cmd/describe_platform.go | 1 +
 2 files changed, 2 insertions(+)

diff --git a/pkg/cmd/describe_kit.go b/pkg/cmd/describe_kit.go
index 73dea2b..cb20895 100644
--- a/pkg/cmd/describe_kit.go
+++ b/pkg/cmd/describe_kit.go
@@ -37,6 +37,7 @@ func newDescribeKitCmd(rootCmdOptions *RootCmdOptions) 
(*cobra.Command, *describ
 
        cmd := cobra.Command{
                Use:     "kit",
+               Aliases: []string{"ik"},
                Short:   "Describe an Integration Kit",
                Long:    `Describe an Integration Kit.`,
                PreRunE: decode(&options),
diff --git a/pkg/cmd/describe_platform.go b/pkg/cmd/describe_platform.go
index 151ac1d..4c65c72 100644
--- a/pkg/cmd/describe_platform.go
+++ b/pkg/cmd/describe_platform.go
@@ -37,6 +37,7 @@ func newDescribePlatformCmd(rootCmdOptions *RootCmdOptions) 
(*cobra.Command, *de
 
        cmd := cobra.Command{
                Use:     "platform",
+               Aliases: []string{"ip"},
                Short:   "Describe an Integration Platform",
                Long:    `Describe an Integration Platform.`,
                PreRunE: decode(&options),

Reply via email to