Skip to content

A collection of Windows Server builds using HashiCorp Packer and the vsphere-iso Builder

License

Notifications You must be signed in to change notification settings

cwestwater/packer-vsphere-iso

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HashiCorp Packer with VMware vSphere to build Windows Server Images on vCenter

This repo hosts a set of files to build Windows Server 2016, 2019 and 2022 Operating Systems in a VMware vSphere environment using HashiCorp Packer.

OS Versions

All ISO's used are obtained from the Microsoft Evaluation Center, specifically:

VMware Tools

The latest version of VMware Tools can always be obtained at this link

Packer and Modules Versions

The version of Packer, the vsphere-iso plugin and the Windows Update plugin to be used is defined in the first section of the win*.pkr.hcl file:

packer {

    required_version = ">= 1.9.4"

    required_plugins {
        vsphere = {
            version = ">= v1.2.2"
            source = "github.com/hashicorp/vsphere"
        }
    }

    required_plugins{
        windows-update = {
            version =">= 0.14.3"
            source = "github.com/rgl/windows-update"
        }
    }
}

Packer should be downloaded from the Packer Downloads page and installed appropriately. See the Install Packer tutorial.

autounattend.xml Boot Files

The autounattend.xml files are located in the bootfiles folder.

These files are used to perform initial boot of the OS and perform such tasks as partition the disk, set regional options, select the OS version, etc. These are best edited using the Windows System Image Manager which is part of Windows ADK.

The autounattend files specifically perform these steps:

  • Set Regional options to en-GB - Lines 6-12
  • Partition the disk to suite a EFI layout - Line 16-66
  • Choose the OS to install - Line 79
  • Sets Name and Organisation - Lines 90-91, 106-107
  • Loads the PVSCSI driver - Line 97
  • Sets the computer name - Line 104
  • Sets the Time Zone - Line 105
  • Sets the PowerShell Execution Policy - Lines 135-146
  • Disable network discovery prompt for all users - Lines 147-151
  • Turn on network discovery for all network profiles - Lines 152-156
  • Calls the script install-vmtools64.cmd to install VMware Tools - Line 157-161
  • Calls the script initial-setup.ps1 which sets up PowerShell and WinRM - Line 162-166
  • Sets the local Administrator Account password - Lines 175-178

You will see the local Administrator account shown in clear text. You should use WSIM to set your own password and use WISM to encrypt it. See Hide Sensitive Data in an Answer File

These are pretty standard. The parts added to work with Packer/vSphere are the addition of the PVSCSI driver and the call to the script install-vmtools64.cmd.

Packer HCL Files

The Packer specific files are located in the build folder.

These files are written using HashiCorp HCL2 which is the preferred way to write Packer builds. Each OS has three files:

  • variables.pkr.hcl - defines all the variables used in the build
  • win*.pkrvar.hcl - the values for all the variables defined above
  • win*.pkr.hcl - the build definition for the OS

To be able to run the builds in your environment you need to fill in the missing values in the win*.auto.pkrvars.hcl files:

vcenter_username = ""
vcenter_password = ""
vcenter_server = ""
vcenter_datacenter = ""
vcenter_cluster = ""
vcenter_datastore = ""
vcenter_folder = ""
vm_network = ""
vcenter_iso_datastore = ""
os_iso_path = ""
vmtools_iso_path = ""

Look in the variables.pkr.hcl file for details on each variable.

I have placed an example variables value file called example.pkrvar.hcl the the top level of the build folder with the values filled out for a fictitious vCenter environment so you can see how they can be completed.

The build of the VM is defined in the win*.pkr.hcl files. The file is split into the 'sections':

  • vCenter credentials
  • vCenter details - which vCenter, datastore, network,, etc. to build on
  • VM Hardware Configuration - the hardware settings for the VM
  • Removable Media Configuration - the details of the OS and VMware Tools ISO
  • Build Settings - items such as the boot command, winrm connection, shutdown command, etc.
  • Provisioner Settings - the scripts used to setup the OS and Windows Update plugin

Each of the Operating System win*.pkr.hcl files has four options:

  • Datacenter
  • Datacenter Core
  • Standard
  • Standard Core

How to Run

Once all variables have a value in the win*.auto.pkrvars.hcl file browse to the OS build folder you want to run. Run the following command:

Windows Server 2022:

packer build -force .

Windows Server 2019:

packer build -force .

Windows Server 2016:

packer build -force .

Note the . at the end of the command. This makes Packer process all the files in the folder.

Each of these commands will build all four OS versions. If you want to target a particular OS version you can use the following command (Windows Server 2022 Standard as an example):

packer build -force -only "Windows Server 2022.vsphere-iso.win2022dc" .

OS Customisation

Once the VMs have completed initial setup and Packer can connect using WinRM, four PowerShell scripts are run to perform the following:

  • Disable TLS 1.0 and 1.1
  • Removes various features
  • Disables services Microsoft recommends
  • Performs some general OS customisations

These scripts are found in the scripts folder.

A Note on Credentials

The credentials needed to successfully build are as follows:

  • vCenter username and password - the variables var.vcenter_username and var.vcenter_password
  • WinRM username and password - the variables var.winrm_username and var.winrm_password
  • Local Administrator account username and password - found in the autounattend.xml files

Important - the WinRM username and password should match the Local Administrator account username and password as this is what Packer uses to connect to the VM for customisation. In the files in this repo I have added the local Administrator account password in clear text. Please use WSIM to hide the password.

It is important not to store any credentials in any of the files so they cannot be leaked. Please use environment variables or pass them at the command line. For example to pass vCenter credentials and the WinRM password at the command line for Windows Server 2022 you could run:

packer build -force -var "[email protected]" -var "vcenter_password=VMware1!" -var "winrm_password=VMware1!" .

Please see Template User Variables in the Packer documentation for more details.

Maintenance

Once you have filled out the variable values in the relevant win*.auto.pkrvars.hcl files and placed the ISOs in the datastore and folder as defined in that file, the only real maintenance you need to do is update VMware tools. This is accomplished by downloading the latest ISO as detailed the VMware Tools section. You then update the variable value var.vmtools_iso_file with the downloaded ISO filename.

About

A collection of Windows Server builds using HashiCorp Packer and the vsphere-iso Builder

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published