Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OCM-6448 | fix: Fix actual UX issues #14

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/rosa-support/create/subnets/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var Cmd = &cobra.Command{
Short: "Create subnets",
Long: "Create subnets.",
Example: ` # Create a pair of subnets with prefix 'mysubnet-' in region 'us-east-2'
rosa-support create subnets --name-prefix=mysubnet --region us-east-2 --vpc-id <vpc id> --availability-zones <AZs>`,
gdbranco marked this conversation as resolved.
Show resolved Hide resolved
rosa-support create subnets --region us-east-2 --vpc-id <vpc id> --availability-zones <AZs>`,

Run: run,
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/rosa-support/create/vpc/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func run(cmd *cobra.Command, _ []string) {
split := strings.Split(tag, ":")

if len(split) == 2 {
tagMap[split[0]] = tagMap[split[1]]
tagMap[split[0]] = split[1]
} else {
tagMap[split[0]] = ""
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/rosa-support/delete/tag/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var Cmd = &cobra.Command{
Short: "Delete tag",
Long: "Delete tag.",
Example: ` # Delete a tag from the resource
rosa-support delete tag --resource-id <vpc id> --region us-east-2 --tag-key key`,
rosa-support delete tag --resource-id <resource id> --region us-east-2 --tag-key key`,

Run: run,
}
Expand Down
Loading