Skip to content

Commit

Permalink
kapp app-group description update (#244)
Browse files Browse the repository at this point in the history
Co-authored-by: Yash Sethiya <yaethiya@ysethiya-a01.vmware.com>
  • Loading branch information
sethiyash and Yash Sethiya authored Jul 9, 2021
1 parent df3ca9a commit 7f1de75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkg/kapp/cmd/appgroup/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ func NewCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "app-group",
Aliases: []string{"ag", "appgroup"},
Short: "App group",
Short: "app-group will deploy/delete an application for each subdirectory within a directory",
Example: "$ ls my-repo\n. .. app1/ app2/ app3/\n\n$ kapp app-group deploy -g my-env --directory my-repo",
Annotations: map[string]string{
cmdcore.AppSupportHelpGroup.Key: cmdcore.AppSupportHelpGroup.Value,
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/kapp/cmd/appgroup/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewDeleteOptions(ui ui.UI, depsFactory cmdcore.DepsFactory, logger logger.L
func NewDeleteCmd(o *DeleteOptions, flagsFactory cmdcore.FlagsFactory) *cobra.Command {
cmd := &cobra.Command{
Use: "delete",
Short: "Deploy app group",
Short: "Delete app group",
RunE: func(_ *cobra.Command, _ []string) error { return o.Run() },
}
o.AppGroupFlags.Set(cmd, flagsFactory)
Expand Down

0 comments on commit 7f1de75

Please sign in to comment.