Skip to content

Commit

Permalink
doc: various doc changes
Browse files Browse the repository at this point in the history
Fixes newline and uses object for cloud

Co-Authored-By: Kat Batuigas <[email protected]>
  • Loading branch information
gene-redpanda and kbatuigas committed Oct 31, 2024
1 parent 16807e4 commit 4e73cea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/go/rpk/pkg/cli/cluster/storage/list-mountable.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import (
func newListMountable(fs afero.Fs, p *config.Params) *cobra.Command {
cmd := &cobra.Command{
Use: "list-mountable",
Short: "List mountable topics from cloud storage",
Long: `List topics that are available to be mounted from cloud storage.
Short: "List mountable topics from object storage",
Long: `List topics that are available to mount from object storage.
This command displays topics that exist in cloud storage and can be mounted
to your Redpanda cluster. Each topic includes its location in cloud storage
This command displays topics that exist in object storage and can be mounted
to your Redpanda cluster. Each topic includes its location in object storage
and namespace information if applicable.`,
Example: `
List all mountable topics:
Expand Down
2 changes: 1 addition & 1 deletion src/go/rpk/pkg/cli/cluster/storage/mount.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ with my-new-topic as the new topic name
fmt.Printf(`
Topic mount from Tiered Storage topic %v to your Redpanda Cluster topic %v
has started with Migration ID %v
To check the status run 'rpk cluster storage status-mount %d'\n`, t, alias, mg.ID, mg.ID)
To check the status run 'rpk cluster storage status-mount %d`+"\n", t, alias, mg.ID, mg.ID)
},
}
cmd.Flags().StringVar(&to, "to", "", "New namespace/topic name for the mounted topic (optional)")
Expand Down
2 changes: 1 addition & 1 deletion src/go/rpk/pkg/cli/cluster/storage/unmount.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Unmount topic 'my-topic' from the cluster in the 'my-namespace'
fmt.Printf(`
Topic unmounting from your Redpanda Cluster topic %v
has started with Migration ID %v
To check the status run 'rpk cluster storage status-mount %d'\n`, t, mg.ID, mg.ID)
To check the status run 'rpk cluster storage status-mount %d`+"\n", t, mg.ID, mg.ID)
},
}
return cmd
Expand Down

0 comments on commit 4e73cea

Please sign in to comment.