artifact Block
Placement | job -> group -> task -> artifact |
The artifact
block instructs Nomad to fetch and unpack a remote resource,
such as a file, tarball, or binary. Nomad downloads artifacts using the popular
go-getter
library, which permits downloading artifacts from a
variety of locations using a URL as the input source.
Nomad supports downloading http
, https
, git
, hg
and S3
artifacts. If
these artifacts are archived (zip
, tgz
, bz2
, xz
), they are
automatically unarchived before the starting the task.
artifact
Parameters
destination
(string: "local/")
- Specifies the directory path to download the artifact, relative to the root of the task's working directory. If omitted, the default value is to place the artifact inlocal/
. The destination is treated as a directory unlessmode
is set tofile
. Source files will be downloaded into that directory path. For more details on how thedestination
interacts with task drivers, see the Filesystem internals documentation.mode
(string: "any")
- One ofany
,file
, ordir
. If set tofile
thedestination
must be a file, not a directory. By default thedestination
will belocal/<filename>
.options
(map<string|string>: nil)
- Specifies configuration parameters to fetch the artifact. The key-value pairs map directly to parameters appended to the suppliedsource
URL. Please see thego-getter
documentation for a complete list of options and examples.headers
(map<string|string>: nil)
- Specifies HTTP headers to set when fetching the artifact usinghttp
orhttps
protocol. Please see thego-getter
headers documentation for more information.source
(string: <required>)
- Specifies the URL of the artifact to download. Seego-getter
for details.
Operation Limits
The client artifact
configuration can set limits to
specific artifact operations to prevent excessive data download or operation
time.
If a task's artifact
retrieval exceeds one of those limits, the task will be
interrupted and fail to start. Refer to the task events for more information.
artifact
Examples
The following examples only show the artifact
blocks. Remember that the
artifact
block is only valid in the placements listed above.
Download File
This example downloads the artifact from the provided URL and places it in
local/file.txt
. The local/
path is relative to the task's working
directory.
To set HTTP headers in the request for the source the optional headers
field
can be configured.
To use HTTP basic authentication, preprend the username and password to the
hostname in the URL. All special characters, including the username and
password, must be URL encoded. For example, for a username exampleUser
and
the password pass/word!
:
Download using git
This example downloads the artifact from the provided GitHub URL and places it at
local/repo
, as specified by the optional destination
parameter.
To download from a private repo, sshkey needs to be set. The key must be
base64-encoded string. On Linux, you can run base64 -w0 <file>
to encode the
file. Or use HCL2
expressions to read and encode the key from a file on your machine:
To clone specific refs or at a specific depth, use the ref
and depth
options:
Download and Unarchive
This example downloads and unarchives the result in local/file
. Because the
source URL is an archive extension, Nomad will automatically decompress it:
To disable automatic unarchiving, set the archive
option to false:
Download and Verify Checksums
This example downloads an artifact and verifies the resulting artifact's checksum before proceeding. If the checksum is invalid, an error will be returned.
Download from an S3-compatible Bucket
These examples download artifacts from Amazon S3. There are several different types of S3 bucket addressing and S3 region-specific endpoints. Non-Amazon S3-compatible endpoints like Minio are supported, but you must explicitly set the "s3::" prefix.
This example uses path-based notation on a publicly-accessible bucket:
If a bucket requires authentication, you can avoid the use of credentials by
using EC2 IAM instance profiles. If this is not possible,
credentials may be supplied via the options
parameter:
To force the S3-specific syntax, use the s3::
prefix:
Alternatively you can use virtual hosted style:
DigitalOcean Spaces provide S3-compatible object storage and can be
used in conjunction with the artifact
block. Given a bucket named
my-bucket-example
located in the sfo3
region and a file named my_app.tar.gz
,
the following artifact block will work, provided the bucket and file are public.
This uses the origin endpoint as detailed directly from Digital Ocean.
If the bucket or file are private, the artifact source string needs to be
modified to add the s3::
prefix. The bucket name is also moved to form part
of the URL path component.
Environment
The artifact
downloader by default does not have access to the environment variables
set for the Nomad client. Inheritance of environment variables can be managed through the artifact.set_environment_variables
client configuration.