Skip to content

Commit 2fb289c

Browse files
allmightyspiffGitHub Enterprise
authored andcommitted
Merge pull request #763 from Ramkishor-Chaladi/issue_761
Description was missing in sl loadbal health-edit, sl loadbal l7pool-add
2 parents ac655e3 + d4fa98d commit 2fb289c

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

plugin/commands/loadbal/health.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ func NewHealthChecksCommand(sl *metadata.SoftlayerCommand) *HealthChecksCommand
3232
}
3333
cobraCmd := &cobra.Command{
3434
Use: "health-edit " + T("IDENTIFIER"),
35-
Short: T("Edit load balancer health check"),
36-
Long: T("${COMMAND_NAME} sl loadbal health-edit (--lb-id LOADBAL_ID) (--health-uuid HEALTH_CHECK_UUID) [-i, --interval INTERVAL] [-r, --retry RETRY] [-t, --timeout TIMEOUT] [-u, --url URL]"),
35+
Short: T("Manage LBaaS health checks."),
3736
Args: metadata.OneArgs,
3837
RunE: func(cmd *cobra.Command, args []string) error {
3938
return thisCmd.Run(args)

plugin/commands/loadbal/l7pool_add.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func NewL7PoolAddCommand(sl *metadata.SoftlayerCommand) *L7PoolAddCommand {
3838
cobraCmd := &cobra.Command{
3939
Use: "l7pool-add",
4040
Short: T("Add a new L7 pool"),
41-
Long: T("${COMMAND_NAME} sl loadbal l7pool-add (--id LOADBAL_ID) (-n, --name NAME) [-m, --method METHOD] [-s, --server BACKEND_IP:PORT] [-p, --protocol PROTOCOL] [--health-path PATH] [--health-interval INTERVAL] [--health-retry RETRY] [--health-timeout TIMEOUT] [--sticky cookie | source-ip]"),
41+
Long: T("-s is in colon deliminated format to make grouping IP:port:weight a bit easier."),
4242
Args: metadata.NoArgs,
4343
RunE: func(cmd *cobra.Command, args []string) error {
4444
return thisCmd.Run(args)

0 commit comments

Comments
 (0)