#!/usr/bin/perl # # This provisions a new virtual machine server. It handles creating the logical volumes, DRBD resources, # verifies the needed files are ready, creates the provision script, begins the installation, and adds the # new server to pacemaker. # # Exit codes; # 0 = Normal exit. use strict; use warnings; use Anvil::Tools; require POSIX; use Term::Cap; my $THIS_FILE = ($0 =~ /^.*\/(.*)$/)[0]; my $running_directory = ($0 =~ /^(.*?)\/$THIS_FILE$/)[0]; if (($running_directory =~ /^\./) && ($ENV{PWD})) { $running_directory =~ s/^\./$ENV{PWD}/; } # Turn off buffering so that the pinwheel will display while waiting for the SSH call(s) to complete. $| = 1; my $anvil = Anvil::Tools->new(); $anvil->Log->level({set => 2}); $anvil->Log->secure({set => 1}); $anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 2, secure => 0, key => "log_0115", variables => { program => $THIS_FILE }}); # Read switches (target ([user@]host[:port]) and the file with the target's password. If the password is # passed directly, it will be used. Otherwise, the password will be read from the database. $anvil->data->{switches}{'anvil-uuid'} = ""; $anvil->data->{switches}{cpu} = ""; $anvil->data->{switches}{'job-uuid'} = ""; $anvil->data->{switches}{name} = ""; $anvil->data->{switches}{ram} = ""; $anvil->data->{switches}{'storage-group'} = ""; $anvil->data->{switches}{'storage-size'} = ""; $anvil->Get->switches; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { 'switches::anvil-uuid' => $anvil->data->{switches}{'anvil-uuid'}, 'switches::cpu' => $anvil->data->{switches}{cpu}, 'switches::job-uuid' => $anvil->data->{switches}{'job-uuid'}, 'switches::name' => $anvil->data->{switches}{name}, 'switches::ram' => $anvil->data->{switches}{ram}, 'switches::storage-group' => $anvil->data->{switches}{'storage-group'}, 'switches::storage-size' => $anvil->data->{switches}{'storage-size'}, }}); $anvil->Database->connect(); $anvil->Log->entry({source => $THIS_FILE, line => __LINE__, level => 3, secure => 0, key => "log_0132"}); if (not $anvil->data->{sys}{database}{connections}) { # No databases, update the job, sleep for a bit and then exit. The daemon will pick it up and try # again after we exit. $anvil->Log->entry({source => $THIS_FILE, line => __LINE__, 'print' => 1, level => 0, priority => "err", key => "error_0077"}); sleep 10; $anvil->nice_exit({exit_code => 1}); } # If we don't have a job UUID, try to find one. if (not $anvil->data->{switches}{'job-uuid'}) { # Load the job data. $anvil->data->{switches}{job_uuid} = $anvil->Job->get_job_uuid({program => $THIS_FILE}); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "switches::job-uuid" => $anvil->data->{switches}{'job-uuid'} }}); } # If we still don't have a job-uuit, go into interactive mode. if ($anvil->data->{switches}{'job-uuid'}) { # Load the job data. $anvil->Job->clear(); $anvil->Job->get_job_details(); $anvil->Job->update_progress({ progress => 1, job_picked_up_by => $$, job_picked_up_at => time, message => "message_0190", }); # Job data will be in $anvil->data->{jobs}{job_data} } else { # Interactive! interactive_question($anvil); } $anvil->nice_exit({exit_code => 0}); ############################################################################################################# # Functions # ############################################################################################################# # Go through a series of questions to ask the user how they want to build their server. sub interactive_question { my ($anvil) = @_; # Do we know or can we find the Anvil! UUID? $anvil->data->{new_server}{anvil_uuid} = $anvil->data->{switches}{'anvil-uuid'} ? $anvil->data->{switches}{'anvil-uuid'} : ""; $anvil->data->{new_server}{anvil_name} = $anvil->data->{switches}{'anvil-name'} ? $anvil->data->{switches}{'anvil-name'} : ""; if ((not $anvil->data->{new_server}{anvil_uuid}) && (not $anvil->data->{new_server}{anvil_name})) { # Nothing given. Is this host a node, perhaps? my $anvil_uuid = $anvil->Cluster->get_anvil_uuid(); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { anvil_uuid => $anvil_uuid }}); if ($anvil_uuid) { $anvil->data->{new_server}{anvil_uuid} = $anvil_uuid; $anvil->data->{new_server}{anvil_name} = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_name}; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::anvil_name" => $anvil->data->{new_server}{anvil_name}, "new_server::anvil_uuid" => $anvil->data->{new_server}{anvil_uuid}, }}); } } elsif (not $anvil->data->{new_server}{anvil_uuid}) { $anvil->data->{new_server}{anvil_uuid} = $anvil->Cluster->get_anvil_uuid({anvil_name => $anvil->data->{new_server}{anvil_name}}); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::anvil_uuid" => $anvil->data->{new_server}{anvil_uuid} }}); } elsif (not $anvil->data->{new_server}{anvil_name}) { $anvil->data->{new_server}{anvil_name} = $anvil->Cluster->get_anvil_name({anvil_uuid => $anvil->data->{new_server}{anvil_uuid}}); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::anvil_name" => $anvil->data->{new_server}{anvil_name} }}); } $anvil->data->{new_server}{name} = $anvil->data->{switches}{name} ? $anvil->data->{switches}{name} : ""; # If this is a node, load the anvil_uuid automatically. my $termios = new POSIX::Termios; $termios->getattr; my $ospeed = $termios->getospeed; my $terminal = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed }; $terminal->Trequire(qw/ce ku kd/); interactive_ask_anvil_name($anvil, $terminal); interactive_ask_server_name($anvil, $terminal); interactive_ask_server_cpu($anvil, $terminal); interactive_ask_server_ram($anvil, $terminal); interactive_ask_server_storage_group($anvil, $terminal); interactive_ask_server_storage_size($anvil, $terminal); return(0); } sub interactive_ask_anvil_name { my ($anvil, $terminal) = @_; $anvil->Database->get_anvils(); my $retry = 0; while(1) { my $default_anvil = $anvil->data->{new_server}{anvil_name}; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { default_anvil => $default_anvil }}); if (not $default_anvil) { my $known_anvils = keys %{$anvil->data->{anvils}{anvil_name}}; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { known_anvils => $known_anvils }}); if (not $known_anvils) { print "There are no known Anvil! systems at this time. Please setup an Anvil! and try again later.\n"; $anvil->nice_exit({exit_code => 1}); } elsif ($known_anvils == 1) { foreach my $anvil_name (keys %{$anvil->data->{anvils}{anvil_name}}) { $default_anvil = $anvil_name; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { default_anvil => $default_anvil }}); } } } print $terminal->Tputs('cl'); print "Provision a new server menu:\n"; print "Anvil name: .. [".$default_anvil."]\n\n\n"; # Show all the current server names. if ($retry) { print "* That was not a recognized Anvil! name. please try again.\n\n"; } print "-=] Existing Anvil! systems [=-\n"; foreach my $anvil_name (sort {$a cmp $b} keys %{$anvil->data->{anvils}{anvil_name}}) { print "- ".$anvil_name.": - ".$anvil->data->{anvils}{anvil_name}{$anvil_name}{anvil_description}."\n"; } print $terminal->Tgoto('cm', 0, 2)."? "; my $answer = ; chomp $answer; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { answer => $answer }}); if ((not $answer) && ($default_anvil)) { $answer = $default_anvil; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { answer => $answer }}); } # Reload in case a new anvil! was saved while we waited. $anvil->Database->get_anvils(); if (exists $anvil->data->{anvils}{anvil_name}{$answer}) { # Valid. $anvil->data->{new_server}{anvil_name} = $answer; $anvil->data->{new_server}{anvil_uuid} = $anvil->Cluster->get_anvil_uuid({anvil_name => $answer}); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::anvil_name" => $anvil->data->{new_server}{anvil_name}, "new_server::anvil_uuid" => $anvil->data->{new_server}{anvil_uuid}, }}); print "Loading available resources for: [".$anvil->data->{new_server}{anvil_name}."] (".$anvil->data->{new_server}{anvil_uuid}.")\n"; $anvil->Get->available_resources({ debug => 2, anvil_uuid => $anvil->data->{new_server}{anvil_uuid}, }); last; } else { $retry = 1; } } # Verify that the Anvil! has enough RAM and disk space. my $anvil_uuid = $anvil->data->{new_server}{anvil_uuid}; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "anvil_resources::${anvil_uuid}::ram::available" => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}." (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}}).")", }}); if ($anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available} < (1**20)) { print "There is not enough RAM available on this Anvil! to provision new servers.\n"; print " - Available RAM: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}})."]\n"; $anvil->nice_exit({exit_code => 2}); } return(0); } sub interactive_ask_server_name { my ($anvil, $terminal) = @_; $anvil->Database->get_servers({debug => 2}); ### TODO: Figure out how many rows we have and break the server list into columns if too long. my $retry = 0; while(1) { my $default = ""; if ($anvil->data->{switches}{name}) { $default = $anvil->data->{switches}{name}; } print $terminal->Tputs('cl'); print "Provision a new server menu:\n"; print "Anvil name: [".$anvil->data->{new_server}{anvil_name}."]\n"; print "Server name: [".$anvil->data->{new_server}{name}."]\n\n\n"; # Show all the current server names. if ($retry) { print "* Please enter a unique server name.\n\n"; } my $anvil_uuid = $anvil->data->{new_server}{anvil_uuid}; print "-=] Existing Servers on the Anvil! [".$anvil->data->{new_server}{anvil_name}."] [=-\n"; foreach my $server_name (sort {$a cmp $b} keys %{$anvil->data->{servers}{anvil_uuid}{$anvil_uuid}{server_name}}) { print "- ".$server_name."\n"; } print $terminal->Tgoto('cm', 0, 3)."? "; my $answer = ; chomp $answer; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { answer => $answer }}); if ((not $answer) && ($default)) { $answer = $default; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { answer => $answer }}); } # Reload in case a new anvil! was saved while we waited. $anvil->Database->get_servers(); if (($answer) && (not exists $anvil->data->{servers}{anvil_uuid}{$anvil_uuid}{server_name}{$answer})) { # Valid. $anvil->data->{new_server}{name} = $answer; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::name" => $anvil->data->{new_server}{name}, }}); last; } else { $retry = 1; } } return(0); } sub interactive_ask_server_cpu { my ($anvil, $terminal) = @_; my $retry = 0; while(1) { my $anvil_uuid = $anvil->data->{new_server}{anvil_uuid}; $anvil->Database->get_anvils(); $anvil->Get->available_resources({anvil_uuid => $anvil_uuid}); my $default_cpu = $anvil->data->{switches}{cpu}; if (not $default_cpu) { # Default to 2, unless only one core is available. $default_cpu = $anvil->data->{anvil_resources}{$anvil_uuid}{cpu}{threads} == 1 ? 1 : 2; } print $terminal->Tputs('cl'); print "Provision a new server menu:\n"; print "Anvil name: .. [".$anvil->data->{new_server}{anvil_name}."]\n"; print "Server name: . [".$anvil->data->{new_server}{name}."]\n"; print "CPU Cores: ... [".$default_cpu."]\n\n\n"; if ($retry) { print "* Please enter a number between 1 and ".$anvil->data->{anvil_resources}{$anvil_uuid}{cpu}{threads}.".\n\n"; } print "-=] Available cores / threads: [".$anvil->data->{anvil_resources}{$anvil_uuid}{cpu}{cores}." / ".$anvil->data->{anvil_resources}{$anvil_uuid}{cpu}{threads}."]\n"; my $node1_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node1_host_uuid}; my $node2_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node2_host_uuid}; my $dr1_host_uuid = $anvil->data->{anvil_resources}{$anvil_uuid}{has_dr} ? $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_dr1_host_uuid} : ""; print " - Node 1 CPU Model: [".$anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node1_host_uuid}{cpu}{model}."]\n"; print " - Node 2 CPU Model: [".$anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node2_host_uuid}{cpu}{model}."]\n"; if ($anvil->data->{anvil_resources}{$anvil_uuid}{has_dr}) { print " - DR Host CPU: .... [".$anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node1_host_uuid}{cpu}{model}."], [".$anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$dr1_host_uuid}{cpu}{cores}."c]/[".$anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$dr1_host_uuid}{cpu}{threads}."t]\n"; } print $terminal->Tgoto('cm', 0, 4)."? "; my $answer = ; chomp $answer; if ($answer eq "") { $answer = $default_cpu; } if (($answer) && ($answer =~ /^\d+$/) && ($answer <= $anvil->data->{anvil_resources}{$anvil_uuid}{cpu}{threads})) { # Valid. $anvil->data->{new_server}{cpu} = $answer; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::cpu" => $anvil->data->{new_server}{cpu}, }}); last; } else { $retry = 1; } } return(0); } sub interactive_ask_server_ram { my ($anvil, $terminal) = @_; my $retry = 0; while(1) { my $anvil_uuid = $anvil->data->{new_server}{anvil_uuid}; $anvil->Database->get_anvils(); $anvil->Get->available_resources({anvil_uuid => $anvil_uuid}); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "anvil_resources::${anvil_uuid}::ram::available" => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}." (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}}).")", }}); my $default_ram = $anvil->data->{switches}{ram}; if (not $default_ram) { # Default to 2, unless only one core is available. my $say_2g = (2*(2**30)); if ($anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available} > $say_2g) { $default_ram = $anvil->Convert->bytes_to_human_readable({'bytes' => $say_2g}); } else { $default_ram = $anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}}); } } print $terminal->Tputs('cl'); print "Provision a new server menu:\n"; print "Anvil name: .. [".$anvil->data->{new_server}{anvil_name}."]\n"; print "Server name: . [".$anvil->data->{new_server}{name}."]\n"; print "CPU Cores: ... [".$anvil->data->{new_server}{cpu}."]\n"; print "RAM: ......... [".$default_ram."]\n\n\n"; if ($retry) { print "* Please enter a valid amount up to: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{hardware}})." / ".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}})."].\n\n"; } my $node1_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node1_host_uuid}; my $node2_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node2_host_uuid}; my $dr1_host_uuid = $anvil->data->{anvil_resources}{$anvil_uuid}{has_dr} ? $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_dr1_host_uuid} : ""; print "-=] Available RAM: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}})."] (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}, unit => "M"}).")\n"; print " - Reserved by host: ... [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{reserved}})."]\n"; print " - Allocated to servers: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{allocated}})."] (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{allocated}, unit => "M"}).")\n"; print " - Node 1 RAM (total): . [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node1_host_uuid}{ram}{hardware}})."] (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node1_host_uuid}{ram}{hardware}, unit => "M"}).")\n"; print " - Node 2 RAM (total): . [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node2_host_uuid}{ram}{hardware}})."] (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$node2_host_uuid}{ram}{hardware}, unit => "M"}).")\n"; if ($anvil->data->{anvil_resources}{$anvil_uuid}{has_dr}) { print " - DR Host RAM (total): [".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$dr1_host_uuid}{ram}{hardware}})."] (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{host_uuid}{$dr1_host_uuid}{ram}{hardware}, unit => "M"}).")\n"; } print $terminal->Tgoto('cm', 0, 5)."? "; my $answer = ; chomp $answer; if ($answer eq "") { $answer = $default_ram; } if ($answer) { # Convert to bytes. my $answer_bytes = $anvil->Convert->human_readable_to_bytes({ base2 => 1, size => $answer, }); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { answer_bytes => $answer_bytes }}); if (($answer_bytes eq "!!error!!") or (not $answer_bytes) or ($answer_bytes < (640*1024)) or ($answer_bytes > $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available})) { # Invalid $retry = 1; } else { # Valid. $anvil->data->{new_server}{ram} = $answer_bytes; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::ram" => $anvil->data->{new_server}{ram}, }}); last; } } else { $retry = 1; } } return(0); } sub interactive_ask_server_storage_group { my ($anvil, $terminal) = @_; my $retry = 0; while(1) { my $anvil_uuid = $anvil->data->{new_server}{anvil_uuid}; $anvil->Database->get_anvils(); $anvil->Get->available_resources({anvil_uuid => $anvil_uuid}); $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "anvil_resources::${anvil_uuid}::ram::available" => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}." (".$anvil->Convert->bytes_to_human_readable({'bytes' => $anvil->data->{anvil_resources}{$anvil_uuid}{ram}{available}}).")", }}); # I need a list of Storage groups, my $storage_groups = [""]; my $show_list = ""; my $position = 0; my $default_storage_group = 1; foreach my $storage_group_name (sort {$a cmp $b} keys %{$anvil->data->{anvil_resources}{$anvil_uuid}{storage_group_name}}) { $position++; my $storage_group_uuid = $anvil->data->{anvil_resources}{$anvil_uuid}{storage_group_name}{$storage_group_name}{storage_group_uuid}; my $vg_size = $anvil->data->{anvil_resources}{$anvil_uuid}{storage_group}{$storage_group_uuid}{vg_size}; my $vg_free = $anvil->data->{anvil_resources}{$anvil_uuid}{storage_group}{$storage_group_uuid}{free_size}; my $dr_size = 0; my $dr_free = 0; if ($anvil->data->{anvil_resources}{$anvil_uuid}{has_dr}) { $dr_size = $anvil->data->{anvil_resources}{$anvil_uuid}{storage_group}{$storage_group_uuid}{vg_size_on_dr}; $dr_free = $anvil->data->{anvil_resources}{$anvil_uuid}{storage_group}{$storage_group_uuid}{available_on_dr}; } if ($anvil->data->{switches}{'storage-group'}) { if (($anvil->data->{switches}{'storage-group'} eq $storage_group_uuid) or ($anvil->data->{switches}{'storage-group'} eq $storage_group_name)) { $default_storage_group = $position; } } push @{$storage_groups}, $storage_group_uuid; $show_list .= " - ".$position.") ".$storage_group_name." (".$storage_group_uuid.")\n"; $show_list .= " Available on Anvil!: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $vg_free})."], Total: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $vg_size})."]\n"; if ($anvil->data->{anvil_resources}{$anvil_uuid}{has_dr}) { $show_list .= " Available on DR: ... [".$anvil->Convert->bytes_to_human_readable({'bytes' => $dr_free})."], Total: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $dr_size})."]\n"; } else { $show_list .= " Available on DR: ... [--], Total: [--]\n"; } } if (not $default_storage_group) { # Default to 2, unless only one core is available. $default_storage_group = 1; } print $terminal->Tputs('cl'); print "Provision a new server menu:\n"; print "Anvil name: .. [".$anvil->data->{new_server}{anvil_name}."]\n"; print "Server name: . [".$anvil->data->{new_server}{name}."]\n"; print "CPU Cores: ... [".$anvil->data->{new_server}{cpu}."]\n"; print "RAM: ......... [".$anvil->data->{new_server}{ram}."]\n"; print "Storage Group: [".$default_storage_group."]\n\n\n"; if ($retry) { print "* Please enter a number beside the storage group you want to use.\n\n"; } my $node1_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node1_host_uuid}; my $node2_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node2_host_uuid}; my $dr1_host_uuid = $anvil->data->{anvil_resources}{$anvil_uuid}{has_dr} ? $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_dr1_host_uuid} : ""; print "-=] Storage groups\n"; print $show_list."\n"; print $terminal->Tgoto('cm', 0, 6)."? "; my $answer = ; chomp $answer; if ($answer eq "") { $answer = $default_storage_group; } if (($answer) && ($answer =~ /^\d+$/) && (exists $storage_groups->[$answer]) && ($storage_groups->[$answer])) { # Valid. $anvil->data->{new_server}{storage_group} = $storage_groups->[$answer]; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::storage_group" => $anvil->data->{new_server}{storage_group}, }}); last; } else { $retry = 1; } } return(0); } sub interactive_ask_server_storage_size { my ($anvil, $terminal) = @_; my $retry = 0; while(1) { my $anvil_uuid = $anvil->data->{new_server}{anvil_uuid}; $anvil->Database->get_anvils(); $anvil->Get->available_resources({anvil_uuid => $anvil_uuid}); # I need a list of Storage groups, my $default_storage_size = 0; my $storage_group_uuid = $anvil->data->{new_server}{storage_group}; my $vg_free = $anvil->data->{anvil_resources}{$anvil_uuid}{storage_group}{$storage_group_uuid}{free_size}; $default_storage_size = $anvil->data->{switches}{'storage-size'}; if (not $default_storage_size) { if ($vg_free < (80 * (2**30))) { # Too small for default $default_storage_size = $anvil->Convert->bytes_to_human_readable({'bytes' => $vg_free}); } else { $default_storage_size = "80 GiB"; } } my $say_storage_group = $anvil->data->{storage_groups}{anvil_uuid}{$anvil_uuid}{storage_group_uuid}{$storage_group_uuid}{group_name}; print $terminal->Tputs('cl'); print "Provision a new server menu:\n"; print "Anvil name: .. [".$anvil->data->{new_server}{anvil_name}."]\n"; print "Server name: . [".$anvil->data->{new_server}{name}."]\n"; print "CPU Cores: ... [".$anvil->data->{new_server}{cpu}."]\n"; print "RAM: ......... [".$anvil->data->{new_server}{ram}."]\n"; print "Storage Group: [".$say_storage_group."]\n"; print "Storage Size: [".$default_storage_size."]\n\n\n"; if ($retry) { print "* Please enter a size up to: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $vg_free})."].\n\n"; } my $node1_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node1_host_uuid}; my $node2_host_uuid = $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_node2_host_uuid}; my $dr1_host_uuid = $anvil->data->{anvil_resources}{$anvil_uuid}{has_dr} ? $anvil->data->{anvils}{anvil_uuid}{$anvil_uuid}{anvil_dr1_host_uuid} : ""; print "-=] Storage group: [".$say_storage_group."], Available Space: [".$anvil->Convert->bytes_to_human_readable({'bytes' => $vg_free})."]\n"; print " - Note: You can add additional drives later.\n"; print $terminal->Tgoto('cm', 0, 7)."? "; my $answer = ; chomp $answer; if ($answer eq "") { $answer = $default_storage_size; } if ($answer) { # Is the size sensible? my $answer_bytes = $anvil->Convert->human_readable_to_bytes({ base2 => 1, size => $answer, }); # Make sure they've asked for at least 10 MiB $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { answer_bytes => $answer_bytes }}); if (($answer_bytes eq "!!error!!") or (not $answer_bytes) or ($answer_bytes < (10*(2**20))) or ($answer_bytes > $vg_free)) { # Invalid $retry = 1; } else { $anvil->data->{new_server}{storage_size} = $answer_bytes; $anvil->Log->variables({source => $THIS_FILE, line => __LINE__, level => 2, list => { "new_server::storage_size" => $anvil->data->{new_server}{storage_size}, }}); last; } } else { $retry = 1; } } return(0); }