Class: Pvectl::Commands::SetVolume

Inherits:
Object
  • Object
show all
Extended by:
ClassMethods
Defined in:
lib/pvectl/commands/set_volume.rb

Overview

Handler for the ‘pvectl set volume` command.

Does NOT use SetResourceCommand template — has custom flow due to different argument structure (resource_type + id + disk + key=value).

Examples:

Resize volume

pvectl set volume vm 100 scsi0 size=+10G

Set cache mode

pvectl set volume vm 100 scsi0 cache=writeback

Mixed operations

pvectl set volume vm 100 scsi0 size=+10G cache=writeback --yes

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Constructor Details

#initialize(args, options, global_options) ⇒ SetVolume

Initializes a set volume command.

Parameters:

  • args (Array<String>)

    command arguments

  • options (Hash)

    command options

  • global_options (Hash)

    global CLI options



40
41
42
43
44
# File 'lib/pvectl/commands/set_volume.rb', line 40

def initialize(args, options, global_options)
  @args = args
  @options = options
  @global_options = global_options
end

Instance Method Details

#executeInteger

Executes the set volume command.

Returns:

  • (Integer)

    exit code



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/pvectl/commands/set_volume.rb', line 49

def execute
  resource_type = @args[0]
  resource_id = @args[1]
  disk = @args[2]
  key_value_args = @args[3..] || []

  return usage_error("Resource type required (vm, container)") unless resource_type
  return usage_error("Resource ID is required") unless resource_id
  return usage_error("Volume name is required (e.g., scsi0, rootfs)") unless disk

  key_values = parse_key_values(key_value_args)
  return usage_error("At least one key=value pair is required") if key_values.empty?

  load_config
  connection = Pvectl::Connection.new(@config)

  node = resolve_node(resource_id.to_i, connection, resource_type)
  return ExitCodes::NOT_FOUND unless node

  # Confirmation for resize operations
  if key_values.key?("size") && !@options[:yes]
    return ExitCodes::SUCCESS unless confirm_resize(resource_id, disk, key_values["size"])
  end

  repo = build_repository(connection, resource_type)
  service = Pvectl::Services::SetVolume.new(
    repository: repo,
    resource_type: resource_type_symbol(resource_type)
  )
  result = service.execute(id: resource_id.to_i, disk: disk, params: key_values, node: node)

  output_result(result)

  result.successful? ? ExitCodes::SUCCESS : ExitCodes::GENERAL_ERROR
rescue Pvectl::Config::ConfigNotFoundError,
       Pvectl::Config::InvalidConfigError,
       Pvectl::Config::ContextNotFoundError,
       Pvectl::Config::ClusterNotFoundError,
       Pvectl::Config::UserNotFoundError
  raise
rescue StandardError => e
  $stderr.puts "Error: #{e.message}"
  ExitCodes::GENERAL_ERROR
end