Clarify backup and restore creation messages

When running `ark <resource> create`, a request is sent to the server,
but the status is not immediately known. Inform the user that a request
was sent and provide a way to get more information on it.

Signed-off-by: Nolan Brubaker <nolan@heptio.com>
This commit is contained in:
Nolan Brubaker
2018-01-04 11:51:22 -05:00
parent 656428d0b9
commit 37f498cd37
2 changed files with 4 additions and 2 deletions

View File

@@ -143,6 +143,7 @@ func (o *CreateOptions) Run(c *cobra.Command, f client.Factory) error {
return err
}
fmt.Printf("Backup %q created successfully.\n", backup.Name)
fmt.Printf("Backup request %q submitted successfully.\n", backup.Name)
fmt.Printf("Run `ark backup describe %s` for more details.\n", backup.Name)
return nil
}