Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Remove 'azure' from svcat help text
Browse files Browse the repository at this point in the history
  • Loading branch information
carolynvs-msft committed Jan 18, 2018
1 parent 138681d commit 5ed7c77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/svcat/class/describe_cmd.go
Expand Up @@ -41,7 +41,7 @@ func NewDescribeCmd(cxt *command.Context) *cobra.Command {
Aliases: []string{"classes", "cl"},
Short: "Show details of a specific class",
Example: `
svcat describe class azure-mysqldb
svcat describe class mysqldb
svcat describe class -uuid 997b8372-8dac-40ac-ae65-758b4a5075a5
`,
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
2 changes: 1 addition & 1 deletion cmd/svcat/class/get_cmd.go
Expand Up @@ -39,7 +39,7 @@ func NewGetCmd(cxt *command.Context) *cobra.Command {
Short: "List classes, optionally filtered by name",
Example: `
svcat get classes
svcat get class azure-mysqldb
svcat get class mysqldb
svcat get class --uuid 997b8372-8dac-40ac-ae65-758b4a5075a5
`,
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
4 changes: 2 additions & 2 deletions cmd/svcat/instance/provision_cmd.go
Expand Up @@ -44,8 +44,8 @@ func NewProvisionCmd(cxt *command.Context) *cobra.Command {
Use: "provision NAME --plan PLAN --class CLASS",
Short: "Create a new instance of a service",
Example: `
svcat provision wordpress-mysql-instance --class azure-mysqldb --plan standard800 -p location=eastus -p sslEnforcement=disabled
svcat provision wordpress-mysql-instance --class azure-mysqldb --plan standard800 -s mysecret[dbparams]
svcat provision wordpress-mysql-instance --class mysqldb --plan free -p location=eastus -p sslEnforcement=disabled
svcat provision wordpress-mysql-instance --class mysqldb --plan free -s mysecret[dbparams]
`,
RunE: func(cmd *cobra.Command, args []string) error {
return provisionCmd.run(args)
Expand Down

0 comments on commit 5ed7c77

Please sign in to comment.