Exec
Exec
The exec resource allows the execution of arbitrary commands and scripts. Depending on the parameters specified, the commands are executed either on the local machine or inside of a container.
When either the image
or target
fields are specified, the command is executed inside of a container.
When neither of these fields are specified, the command is executed on the local machine.
Local execution
When running on the local machine, the command runs in the local user space, and has access to all the environment variables that the user executing jumppad run has access too. Additional environment variables, and the working directory for the command can be specified as part of the resource.
Log files for an exec running on the local machine are written to $HOME/.jumppad/logs/exec_[name].log
and the rendered
script can be found in the jumppad temp directory $HOME/.jumppad/tmp/exec[name].sh
.
Remote execution
Execution can either be in a stand alone container or can target an existing and running container.
When targeting an existing container, the target
field must be specified.
When running in a stand alone container, the image
block must be specified.
Setting outputs
Output variables for the exec resource can be set by echoing a key value pair to the output file inside the script.
An environment variable ${EXEC_OUTPUT}
is automatically added to the environment of the script and points to the output.
Any outputs set in the script are automatically parsed into a map and are available via the output parameter.
Attributes
Script script
required
type: string
The script to execute.
WorkingDirectory working_directory
type: string
The working directory to execute the script in.
Daemon daemon
type: bool
The process will be run as a daemon if set to true.
Only valid for local execution.
Timeout timeout
type: string
The timeout for the script to execute as a duration e.g. 30s.
Environment environment
type: map[string]string
Environment variables to set for the script.
The image to use for the container.
Only valid for remote execution in a standalone container.
A reference to a target container resource to execute the script in.
Only valid for remote execution in an existing container.
The network to attach the container to.
Only valid for remote execution in an existing container.
The volumes to mount to the container.
Only valid for remote execution in an existing container.
The user to run the script as.
Only valid for remote execution in an existing container.
ExitCode exit_code
type: int
The exit code the script completed with.
Output output
type: map[string]string
Any console output that the script outputs.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Meta ID meta.id
string
The full ID of the resource e.g. `resource.type.name`. This is computed from the full resource path:
Meta Type meta.type
string
The type of the resource. This taken from the type label of the resource definition.
Meta Name meta.name
string
The name of the resource. This taken from the name label of the resource definition.
PID pid
type: int
This is the pid of the parent process.
Only valid for local execution.
Image
Image defines a Docker image used when creating this container. An Image can be stored in a public or a private repository.
Attributes
Name name
required
type: string
Name of the image to use when creating the container, can either be the full canonical name or short name for Docker official images. e.g. `consul:v1.6.1` or `docker.io/consul:v1.6.1`.
Username username
type: string
Username to use when connecting to a private image repository
Password password
type: string
Password to use when connecting to a private image repository, for both username and password interpolated environment variables can be used in place of static values.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
ID id
type: string
ID is the unique identifier for the image, this is independent of tag and changes each time the image is built. An image that has been tagged multiple times also shares the same ID. ID string `hcl:"id,optional" json:"id,omitempty"`
NetworkAttachment
Network attachment defines a network to which the container is attached.
Attributes
ID id
required
type: string
ID of the network to attach the container to, specified in reference format. e.g. to attach to a network called `cloud`.
IPAddress ip_address
type: string
Static IP address to assign container for the network, the ip address must be within range defined by the network subnet. If this parameter is omitted an IP address will be automatically assigned.
Aliases aliases
type: []string
Aliases allow alternate names to specified for the container. Aliases can be used to reference a container across the network, the container will respond to ping and other network resolution using the primary assigned name `[name].container.shipyard.run` and the aliases.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Name name
type: string
Name will equal the name of the network as created by jumppad.
AssignedAddress assigned_address
type: string
`assigned_address` will equal the assigned IP address for the network. This will equal ip_address if set; otherwise, this is the automatically assigned IP address.
Volume
A volume type allows the specification of an attached volume.
Attributes
Source source
required
type: string
The source volume to mount in the container, can be specified as a relative `./` or absolute path `/usr/local/bin`. Relative paths are relative to the file declaring the container.
Destination destination
required
type: string
The destination in the container to mount the volume to, must be an absolute path.
Type type
type: string
The type of the mount, can be one of the following values:
bind: bind the source path to the destination path in the container
volume: source is a Docker volume
tmpfs: create a temporary filesystem
ReadOnly read_only
type: bool
Whether or not the volume is read only.
BindPropagation bind_propagation
type: string
Configures bind propagation for Docker volume mounts, only applies to bind mounts, can be one of the following values:
shared
slave
private
rslave
rprivate
For more information please see the Docker documentation https://docs.docker.com/storage/bind-mounts/#configure-bind-propagation
BindPropagationNonRecursive bind_propagation_non_recursive
type: bool
Configures recursiveness of the bind mount.
By default Docker mounts with the equivalent of mount --rbind
meaning that mounts below the the source directory are visible in the container.
or instance running docker run --rm --mount type=bind,src=/,target=/host,readonly
busybox will make /run
of the host available as/host/run
in the container. To make matters even worse it will be writable (since only the toplevel bind is set readonly, not the children).
If bind_propagation_non_recursive
is set to true then the container will only see an empty /host/run
, meaning thetmpfs
which is typically mounted to /run
on the host is not propagated into the container.
SelinuxRelabel selinux_relabel
type: string
Configures Selinux relabeling for the container (usually specified as :z or :Z) and can be one of the following values:
shared (Equivalent to :z)
private (Equivalent to :Z)
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
User
User and Group configuration to be used when running a container, by default Docker runs commands in the container as root id 0.
Attributes
User user
required
type: string
Linux user ID or user name to run the container as, this overrides the default user configured in the container image.
Group group
required
type: string
Linux group ID or group name to run the container as, this overrides the default group configured in the container image.
group = "root"
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Examples
Local
Remote
Last updated