add new generated partials after rebase
This commit is contained in:
parent
ccdb8ee62f
commit
20e8481a7c
|
@ -8,6 +8,10 @@
|
|||
usually a project (also called the "tenant") with whom the image is
|
||||
shared.
|
||||
|
||||
- `image_auto_accept_members` (bool) - When true, perform the image accept so the members can see the image in their
|
||||
project. This requires a user with priveleges both in the build project and
|
||||
in the members provided. Defaults to false.
|
||||
|
||||
- `image_disk_format` (string) - Disk format of the resulting image. This option works if
|
||||
use_blockstorage_volume is true.
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
<!-- Code generated from the comments of the DriverConfig struct in builder/vmware/common/driver_config.go; DO NOT EDIT MANUALLY -->
|
||||
|
||||
- `cleanup_remote_cache` (bool) - When set to true, Packer will cleanup the cache folder where the ISO file is stored during the build on the remote machine.
|
||||
By default, this is set to false.
|
||||
|
||||
- `fusion_app_path` (string) - Path to "VMware Fusion.app". By default this is
|
||||
/Applications/VMware Fusion.app but this setting allows you to
|
||||
customize this.
|
||||
|
|
|
@ -4,4 +4,5 @@
|
|||
for linked clones. Defaults to `false`.
|
||||
|
||||
- `convert_to_template` (bool) - Convert VM to a template. Defaults to `false`.
|
||||
|
||||
|
||||
- `export` (\*common.ExportConfig) - Export
|
|
@ -0,0 +1,25 @@
|
|||
<!-- Code generated from the comments of the ExportConfig struct in builder/vsphere/common/step_export.go; DO NOT EDIT MANUALLY -->
|
||||
|
||||
- `name` (string) - name of the ovf. defaults to the name of the VM
|
||||
|
||||
- `force` (bool) - overwrite ovf if it exists
|
||||
|
||||
- `images` (bool) - include iso and img image files that are attached to the VM
|
||||
|
||||
- `manifest` (string) - generate manifest using sha1, sha256, sha512. Defaults to 'sha256'. Use 'none' for no manifest.
|
||||
|
||||
- `options` ([]string) - Advanced ovf export options. Options can include:
|
||||
* mac - MAC address is exported for all ethernet devices
|
||||
* uuid - UUID is exported for all virtual machines
|
||||
* extraconfig - all extra configuration options are exported for a virtual machine
|
||||
* nodevicesubtypes - resource subtypes for CD/DVD drives, floppy drives, and serial and parallel ports are not exported
|
||||
|
||||
For example, adding the following export config option would output the mac addresses for all Ethernet devices in the ovf file:
|
||||
|
||||
```json
|
||||
...
|
||||
"export": {
|
||||
"options": ["mac"]
|
||||
},
|
||||
```
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<!-- Code generated from the comments of the ExportConfig struct in builder/vsphere/common/step_export.go; DO NOT EDIT MANUALLY -->
|
||||
You may optionally export an ovf from VSphere to the instance running Packer.
|
||||
|
||||
Example usage:
|
||||
|
||||
```json
|
||||
...
|
||||
"vm_name": "example-ubuntu",
|
||||
...
|
||||
"export": {
|
||||
"force": true,
|
||||
"output_directory": "./output_vsphere"
|
||||
},
|
||||
```
|
||||
The above configuration would create the following files:
|
||||
|
||||
```text
|
||||
./output_vsphere/example-ubuntu-disk-0.vmdk
|
||||
./output_vsphere/example-ubuntu.mf
|
||||
./output_vsphere/example-ubuntu.ovf
|
||||
```
|
|
@ -0,0 +1,10 @@
|
|||
<!-- Code generated from the comments of the OutputConfig struct in builder/vsphere/common/output_config.go; DO NOT EDIT MANUALLY -->
|
||||
|
||||
- `output_directory` (string) - This setting specifies the directory that
|
||||
artifacts from the build, such as the virtual machine files and disks,
|
||||
will be output to. The path to the directory may be relative or
|
||||
absolute. If relative, the path is relative to the working directory
|
||||
packer is executed from. This directory must not exist or, if
|
||||
created, must be empty prior to running the builder. By default this is
|
||||
"output-BUILDNAME" where "BUILDNAME" is the name of the build.
|
||||
|
|
@ -4,4 +4,7 @@
|
|||
for linked clones. Defaults to `false`.
|
||||
|
||||
- `convert_to_template` (bool) - Convert VM to a template. Defaults to `false`.
|
||||
|
||||
- `export` (\*common.ExportConfig) - Configuration for exporting VM to an ovf file.
|
||||
The VM will not be exported if no [Export Configuration](#export-configuration) is specified.
|
||||
|
Loading…
Reference in New Issue