/centos-vsphere

CentOS templates for VMware vSphere

Primary LanguageShellApache License 2.0Apache-2.0

Overview

Experimental support for vSphere - nothing to see here yet. This template is in-progress

This repository contains Packer templates for CentOS that can create virtual machine instances using the VMware vSphere Hypervisor.

Packer supports two modes for creating VMware vSphere virtual machines:

  • Create instances directly on the vSphere Hypervisor machine using SSH
  • Create instances locally then upload them via the vSphere post-processor

Currently these templates support the former method - direct creation on the vSphere Hypervisor machine SSH.

Prerequisites

You must enable the following on your ESXi server, as they are not enabled by default:

  • SSH
  • ARP packet inspection

To enable SSH, on the ESXi system console, choose the following menu options:

Customize System (F2) > Troubleshooting Mode Options > Enable SSH

You must also enable the ability for the ESXi machine to obtain VM IP address information by ARP packet inspection. Enable by running the following on the ESXi machine:

$ ssh root@<esx_ip>
# esxcli system settings advanced set -o /Net/GuestIPHack -i 1
# exit

Building the boxes

To build all the boxes, you will need Packer and a vSphere Hypervisor (ESXi 5 or higher) installed.

A GNU Make Makefile drives the process via the following targets:

make        # Build all the box types (VirtualBox & VMware)
make test   # Run tests against all the boxes
make list   # Print out individual targets
make clean  # Clean up build detritus

Proxy Settings

The templates respect the following network proxy environment variables and forward them on to the virtual machine environment during the box creation process, should you be using a proxy:

  • http_proxy
  • https_proxy
  • ftp_proxy
  • rsync_proxy
  • no_proxy

Tests

The tests are written in Serverspec and require the vagrant-serverspec plugin to be installed with:

vagrant plugin install vagrant-serverspec

The Makefile has individual targets for each box type with the prefix test-* should you wish to run tests individually for each box.

Similarly there are targets with the prefix ssh-* for registering a newly-built box with vagrant and for logging in using just one command to do exploratory testing. For example, to do exploratory testing on the VirtualBox training environmnet, run the following command:

make ssh-box/virtualbox/centos65-nocm.box

Upon logout make ssh-* will automatically de-register the box as well.

Makefile.local override

You can create a Makefile.local file alongside the Makefile to override some of the default settings. The variables can that can be currently used are:

  • CM
  • CM_VERSION
  • HEADLESS
  • <iso_path>
  • UPDATE

Makefile.local is most commonly used to override the default configuration management tool, for example with Chef:

# Makefile.local
CM := chef

Changing the value of the CM variable changes the target suffixes for the output of make list accordingly.

Possible values for the CM variable are:

  • nocm - No configuration management tool
  • chef - Install Chef
  • chefdk - Install Chef Development Kit
  • puppet - Install Puppet
  • salt - Install Salt

You can also specify a variable CM_VERSION, if supported by the configuration management tool, to override the default of latest. The value of CM_VERSION should have the form x.y or x.y.z, such as CM_VERSION := 11.12.4

The variable HEADLESS can be set to run Packer in headless mode. Set HEADLESS := true, the default is false.

The variable UPDATE can be used to perform OS patch management. The default is to not apply OS updates by default. When UPDATE := true, the latest OS updates will be applied.

Another use for Makefile.local is to override the default locations for the Ubuntu install ISO files.

For CentOS, the ISO path variables are:

  • CENTOS65_X86_64

This override is commonly used to speed up Packer builds by pointing at pre-downloaded ISOs instead of using the default download Internet URLs: CENTOS65_X86_64 := file:///Volumes/CentOS/CentOS-6.5-x86_64-bin-DVD1.iso

Contributing

  1. Fork and clone the repo.
  2. Create a new branch, please don't work in your master branch directly.
  3. Add new Serverspec or Bats tests in the test/ subtree for the change you want to make. Run make test on a relevant template to see the tests fail (like make test-virtualbox/centos65).
  4. Fix stuff. Use make ssh to interactively test your box (like make ssh-virtualbox/centos65).
  5. Run make test on a relevant template (like make test-virtualbox/centos65) to see if the tests pass. Repeat steps 3-5 until done.
  6. Update README.md and AUTHORS to reflect any changes.
  7. If you have a large change in mind, it is still preferred that you split them into small commits. Good commit messages are important. The git documentatproject has some nice guidelines on writing descriptive commit messages.
  8. Push to your fork and submit a pull request.
  9. Once submitted, a full make test run will be performed against your change in the build farm. You will be notified if the test suite fails.