Skip to content

Commit 994a045

Browse files
committed
improve help
1 parent 6a02408 commit 994a045

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

cmd/kuberoCli/appLogs.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ import (
1212
var logsAppCmd = &cobra.Command{
1313
Use: "logs",
1414
Aliases: []string{"d"},
15-
Short: "Deletes an app from the cluster",
16-
Long: `Use the app subcommand to undeploy your apps from the cluster`,
15+
Short: "Load logs for an app",
16+
Long: `Load logs for an app in a specific stage of a pipeline`,
17+
Example: `kubero app logs -p my-pipeline -s stage -a my-app`,
1718
Run: func(cmd *cobra.Command, args []string) {
1819
getAppLogHistory()
1920
},

cmd/kuberoCli/appUp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
// appCmd represents the app command
1515
var upAppCmd = &cobra.Command{
1616
Use: "iac:up",
17-
Short: "Deploy an apps to the cluster",
17+
Short: "Deploy an app to the cluster",
1818
Long: `Use the app subcommand to deploy your apps to the cluster`,
1919
Run: func(cmd *cobra.Command, args []string) {
2020

0 commit comments

Comments
 (0)