manta-cli 2.0.0-beta.36

Another CLI for ALPS
//! Implements the `manta apply boot group` command.

use crate::common::app_context::AppContext;
use crate::http_client::{ApplyBootConfigRequest, MantaClient};
use crate::output::action_result;

pub struct ExecParams<'a> {
  pub boot_image: Option<&'a str>,
  pub boot_image_configuration: Option<&'a str>,
  pub runtime_configuration: Option<&'a str>,
  pub kernel_parameters: Option<&'a str>,
  pub hsm_group_name: &'a str,
  pub dry_run: bool,
  pub output: Option<&'a str>,
}

/// Apply a boot configuration to all nodes in a cluster.
pub async fn exec(
  ctx: &AppContext<'_>,
  token: &str,
  p: ExecParams<'_>,
) -> Result<(), anyhow::Error> {
  let server_url = ctx.manta_server_url;
  let result = MantaClient::new(server_url, ctx.site_name)?
    .apply_boot_config(
      token,
      &ApplyBootConfigRequest {
        hosts_expression: p.hsm_group_name,
        boot_image_id: p.boot_image,
        boot_image_configuration: p.boot_image_configuration,
        kernel_parameters: p.kernel_parameters,
        runtime_configuration: p.runtime_configuration,
        dry_run: p.dry_run,
      },
    )
    .await?;
  if p.dry_run {
    action_result::print_with_data(
      "Dry-run enabled. No changes persisted into the system.",
      &result,
      p.output,
    )?;
  } else {
    action_result::print("Boot configuration applied.", p.output)?;
  }
  Ok(())
}