Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Packer X Terraform] Slot issue with network interfaces #1084

Open
luclis opened this issue Apr 30, 2024 · 0 comments
Open

[Packer X Terraform] Slot issue with network interfaces #1084

luclis opened this issue Apr 30, 2024 · 0 comments

Comments

@luclis
Copy link

luclis commented Apr 30, 2024

System Information

Linux distribution

Ubuntu 22.04

Terraform version

terraform -v
Terraform v1.8.2 on linux_amd64
+ provider registry.terraform.io/dmacvicar/libvirt v0.7.6

libvirtd --version
libvirtd (libvirt) 8.0.0

Checklist

  • [ x ] Is your issue/contribution related with enabling some setting/option exposed by libvirt that the plugin does not yet support, or requires changing/extending the provider terraform schema?
  • [ x ] Make sure you explain why this option is important to you, why it should be important to everyone. Describe your use-case with detail and provide examples where possible.
  • [ ~ ] If it is a very special case, consider using the XSLT support in the provider to tweak the definition instead of opening an issue
  • [ x ] Maintainers do not have expertise in every libvirt setting, so please, describe the feature and how it is used. Link to the appropriate documentation
  • [ x ] Is it a bug or something that does not work as expected? Please make sure you fill the version information below:

Description of Issue/Question

When packaging a new vm with Packer over QEMU, the network interface use the ens4 name. When rebuilding it with Terraform, the network interface get the ens3 slot.

Setup

terraform {
  required_version = ">= 1.6.6"
  required_providers {
    libvirt = {
      source = "dmacvicar/libvirt"
      version = "0.7.6"
    }
}
provider "libvirt" {
  # Configuration du fournisseur libvirt
  uri = "qemu:///system"
}

resource "libvirt_pool" "default" {
    name = "Terraformed"
    type = "dir"
    path = "/srv/VMs"
}

resource "libvirt_network" "default" {
    name = "Nated"
    mode = "nat"
    domain = "lab.luclis.fr"
    addresses = ["10.0.0.0/24"]
    dns {
      enabled = "true"
      local_only = "false"
    }
}

// variables that can be overriden
variable "hostname" { default = "debian-nginx" }
variable "OS" { default = "Debian" }
variable "OSversion" { default = "12.04"}
variable "domain" { default = "lab.luclis.fr" }
variable "ip_type" { default = "dhcp" }
variable "memoryMB" { default = 1024*2 }
variable "cpu" { default = 2 }

resource "libvirt_volume" "nginx" {
  name = "${var.OS}"
  pool = libvirt_pool.default.name
  source = "/srv/outputs/${var.OS}-${var.OSversion}/${var.OS}-${var.OSversion}"
  format = "qcow2"
}

// Create the machine
resource "libvirt_domain" "nginx" {
  # domain name in libvirt, not hostname
  name = var.hostname
  memory = var.memoryMB
  vcpu = var.cpu
  qemu_agent = "true"
  disk {
    volume_id = libvirt_volume.nginx.id
    scsi = "true"
  }
  network_interface {
    network_id = libvirt_network.default.id
 #   wait_for_lease = "true"
  }

  graphics {
    type = "spice"
    listen_type = "address"
    autoport = "true"
  }
}

output "ips" {
  value = libvirt_domain.nginx.*.network_interface.0.addresses
}

Steps to Reproduce Issue

  1. Make a build with Packer
build {
  sources = [
    "source.qemu.Debian"
  ]
}
packer {
  required_plugins {
    qemu = {
      version = "~> 1"
      source  = "github.com/hashicorp/qemu"
    }
  }
}

variable "name" {
  sensitive = false
  default = "Debian-12.04"
  description = "The name of the firt VM created."
}

variable "params" {
  sensitive = false
  default = {
    disk = "40960"
    format = "qcow2"
    ram = "4096"
    cpu = "2"
    }
}

variable "accounts" {
  sensitive = true
  default = {
    username = "ansible"
    password = "ansible"
  }
  description = "The account of the first user."
}

variable "iso" {
  default = {
    checksum = "file:https://cdimage.debian.org/mirror/cdimage/archive/12.4.0/amd64/iso-dvd/SHA256SUMS"
    url = "https://cdimage.debian.org/mirror/cdimage/archive/12.4.0/amd64/iso-dvd/debian-12.4.0-amd64-DVD-1.iso"
  }
  description = "The url of the iso."
}

variable "guest_additions_iso" {
  default = {
    url = "https://download.virtualbox.org/virtualbox/6.1.50/VBoxGuestAdditions_6.1.50.iso"
    checksum = "file:https://download.virtualbox.org/virtualbox/{{.Version}}/SHA256SUMS" # Ne marche pas. Il prends pas le file on dirait.
  }
  description = "The url of the iso."
}


variable "Port" {
  default = {
    min = 8081
    max = 8081
  }
  description = "The http server port. The value at min and max means only 1 port open."
}

source qemu "Debian" {
  iso_url = var.iso.url
  iso_checksum = var.iso.checksum
  ssh_username= var.accounts.username
  ssh_password= var.accounts.password
  ssh_timeout= "30m"
  accelerator = "kvm"
  vm_name = var.name
  net_device = "virtio-net-pci"
  disk_interface = "virtio-scsi"
  disk_size = var.params.disk
  format = var.params.format
  memory = var.params.ram
  cpus = var.params.cpu 

  headless = true
  disk_compression = true

  output_directory = "/srv/outputs/${var.name}"
  http_directory = "../../http"
  http_port_min = var.Port.min
  http_port_max = var.Port.max
  shutdown_command = "echo ${var.accounts.password} | sudo -S shutdown -P now"
  boot_command = [
    "<esc><wait>auto console-keymaps-at/keymap=fr url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg<enter>",
  ]
}
  1. Apply it with the terraform previously write
  2. Connect to QEMU and see that the name of the interface isn't right.
  3. run lspci :
00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02)
00:01.0 [...]
00:03.0 Ethernet controller: Red Hat, Inc. Virtio network device
00:04.0 SCSI storage controller: Red hat, Inc. Virtio SCSI

If you look at the packer build, the Ethernet and SCSI are inverted.

How to fix :

  1. Find a way to manually choose which device goes where
  2. In accord with the Packer Team of QEMU, force the same address for both ?

Workaround

  1. Maybe a xsl file can made the change. I've try but have always an error with the xslt.
  2. In the packer boot command line, add net.ifnames=0 biosdevname=0 to set the interface name to eth0.

Thanks for your work, he's already amazing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant