Skip to content

Commit

Permalink
fix: add migrate subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Sopena Ballesteros committed Jan 23, 2024
1 parent 342c365 commit d3ae153
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ pub fn build_cli(hsm_group: Option<&String>) -> Command {
.arg(arg!(-i --"image-id" <IMAGE_ID> "Image ID to use as a container image").required(true))
),
)
.subcommand(
Command::new("migrate")
.alias("m")
.arg_required_else_help(true)
.about("WIP - Migrate vCluster")
.subcommand(subcommand_migrate_backup())
.subcommand(subcommand_migrate_restore()),
)
.subcommand(
Command::new("update")
.alias("u")
Expand Down

0 comments on commit d3ae153

Please sign in to comment.