Class: VagrantPlugins::TerraformProvider::Action::CreateVM
- Inherits:
-
Object
- Object
- VagrantPlugins::TerraformProvider::Action::CreateVM
- Includes:
- Vagrant::Util::Retryable, Util::MachineNames, Util::TerraformExecute
- Defined in:
- lib/vagrant-terraform/action/create_vm.rb
Constant Summary
Constants included from Util::MachineNames
Util::MachineNames::DEFAULT_NAME
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ CreateVM
constructor
A new instance of CreateVM.
- #recover(env) ⇒ Object
Methods included from Util::MachineNames
machine_hostname, machine_vmname
Methods included from Util::TerraformExecute
Constructor Details
#initialize(app, env) ⇒ CreateVM
Returns a new instance of CreateVM.
14 15 16 17 |
# File 'lib/vagrant-terraform/action/create_vm.rb', line 14 def initialize(app, env) @logger = Log4r::Logger.new("vagrant_terraform::action::create_vm") @app = app end |
Instance Method Details
#call(env) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/vagrant-terraform/action/create_vm.rb', line 19 def call(env) # Get config. config = env[:machine].provider_config if config.target_node.nil? raise "'target_node' must not be empty." end if config.storage_domain.nil? raise "'storage_domain' must not be empty." end if config.disk_size.nil? raise "'disk_size' must be set." end vmname = machine_vmname(env[:machine]) main_tf = <<-END provider "proxmox" { pm_api_url = "#{config.api_url}" pm_api_token_id = "#{config.api_token_id}" pm_api_token_secret = "#{config.api_token_secret}" pm_tls_insecure = #{config.insecure.to_s} pm_debug = #{config.debug} } resource "proxmox_vm_qemu" "#{vmname.gsub(/\./, '-')}" { name = "#{vmname}" target_nodes = ["#{config.target_node}"] desc = "#{config.description}" vm_state = "stopped" clone = "#{config.template}" full_clone = #{config.full_clone} cores = #{config.cpu_cores.to_i} cpu_type = "#{config.cpu_type}" memory = #{Filesize.from("#{config.memory_size} B").to_f('MB').to_i} balloon = #{Filesize.from("#{config.balloon} B").to_f('MB').to_i} onboot = #{config.onboot} agent = 1 vga { type = "#{config.vga}" # Between 4 and 512, ignored if type is defined to serial memory = 64 } scsihw = "virtio-scsi-pci" boot = "order=virtio0" bootdisk = "virtio0" os_type = "#{config.os_type}" disks { virtio { virtio0 { disk { storage = "#{config.storage_domain}" size = "#{Filesize.from("#{config.disk_size} B").to_f('GB').to_i}G" format = "#{config.full_clone ? "raw" : "qcow2"}" } } } ide { ide2 { cloudinit { storage = "#{config.storage_domain}" } } } } %SERIAL% nameserver = "#{config.nameserver}" searchdomain = "#{config.searchdomain}" %NETWORKS% ciuser = "vagrant" sshkeys = <<EOF ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key EOF } # terraform output -raw public_ip output "public_ip" { value = proxmox_vm_qemu.#{vmname.gsub(/\./, '-')}.default_ipv4_address } terraform { required_version = ">= 1.8.0" required_providers { proxmox = { source = "telmate/proxmox" version = "3.0.2-rc04" } } } END network_template = <<-END network { id = %IDX% bridge = "%BRIDGE%" firewall = false link_down = false model = "virtio" } ipconfig%IDX% = "%IP%" END serial_template = <<-END serial { id = 0 type = "socket" } END if config.serial_port main_tf = main_tf.gsub(/%SERIAL%/, serial_template) else main_tf = main_tf.gsub(/%SERIAL%/, '') end vagrantfile_networks = [] env[:machine].id = vmname env[:machine].config.vm.networks.each_with_index do |network, idx| type, = network # Only private networks are supported next unless type == :private_network if ! [:terraform__ip].nil? if ! [:terraform__ip].include? "/" raise "IP must be given in CIDR form, for example 192.168.0.10/24" end if [:terraform__gateway].nil? network_str = network_template.gsub(/%IP%/, "ip=#{[:terraform__ip]}") else network_str = network_template.gsub(/%IP%/, "ip=#{[:terraform__ip]},gw=#{[:terraform__gateway]}") end else network_str = network_template.gsub(/%IP%/, "ip=dhcp") end network_str = network_str.gsub(/%BRIDGE%/, [:terraform__network_name]) network_str = network_str.gsub(/%IDX%/, idx.to_s) vagrantfile_networks << network_str end main_tf = main_tf.gsub(/%NETWORKS%/, vagrantfile_networks.join()) # Output the settings we're going to use to the user env[:ui].info(I18n.t("vagrant_terraform.creating_vm")) env[:ui].info(" -- Name: #{vmname}") env[:ui].info(" -- Template: #{config.template}") env[:ui].info(" -- Description: #{config.description}") env[:ui].info(" -- Target node: #{config.target_node}") env[:ui].info(" -- Storage domain: #{config.storage_domain}") env[:ui].info(" -- CPU Cores: #{config.cpu_cores}") env[:ui].info(" -- Memory: #{Filesize.from("#{config.memory_size} B").to_f('MB').to_i} MB") env[:ui].info(" -- Disk: #{Filesize.from("#{config.disk_size} B").to_f('GB').to_i} GB") unless config.disk_size.nil? terraform_dir = env[:machine_tf_dir] terraform_main_file = "#{terraform_dir}/main.tf" File.write(terraform_main_file, main_tf) # Avoid downloading the provider every time even when it's in the cache ENV['TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE'] = "1" retryable(on: Errors::TerraformError, tries: 100, sleep: 1) do begin terraform_execute(env, 'terraform init') rescue Errors::TerraformError => e # https://github.com/hashicorp/terraform/issues/32915 # https://github.com/hashicorp/terraform/issues/31964 # The message 'text file busy' comes when something is attempting to overwrite the executable # for a running process which is using the same data. The plugin cache is not safe for concurrent # access, and overwriting running providers can result in unexpected behavior. ansi_escape_regex = /\e\[(?:[0-9]{1,2}(?:;[0-9]{1,2})*)?[m|K]/ if e..gsub(ansi_escape_regex, '').include?("Failed to install provider") @logger.debug("Failed to install provider, retrying") raise e end end end retryable(on: Errors::TerraformError, tries: 10, sleep: 1) do begin lockfile = '.vagrant/terraform/lock' max_retries = 300 retry_delay = 2 File.open(lockfile, 'w') do |file| retries = 0 # VM creation can't be done in parallel because multiple VMs might get the same ID # Get a lock before creating VM with 'terraform apply' until file.flock(File::LOCK_EX | File::LOCK_NB) if retries >= max_retries raise Errors::CreateVMError, :error_message => "Failed to acquire lock after #{max_retries} attempts. Exiting." end @logger.debug("Lock is currently held. Retrying in #{retry_delay} seconds...") retries += 1 sleep(retry_delay) end begin terraform_execute(env, "terraform apply -auto-approve") ensure file.flock(File::LOCK_UN) end end rescue Errors::TerraformError => e # ==> vm_one: terraform stderr: ╷ # ==> vm_one: │ Error: can't lock file '/var/lock/qemu-server/lock-100.conf' - got timeout ansi_escape_regex = /\e\[(?:[0-9]{1,2}(?:;[0-9]{1,2})*)?[m|K]/ if e..gsub(ansi_escape_regex, '').include?("Error: can't lock file") env[:ui].info("Proxmox unable to get lock, retrying") raise e end # Terraform error message was 'clone failed: cfs-lock 'storage-qnap-nfs' error: got lock request timeout' # Terraform error message was 'storage migration failed: cfs-lock 'storage-qnap-nfs' error: got lock request timeout' if e..gsub(ansi_escape_regex, '').include?("error: got lock request timeout") env[:ui].info("Proxmox unable to get storage lock, retrying") raise e end # Terraform error message was 'clone failed: 'storage-qnap-nfs'-locked command timed out - aborting' if e..gsub(ansi_escape_regex, '').include?("command timed out") env[:ui].info("Proxmox clone failed with command timeout, retrying") raise e end # Terraform error message was '500 got no worker upid - start worker failed' if e..gsub(ansi_escape_regex, '').include?("got no worker upid") env[:ui].info("Proxmox error: 'got no worker upid', retrying") raise e end # Terraform error message was 'volume 'qnap-nfs:104/vm-104-disk-1.raw' does not exist' if e..gsub(ansi_escape_regex, '') =~ /.*volume .* does not exist/ # https://github.com/bpg/terraform-provider-proxmox/issues/1599 env[:ui].info("Volume not created, retrying. Error was: #{e.}") raise e end # Terraform error message was 'clone failed: disk image '/mnt/pve/qnap-nfs/images/104/vm-104-cloudinit.qcow2' already exists' if e..gsub(ansi_escape_regex, '') =~ /.*disk image .* already exists/ env[:ui].info("Clone failed, retrying. Error was: #{e.}") raise e end # Terraform error message was "clone failed: unable to create image: qemu-img: /mnt/pve/qnap-nfs/images/105/vm-105-cloudinit.qcow2: Could not create '/mnt/pve/qnap-nfs/images/105/vm-105-cloudinit.qcow2': No such file or directory" if e..gsub(ansi_escape_regex, '') =~ /.*unable to create image: .* No such file or directory/ env[:ui].info("Clone failed, retrying. Error was: #{e.}") raise e end # Terraform error message was 'Request cancelled' if e..gsub(ansi_escape_regex, '').include?("Request cancelled") env[:ui].info("Proxmox error: Request cancelled") raise e end if e..gsub(ansi_escape_regex, '') =~ /.*Error: [0-9 ]*unable to create VM [0-9]*: config file already exists/ env[:ui].info("Proxmox ID conflict, retrying") raise e end if config.debug raise e else = /Error: (.*)/.match(e..gsub(ansi_escape_regex, ''))[1] rescue e. raise Errors::CreateVMError, :error_message => end end end @app.call(env) end |
#recover(env) ⇒ Object
294 295 296 297 298 299 300 301 302 303 |
# File 'lib/vagrant-terraform/action/create_vm.rb', line 294 def recover(env) # undo return if env["vagrant.error"].is_a?(Vagrant::Errors::VagrantError) # leaves main.tf in .vagrant/terraform/HOSTNAME/ env[:ui].info(I18n.t("vagrant_terraform.error_recovering")) destroy_env = env.dup destroy_env.delete(:interrupted) destroy_env[:config_validate] = false destroy_env[:force_confirm_destroy] = true env[:action_runner].run(Action.action_destroy, destroy_env) end |