This repository contains Packer templates to generate CoreOS Parallels VM with parallels tools installed.
To build base image:
make coreos COREOS_VERSION="..."
Where COREOS_VERSION is "stable" (default), "beta" or "alpha"
Result VM will be generated in directory output/coreos
.
To build base image AND install Parallels tools to it:
make coreos-prlt COREOS_VERSION="..."
Result VM will be generated in directory output/coreos-prlt
.
By default you can logon to generated machine with vagrant insecure key:
ssh -i keys/vagrant core@<ip-address>
You can also pass custom cloud-config:
make coreos COREOS_CLOUD_CONFIG="custom-cloud-config.yml"
To generate Vagrant box without parallels tools:
make vagrant COREOS_VERSION="..."
To generate Vagrant box with parallels tools:
make vagrant-prlt COREOS_VERSION="..."
Box will be generated in output/vagrant
.