Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.05 KB

README.md

File metadata and controls

32 lines (20 loc) · 1.05 KB

packer-builder-vmware-ova

This packer plugin leverages VMware OVF Tool to build a Vagrant box based on a generic (not already Vagrant friendly) OVA file like those used in VMware virtual appliances.

This plugin is used to build the a couple boxes (ESXi 5.5/6.0 and vCSA 5.5/6.0) available in the packer templates here

Prerequisites

Software:

  • VMware OVF Tool

Installation

Starting from Packer v0.7.0 there are new ways of installing plugins, see the official Packer documentation for further instructions.

Usage

In your JSON template add the following post processor:

  "builders": [
    {
        "type": "vmware-ova",
        "source_path": "<some file>.ova"
    }
  ]

If you don't want to compile the code, you can grab a release here.

Thanks go GoSDDC for excellent example code and OVF Tool integration.