packer-cn/website/source/docs/post-processors/compress.html.md

77 lines
2.2 KiB
Markdown
Raw Normal View History

---
2017-06-14 21:04:16 -04:00
description: |
The Packer compress post-processor takes an artifact with files (such as from
VMware or VirtualBox) and compresses the artifact into a single archive.
2015-07-22 22:31:00 -04:00
layout: docs
2017-06-14 21:04:16 -04:00
page_title: 'Compress - Post-Processors'
sidebar_current: 'docs-post-processors-compress'
---
# Compress Post-Processor
Type: `compress`
The Packer compress post-processor takes an artifact with files (such as from
VMware or VirtualBox) and compresses the artifact into a single archive.
## Configuration
### Optional:
2015-06-18 08:13:48 -04:00
By default, packer will build archives in `.tar.gz` format with the following
filename: `packer_{{.BuildName}}_{{.BuilderType}}`. If you want to change this
you will need to specify the `output` option.
2017-06-14 21:04:16 -04:00
- `output` (string) - The path to save the compressed archive. The archive
2018-10-26 20:02:51 -04:00
format is inferred from the filename. E.g. `.tar.gz` will be a gzipped
tarball. `.zip` will be a zip file. If the extension can't be detected
packer defaults to `.tar.gz` behavior but will not change the filename.
2015-06-18 08:13:48 -04:00
You can use `{{.BuildName}}` and `{{.BuilderType}}` in your output path. If
you are executing multiple builders in parallel you should make sure
`output` is unique for each one. For example `packer_{{.BuildName}}.zip`.
2017-06-14 21:04:16 -04:00
- `format` (string) - Disable archive format autodetection and use provided
string.
- `compression_level` (number) - Specify the compression level, for
2015-07-22 23:25:58 -04:00
algorithms that support it, from 1 through 9 inclusive. Typically higher
compression levels take longer but produce smaller files. Defaults to `6`
2015-06-18 08:13:48 -04:00
- `keep_input_artifact` (boolean) - if `true`, keep both the source files and
the compressed file; if `false`, discard the source files. Defaults to
`false`
2015-06-18 08:13:48 -04:00
### Supported Formats
2015-07-22 22:31:00 -04:00
Supported file extensions include `.zip`, `.tar`, `.gz`, `.tar.gz`, `.lz4` and
`.tar.lz4`. Note that `.gz` and `.lz4` will fail if you have multiple files to
compress.
2015-06-18 08:13:48 -04:00
## Examples
2015-07-22 22:31:00 -04:00
Some minimal examples are shown below, showing only the post-processor
configuration:
2017-06-14 21:04:16 -04:00
``` json
{
"type": "compress",
"output": "archive.tar.lz4"
}
```
2017-06-14 21:04:16 -04:00
``` json
{
"type": "compress",
"output": "{{.BuildName}}_bundle.zip"
}
```
2017-06-14 21:04:16 -04:00
``` json
{
"type": "compress",
"output": "log_{{.BuildName}}.gz",
"compression_level": 9
}
```