2021-06-07 11:19:00 +00:00
|
|
|
packer {
|
|
|
|
required_plugins {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
source "vsphere-iso" "ubuntuserver" {
|
|
|
|
vcenter_server = var.vcenter_server
|
|
|
|
username = var.vsphere_username
|
|
|
|
password = var.vsphere_password
|
|
|
|
insecure_connection = "true"
|
|
|
|
|
|
|
|
vm_name = "${var.vm_guestos}-${var.vm_name}"
|
|
|
|
datacenter = var.vsphere_datacenter
|
|
|
|
host = var.vsphere_host
|
|
|
|
folder = var.vsphere_folder
|
|
|
|
datastore = var.vsphere_datastore
|
|
|
|
|
|
|
|
guest_os_type = "ubuntu64Guest"
|
2021-06-17 09:21:22 +00:00
|
|
|
|
2021-06-07 11:19:00 +00:00
|
|
|
boot_order = "disk,cdrom"
|
|
|
|
boot_command = [
|
|
|
|
"<enter><wait2><enter><wait><f6><esc><wait>",
|
|
|
|
" autoinstall<wait2> ds=nocloud;",
|
|
|
|
"<wait><enter>"
|
|
|
|
]
|
|
|
|
boot_wait = "2s"
|
2021-06-17 09:21:22 +00:00
|
|
|
|
2021-06-07 11:19:00 +00:00
|
|
|
communicator = "ssh"
|
2021-06-07 12:54:22 +00:00
|
|
|
ssh_username = "ubuntu"
|
2021-06-08 07:24:39 +00:00
|
|
|
ssh_password = var.ssh_password
|
2021-06-07 12:54:22 +00:00
|
|
|
ssh_timeout = "20m"
|
|
|
|
ssh_handshake_attempts = "100"
|
|
|
|
ssh_pty = true
|
2021-06-17 09:21:22 +00:00
|
|
|
|
2021-06-07 11:19:00 +00:00
|
|
|
CPUs = 2
|
|
|
|
RAM = 4096
|
2021-06-17 09:21:22 +00:00
|
|
|
|
2021-06-07 11:19:00 +00:00
|
|
|
network_adapters {
|
|
|
|
network = var.vsphere_network
|
|
|
|
network_card = "vmxnet3"
|
|
|
|
}
|
|
|
|
storage {
|
|
|
|
disk_size = 20480
|
|
|
|
disk_thin_provisioned = true
|
|
|
|
}
|
|
|
|
disk_controller_type = ["pvscsi"]
|
|
|
|
usb_controller = ["xhci"]
|
|
|
|
|
|
|
|
cd_files = [
|
2021-06-07 12:44:50 +00:00
|
|
|
"packer/preseed/UbuntuServer20.04/user-data",
|
|
|
|
"packer/preseed/UbuntuServer20.04/meta-data"
|
2021-06-07 11:19:00 +00:00
|
|
|
]
|
|
|
|
cd_label = "cidata"
|
2021-06-10 09:53:51 +00:00
|
|
|
iso_url = local.iso_authenticatedurl
|
2021-06-10 09:39:42 +00:00
|
|
|
iso_checksum = var.iso_checksum
|
2021-06-07 11:19:00 +00:00
|
|
|
|
|
|
|
shutdown_command = "echo '${var.ssh_password}' | sudo -S shutdown -P now"
|
|
|
|
shutdown_timeout = "5m"
|
|
|
|
|
|
|
|
export {
|
|
|
|
images = false
|
|
|
|
output_directory = "/scratch/ubuntuserver"
|
|
|
|
}
|
|
|
|
remove_cdrom = true
|
|
|
|
}
|
2021-06-17 09:21:22 +00:00
|
|
|
source "vsphere-iso" "ubuntuserver-baremetal" {
|
|
|
|
vcenter_server = var.vcenter_server
|
|
|
|
username = var.vsphere_username
|
|
|
|
password = var.vsphere_password
|
|
|
|
insecure_connection = "true"
|
|
|
|
|
|
|
|
vm_name = "${var.vm_guestos}-${var.vm_name}-baremetal"
|
|
|
|
datacenter = var.vsphere_datacenter
|
|
|
|
host = var.vsphere_host
|
|
|
|
folder = var.vsphere_folder
|
|
|
|
datastore = var.vsphere_datastore
|
|
|
|
|
|
|
|
guest_os_type = "ubuntu64Guest"
|
|
|
|
|
|
|
|
boot_order = "disk,cdrom"
|
|
|
|
boot_command = [
|
|
|
|
"<enter><wait2><enter><wait><f6><esc><wait>",
|
|
|
|
" autoinstall<wait2> ds=nocloud;",
|
|
|
|
"<wait><enter>"
|
|
|
|
]
|
|
|
|
boot_wait = "2s"
|
|
|
|
|
|
|
|
communicator = "ssh"
|
|
|
|
ssh_username = "ubuntu"
|
|
|
|
ssh_password = var.ssh_password
|
|
|
|
ssh_timeout = "20m"
|
|
|
|
ssh_handshake_attempts = "100"
|
|
|
|
ssh_pty = true
|
|
|
|
|
|
|
|
CPUs = 2
|
|
|
|
RAM = 4096
|
|
|
|
|
|
|
|
network_adapters {
|
|
|
|
network = var.vsphere_network
|
|
|
|
network_card = "vmxnet3"
|
|
|
|
}
|
|
|
|
storage {
|
|
|
|
disk_size = 20480
|
|
|
|
disk_thin_provisioned = true
|
|
|
|
}
|
|
|
|
disk_controller_type = ["pvscsi"]
|
|
|
|
usb_controller = ["xhci"]
|
|
|
|
|
|
|
|
cd_files = [
|
|
|
|
"packer/preseed/UbuntuServer20.04/user-data",
|
|
|
|
"packer/preseed/UbuntuServer20.04/meta-data"
|
|
|
|
]
|
|
|
|
cd_label = "cidata"
|
|
|
|
iso_url = local.iso_authenticatedurl
|
|
|
|
iso_checksum = var.iso_checksum
|
|
|
|
|
|
|
|
shutdown_command = "echo '${var.ssh_password}' | sudo -S shutdown -P now"
|
|
|
|
shutdown_timeout = "5m"
|
|
|
|
|
|
|
|
export {
|
|
|
|
images = false
|
|
|
|
output_directory = "/scratch/ubuntuserver-baremetal"
|
|
|
|
}
|
|
|
|
remove_cdrom = true
|
|
|
|
}
|
2021-06-07 11:19:00 +00:00
|
|
|
|
|
|
|
build {
|
2021-06-17 09:21:22 +00:00
|
|
|
sources = [
|
|
|
|
"source.vsphere-iso.ubuntuserver",
|
|
|
|
"source.vsphere-iso.ubuntuserver-baremetal"
|
|
|
|
]
|
2021-06-07 11:19:00 +00:00
|
|
|
|
2021-06-08 07:24:39 +00:00
|
|
|
provisioner "ansible" {
|
2021-06-17 09:35:48 +00:00
|
|
|
only = ["vsphere-iso.ubuntuserver"]
|
2021-06-17 09:21:22 +00:00
|
|
|
|
2021-06-08 08:41:01 +00:00
|
|
|
playbook_file = "ansible/playbook.yml"
|
|
|
|
user = "ubuntu"
|
|
|
|
ansible_env_vars = [
|
|
|
|
"ANSIBLE_CONFIG=ansible/ansible.cfg"
|
|
|
|
]
|
2021-06-08 13:26:41 +00:00
|
|
|
use_proxy = "false"
|
2021-06-08 11:51:22 +00:00
|
|
|
extra_arguments = [
|
2021-06-08 14:39:12 +00:00
|
|
|
"--extra-vars", "ansible_ssh_pass=${var.ssh_password}"
|
2021-06-08 11:51:22 +00:00
|
|
|
]
|
2021-06-08 07:24:39 +00:00
|
|
|
}
|
2021-06-07 11:19:00 +00:00
|
|
|
|
|
|
|
post-processor "shell-local" {
|
2021-06-17 09:35:48 +00:00
|
|
|
only = ["vsphere-iso.ubuntuserver"]
|
2021-06-07 11:19:00 +00:00
|
|
|
inline = [
|
|
|
|
"pwsh -command \"& scripts/Update-OvfConfiguration.ps1 \\",
|
|
|
|
" -OVFFile '/scratch/ubuntuserver/${var.vm_guestos}-${var.vm_name}.ovf' \\",
|
|
|
|
" -Parameter @{'appliance.name'='${var.vm_guestos}';'appliance.version'='${var.vm_name}'}\"",
|
|
|
|
"pwsh -file scripts/Update-Manifest.ps1 \\",
|
|
|
|
" -ManifestFileName '/scratch/ubuntuserver/${var.vm_guestos}-${var.vm_name}.mf'",
|
|
|
|
"ovftool --acceptAllEulas --allowExtraConfig --overwrite \\",
|
|
|
|
" '/scratch/ubuntuserver/${var.vm_guestos}-${var.vm_name}.ovf' \\",
|
2021-06-09 08:39:00 +00:00
|
|
|
" /output/Ubuntu-Server-20.04.ova"
|
2021-06-07 11:19:00 +00:00
|
|
|
]
|
|
|
|
}
|
2021-06-17 09:21:22 +00:00
|
|
|
post-processor "shell-local" {
|
2021-06-17 09:35:48 +00:00
|
|
|
only = ["vsphere-iso.ubuntuserver-baremetal"]
|
2021-06-17 09:21:22 +00:00
|
|
|
inline = [
|
|
|
|
"ls /scratch/ubuntuserver-baremetal -lash",
|
2021-06-17 09:23:57 +00:00
|
|
|
"qemu-img convert -f vmdk -o raw \\",
|
2021-06-17 09:35:48 +00:00
|
|
|
" /scratch/ubuntuserver-baremetal/${var.vm_guestos}-${var.vm_name}-disk-0.vmdk \\",
|
2021-06-17 09:21:22 +00:00
|
|
|
" /scratch/ubuntuserver-baremetal/${var.vm_guestos}-${var.vm_name}.raw",
|
|
|
|
"ls /scratch/ubuntuserver-baremetal -lash",
|
2021-06-17 09:23:57 +00:00
|
|
|
"gzip -c \\",
|
|
|
|
" /scratch/ubuntuserver-baremetal/${var.vm_guestos}-${var.vm_name}.raw \\",
|
2021-06-17 09:21:22 +00:00
|
|
|
" > /output/Ubuntu-Server-20.04.raw.gz"
|
|
|
|
]
|
|
|
|
}
|
2021-06-07 11:19:00 +00:00
|
|
|
}
|