packer-cn/README.md

133 lines
4.2 KiB
Markdown
Raw Normal View History

2017-06-27 05:07:10 -04:00
# Packer Builder for VMware vSphere
2017-07-01 12:16:22 -04:00
This a plugin for [HashiCorp Packer](https://www.packer.io/). It uses native vSphere API, and creates virtual machines remotely.
2017-06-27 05:07:10 -04:00
- VMware Player is not required
- Builds are incremental, VMs are not created from scratch but cloned from base templates - similar to [amazon-ebs](https://www.packer.io/docs/builders/amazon-ebs.html) builder
- Official vCenter API is used, no ESXi host [modification](https://www.packer.io/docs/builders/vmware-iso.html#building-on-a-remote-vsphere-hypervisor) is required
2017-05-14 18:15:24 -04:00
2017-06-23 19:19:44 -04:00
## Usage
2017-06-27 05:07:10 -04:00
* Download the plugin from [Releases](https://github.com/jetbrains-infra/packer-builder-vsphere/releases) page
* [Install](https://www.packer.io/docs/extending/plugins.html#installing-plugins) the plugin, or simply put it into the same directory with configuration files
2017-06-23 19:19:44 -04:00
2017-06-27 05:07:10 -04:00
## Minimal Example
```json
2017-06-09 18:44:24 -04:00
{
2017-06-27 05:07:10 -04:00
"builders": [
{
"type": "vsphere",
"vcenter_server": "vcenter.domain.com",
2017-06-27 05:07:10 -04:00
"username": "root",
"password": "secret",
"template": "ubuntu",
"vm_name": "vm-1",
"host": "esxi-1.domain.com",
"ssh_username": "root",
"ssh_password": "secret"
}
],
"provisioners": [
{
"type": "shell",
"inline": [ "echo hello" ]
}
]
2017-06-09 18:44:24 -04:00
}
```
2017-05-31 05:49:28 -04:00
2017-06-27 05:07:10 -04:00
## Parameters
2017-07-01 12:16:22 -04:00
2017-07-01 12:27:09 -04:00
Connection:
* `vcenter_server` - [**mandatory**] vCenter server hostname.
* `username` - [**mandatory**] vSphere username.
* `password` - [**mandatory**] vSphere password.
* `insecure_connection` - do not validate server's TLS certificate. `false` by default.
* `datacenter` - required if there are several datacenters.
2017-06-27 05:07:10 -04:00
Destination:
2017-07-01 12:27:09 -04:00
* `template` - [**mandatory**] name of source VM.
* `vm_name` - [**mandatory**] name of target VM.
2017-07-01 10:38:50 -04:00
* `folder` - VM folder where target VM is created.
2017-07-01 12:27:09 -04:00
* `host` - [**mandatory**] vSphere host where target VM is created.
2017-06-28 05:19:46 -04:00
* `resource_pool` - by default a root of vSphere host.
* `datastore` - required if vSphere host has multiple datastores attached.
* `linked_clone` - create VM as a linked clone from latest snapshot. `false` by default.
2017-06-27 05:07:10 -04:00
Hardware customization:
2017-07-01 11:03:52 -04:00
* `CPUs` - number of CPU sockets. Inherited from source VM by default.
2017-07-01 16:43:40 -04:00
* `CPU_reservation` - Amount of reserved CPU resources in MHz. Inherited from source VM by default.
2017-07-01 16:52:35 -04:00
* `CPU_limit` - Upper limit of available CPU resources in MHz. Inherited from source VM by default, set to `-1` for reset.
2017-07-01 11:32:16 -04:00
* `RAM` - Amount of RAM in megabytes. Inherited from source VM by default.
2017-07-01 17:02:49 -04:00
* `RAM_reservation` - Amount of reserved RAM in MB. Inherited from source VM by default.
2017-05-31 05:49:28 -04:00
2017-07-01 12:27:09 -04:00
Provisioning:
* `ssh_username` - [**mandatory**] username in guest OS.
* `ssh_password` - [**mandatory**] password in guest OS.
2017-06-27 05:07:10 -04:00
Post-processing:
2017-06-28 05:19:46 -04:00
* `shutdown_command` - VMware guest tools are used by default.
2017-07-01 11:32:16 -04:00
* `shutdown_timeout` - [Duration](https://golang.org/pkg/time/#ParseDuration) how long to wait for a graceful shutdown. 5 minutes by default.
2017-06-28 05:19:46 -04:00
* `create_snapshot` - add a snapshot, so VM can be used as a base for linked clones. `false` by default.
* `convert_to_template` - convert VM to a template. `false` by default.
2017-06-27 05:07:10 -04:00
## Complete Example
2017-05-14 18:15:24 -04:00
```json
{
2017-06-28 05:19:46 -04:00
"variables": {
"vsphere_password": "secret",
"guest_password": "secret"
},
"builders": [
{
"type": "vsphere",
"vcenter_server": "vcenter.domain.com",
2017-06-28 05:19:46 -04:00
"username": "root",
"password": "{{user `vsphere_password`}}",
2017-07-01 12:16:22 -04:00
"insecure_connection": true,
"datacenter": "dc1",
2017-06-28 05:19:46 -04:00
"template": "ubuntu",
2017-07-01 10:38:50 -04:00
"folder": "folder1/folder2",
2017-06-28 05:19:46 -04:00
"vm_name": "vm-1",
"host": "esxi-1.domain.com",
"resource_pool": "pool1/pool2",
"datastore": "datastore1",
"linked_clone": true,
2017-07-01 11:03:52 -04:00
"CPUs": 2,
2017-07-01 16:43:40 -04:00
"CPU_reservation": 1000,
2017-07-01 16:52:35 -04:00
"CPU_limit": 2000,
2017-07-01 11:32:16 -04:00
"RAM": 8192,
2017-07-01 17:02:49 -04:00
"RAM_reservation": 2048,
2017-06-28 05:19:46 -04:00
"ssh_username": "root",
"ssh_password": "{{user `guest_password`}}",
"shutdown_command": "echo '{{user `guest_password`}}' | sudo -S shutdown -P now",
2017-07-01 11:32:16 -04:00
"shutdown_timeout": "5m",
2017-06-28 05:19:46 -04:00
"create_snapshot": true,
"convert_to_template": true
}
],
"provisioners": [
{
"type": "shell",
"environment_vars": [
"DEBIAN_FRONTEND=noninteractive"
],
"execute_command": "echo '{{user `guest_password`}}' | {{.Vars}} sudo -ES bash -eux '{{.Path}}'",
"inline": [
"apt-get install -y zip"
]
}
]
2017-05-14 18:15:24 -04:00
}
```