Build arguments and secrets
Introduction
One of the core features of Earthly is support for build arguments. Build arguments can be used to dynamically set environment variables inside the context of RUN commands.
Build arguments can be passed between targets or from the command line. They encourage writing generic Earthfiles and ultimately promote greater code-reuse.
Additionally, Earthly defines secrets which are similar to build arguments, but are exposed as environment variables when explicitly allowed.
A Quick Example
Arguments are declared with the ARG keyword.
Let's consider a "hello world" example that allows us to change who is being greeted (e.g. hello banana, hello eggplant etc). We will create a hello target that accepts the name
argument:
Then we will specify a value for the name
argument on the command line when we invoke earthly
:
This will output
If we re-run earthly +hello --name=world
, we will see that the echo command is cached (and won't re-display the hello world text):
Default values
Arguments may also have default values, which may be either constant or dynamic. For example, the following target will greet the name identified by the arg name
(which has a default value of John), with the current time:
If an arg has no default value, then the default value is the empty string.
Overriding Argument Values
Argument values can be set multiple ways:
On the command line
The value can be directly specified on the command line (as shown in the previous example):
From environment variables
Similar to above, except that the value is an environment variable:
Via the
EARTHLY_BUILD_ARGS
environment variableThe value can also be set via the
EARTHLY_BUILD_ARGS
environment variable.This may be useful if you have a set of build args that you'd like to always use and would prefer not to have to specify them on the command line every time. The
EARTHLY_BUILD_ARGS
environment variable may also be stored in your~/.bashrc
file, or some other shell-specific startup script.From a
.env
fileIt is also possible to create an
.env
file to contain the build arguments to pass to earthly. First create an.env
file with:Then simply run earthly:
Passing Argument values to targets
Build arguments can also be set when calling build targets. If multiple build arguments values are defined for the same argument name, Earthly will build the target for each value; this makes it easy to configure a "build matrix" within Earthly.
For example, we can create a new greetings
target which calls +hello
multiple times:
Then when we call earthly +greetings
, earthly will call +hello
three times:
In addition to the BUILD
command, build args can also be used with FROM
, COPY
, WITH DOCKER --load
and a number of other commands:
Another way to pass build args is by specifying a dynamic value, delimited by $(...)
. For example, in the following, the value of the arg name
will be set as the output of the shell command echo world
(which, of course is simply world
):
Passing secrets to RUN commands
Secrets are similar to build arguments; however, they are not defined in targets, but instead are explicitly defined for each RUN
command that is permitted to access them.
Here's an example Earthfile that accesses a secret stored under +secrets/passwd
and exposes it under the environment variable mypassword
:
If the environment variable name is identical to the secret ID. For example to accesses a secret stored under +secrets/passwd
and exposes it under the environment variable passwd
you can use the shorthand :
It's also possible to temporarily mount a secret as a file:
The file will not be saved to the image snapshot.
Setting secret values
The value for +secrets/passwd
in examples above must then be supplied when earthly is invoked.
This is possible in a few ways:
Directly, on the command line:
Via an environment variable:
If the value of the secret is omitted on the command line Earthly will lookup the environment variable with that name.
Via the environment variable
EARTHLY_SECRETS
Multiple secrets can be specified by separating them with a comma.
Via the
.env
file.Create a
.env
file in the same directory where you plan to runearthly
from. Its contents should be:Then simply run earthly:
Via cloud-based secrets. This option helps share secrets within a wider team. To read more about this see the cloud-based secrets guide.
Regardless of the approach chosen from above, once earthly is invoked, in our example, it will output:
How Arguments and Secrets affect caching
Commands in earthly must be re-evaluated when the command itself changes (e.g. echo "hello $name"
is changed to echo "greetings $name"
), or when one of its inputs has changed (e.g. --name=world
is changed to --name=banana
). Earthly creates a hash based on both the contents of the command and the contents of all defined arguments of the target build context.
However, in the case of secrets, the contents of the secret is not included in the hash; therefore, if the contents of a secret changes, Earthly is unable to detect such a change, and thus the command will not be re-evaluated.
Storage of local secrets
Earthly stores the contents of command-line-supplied secrets in memory on the localhost. When a RUN
command that requires a secret is evaluated by BuildKit, the BuildKit daemon will request the secret from the earthly command-line process and will temporarily mount the secret inside the runc container that is evaluating the RUN
command. Once the command finishes the secret is unmounted. It will not persist as an environment variable within the saved container snapshot. Secrets will be kept in-memory until the earthly command exits.
Earthly also supports cloud-based shared secrets which can be stored in the cloud. Secrets are never stored in the cloud unless a user creates an earthly account and explicitly calls the earthly secrets set ...
command to transmit the secret to the earthly cloud-based secrets server. For more information about cloud-based secrets, check out our cloud-based secrets management guide.
Last updated