dmacvicar / terraform-provider-libvirt

Terraform provider to provision infrastructure with Linux's KVM using libvirt
Apache License 2.0
1.54k stars 457 forks source link

libvirt_cloudinit_disk does not work on Terraform Cloud #934

Open MadsRC opened 2 years ago

MadsRC commented 2 years ago

System Information

Linux distribution

Latest version of Ubuntu LTS as mentioned here

Terraform version

1.1.5

Provider and libvirt versions

Latest available from Hashicorps Terraform Provider registry


Checklist

Description of Issue/Question

Setup

terraform {
  required_providers {
    libvirt = {
      source = "dmacvicar/libvirt"
    }
  }
}

provider "libvirt" {
  uri = "qemu+ssh://virt:${var.ssh_pass}@THEIP/system?sshauth=ssh-password&knownhosts=./known_hosts"
}

locals {
    libvirt = {
        pools = {
            vm = {
                name = "virtualMachines"
            }
        }
    }
}

resource "libvirt_pool" "virtualMachines" {
    name = local.libvirt.pools.vm.name
    type = "dir"
    path = "/aPath/${local.libvirt.pools.vm.name}"
}

data "template_file" "user_data" {
  template = file("${path.module}/cloud_init.cfg")
}

data "template_file" "network_config" {
  template = file("${path.module}/network_config.cfg")
}

resource "libvirt_cloudinit_disk" "commoninit" {
  name           = "commoninit.iso"
  user_data      = data.template_file.user_data.rendered
  network_config = data.template_file.network_config.rendered
  pool           = libvirt_pool.virtualMachines.name
}

Steps to Reproduce Issue

Attempt to create a libvirt_cloudinit_disk resource using Terraform running on Hashicorp managed Terraform Cloud runners.


Additional information:

The call to an external dependency seems to happen here.

According to Terraform Cloud, one should not install additional tools on their runners - While it is supported, it should only be as a last resort. This is documented here and here.

While this does not make the provider entirely incompatible with Terraform Cloud, it sure does make it very tiresome to work with.

See thee attached screenshot for exact error message Screenshot 2022-02-22 at 11 46 59

masterbender commented 2 years ago

using 0.6.14 , i can not create any vm (vor example simple ubuntu cloudinit example) via terraform ( on premise server not cloud ) :

Error: error while starting the creation of CloudInit's ISO image: exec: "mkisofs": executable file not found in $PATH
│ 
│   with libvirt_cloudinit_disk.commoninit,
│   on main.tf line 8, in resource "libvirt_cloudinit_disk" "commoninit":
│    8: resource "libvirt_cloudinit_disk" "commoninit" {
jbeisser commented 2 years ago

I've also found this issue when using a MacOS system to build from.

@MadsRC's PR starts down the right path, but the problem about Joliet and RockRidge extensions aren't supported, and I believe are required for the iso9660 image. But, with a little bit of testing, I verified that vfat works for the localds image. Which is supported by go-diskfs, making that approach viable.

axxyhtrx commented 1 year ago

using 0.6.14 , i can not create any vm (vor example simple ubuntu cloudinit example) via terraform ( on premise server not cloud ) :

Error: error while starting the creation of CloudInit's ISO image: exec: "mkisofs": executable file not found in $PATH
│ 
│   with libvirt_cloudinit_disk.commoninit,
│   on main.tf line 8, in resource "libvirt_cloudinit_disk" "commoninit":
│    8: resource "libvirt_cloudinit_disk" "commoninit" {

try > brew install cdrtools

jbeisser commented 1 year ago

Using cdrtools doesn't solve the issue with Terraform Cloud though.

skindud commented 1 year ago

I use docker image based on Alpine for terraform running and it has been solved for me by installing mkisofs package by the following command: apk add cdrkit

jseparovic commented 1 year ago

@MadsRC Did you ever get this working on Terraform Cloud?

I've been trying the workaround for the last few hours to install a genisoimage (mkisofs) binary but I keep getting a exec format error:

Error: error while starting the creation of CloudInit's ISO image: fork/exec /home/tfc-agent/.tfc-agent/component/terraform/runs/run-ceETzGaMcHNTiXrf/.local/bin/mkisofs: exec format error

I've pulled the binary from a hetzner cloud Ubuntu 20.04.6 VM:

root@ubuntu-2gb-hil-1:~# cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.6 LTS (Focal Fossa)"

Which seems to be the same version as the runners:

 + cat /etc/os-release
  NAME="Ubuntu"
  VERSION="20.04.6 LTS (Focal Fossa)"

Still getting exec format error though.

jseparovic commented 1 year ago

I managed to get the workaround working on Terraform Cloud. From my previous message, I think I'd messed up the curl command which I copied from the Terraform docs. When I tested it locally, it created a 0 byte file. Anyway I swapped to using wget and it works now.

If anyone is interested, this is what I added to get it working:

resource "null_resource" "always_run" {
  triggers = {
    timestamp = timestamp()
  }
}

resource "terraform_data" "cluster" {
  lifecycle {
    replace_triggered_by = [
      null_resource.always_run
    ]
  }

  # Example PATH in a runner
  # /home/tfc-agent/.tfc-agent/component/terraform/runs/run-bDb4JfFca6LSu4Jv/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/local/bin
  provisioner "local-exec" {
    command = <<EOH
set -x
echo PATH=$PATH
cat /etc/os-release
uname -a
pwd
mkdir -p ../.local/bin
wget https://github.com/jseparovic/ubuntu2004/raw/main/mkisofs -O ../.local/bin/mkisofs
chmod 0755 ../.local/bin/mkisofs
mkisofs -version
set +x
EOH
    }
}

I ended up building genisoimage (aka: mkisofs) from source as per https://github.com/jseparovic/ubuntu2004

A note on the PATH, it seems that the runner already has a PATH entry for ./.local/bin so all you have to do is create this folder and put any binaries in there for them to work as is.