Skip to content

Commit

Permalink
Update PSE command documentation (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdavid authored Mar 23, 2023
1 parent 9ae5ec7 commit 64630b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions cmd/cluster/network/endpoint/create_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import (

var createEndpointCmd = &cobra.Command{
Use: "create",
Short: "Create a new endpoint",
Long: `Create a new endpoint`,
Short: "Create a new network endpoint for a cluster",
Long: `Create a new network endpoint for a cluster`,
Run: func(cmd *cobra.Command, args []string) {
authApi, err := ybmAuthClient.NewAuthApiClient()
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions cmd/cluster/network/endpoint/delete_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (

var deleteEndpointCmd = &cobra.Command{
Use: "delete",
Short: "Delete a private service endpoint",
Long: `Delete a private service endpoint.`,
Short: "Delete a network endpoint for a cluster",
Long: `Delete a network endpoint for a cluster`,
Run: func(cmd *cobra.Command, args []string) {
authApi, err := ybmAuthClient.NewAuthApiClient()
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions cmd/cluster/network/endpoint/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (

var EndpointCmd = &cobra.Command{
Use: "endpoint",
Short: "Manage endpoints for a cluster",
Long: "Manage endpoints for a cluster",
Short: "Manage network endpoints for a cluster",
Long: "Manage network endpoints for a cluster",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/cluster/network/endpoint/list_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (

var listEndpointCmd = &cobra.Command{
Use: "list",
Short: "List endpoints for a cluster",
Long: "List endpoints for a cluster",
Short: "List network endpoints for a cluster",
Long: "List network endpoints for a cluster",
Run: func(cmd *cobra.Command, args []string) {
authApi, err := ybmAuthClient.NewAuthApiClient()
if err != nil {
Expand Down

0 comments on commit 64630b1

Please sign in to comment.