container
Last updated
Was this helpful?
Last updated
Was this helpful?
Modules are deprecated and will be removed in version 0.14
. Please use -based configuration instead. See the for details.
Specify a container image to build or pull from a remote registry. You may also optionally specify services to deploy, tasks or tests to run inside the container.
Note that the runtime services have somewhat limited features in this module type. For example, you cannot specify replicas for redundancy, and various platform-specific options are not included. For those, look at other module types like or.
Below is the full schema reference.
The contains the complete YAML schema, and the describes each schema key.
container
modules also export values that are available in template strings. See the section below for details.
The values in the schema below are the default values.
kind
string
"Module"
"Module"
Yes
type
The type of this module.
string
Yes
Example:
name
The name of this module.
string
Yes
Example:
build
Specify how to build the module. Note that plugins may define additional keys on this object.
object
{"dependencies":[]}
No
build.dependencies[]
A list of modules that must be built before this module is built.
array[object]
[]
No
Example:
build.dependencies[].name
Module name to build ahead of this module.
string
Yes
build.dependencies[].copy[]
Specify one or more files or directories to copy from the built dependency to this module.
array[object]
[]
No
build.dependencies[].copy[].source
POSIX-style path or filename of the directory or file(s) to copy to the target.
posixPath
Yes
build.dependencies[].copy[].target
POSIX-style path or filename to copy the directory or file(s), relative to the build directory. Defaults to the same as source path.
posixPath
No
build.timeout
Maximum time in seconds to wait for build to finish.
number
600
No
build.targetImage
For multi-stage Dockerfiles, specify which image/stage to build (see https://docs.docker.com/engine/reference/commandline/build/#specifying-target-build-stage---target for details).
string
No
local
If set to true, Garden will run the build command, services, tests, and tasks in the module source directory, instead of in the Garden build directory (under .garden/build/).
Garden will therefore not stage the build for local modules. This means that include/exclude filters and ignore files are not applied to local modules, except to calculate the module/action versions.
If you use use build.dependencies[].copy
for one or more build dependencies of this module, the copied files
will be copied to the module source directory (instead of the build directory, as is the default case whenlocal = false
).
Note: This maps to the buildAtSource
option in this module's generated Build action (if any).
boolean
false
No
description
A description of the module.
string
No
disabled
Set this to true
to disable the module. You can use this with conditional template strings to disable modules based on, for example, the current environment or other variables (e.g. disabled: ${environment.name == "prod"}
). This can be handy when you only need certain modules for specific environments, e.g. only for development.
Disabling a module means that any services, tasks and tests contained in it will not be build, deployed or run.
If you disable the module, and its services, tasks or tests are referenced as runtime dependencies, Garden will automatically ignore those dependency declarations. Note however that template strings referencing the module's service or task outputs (i.e. runtime outputs) will fail to resolve when the module is disabled, so you need to make sure to provide alternate values for those if you're using them, using conditional expressions.
boolean
false
No
include[]
Specify a list of POSIX-style paths or globs that should be regarded as the source files for this module. Files that do not match these paths or globs are excluded when computing the version of the module, when responding to filesystem watch events, and when staging builds.
Also note that specifying an empty list here means no sources should be included.
If neither include
nor exclude
is set, and the module has a Dockerfile, Garden
will parse the Dockerfile and automatically set include
to match the files and
folders added to the Docker image (via the COPY
and ADD
directives in the Dockerfile).
If neither include
nor exclude
is set, and the module
specifies a remote image, Garden automatically sets include
to []
.
array[posixPath]
No
Example:
exclude[]
Specify a list of POSIX-style paths or glob patterns that should be excluded from the module. Files that match these paths or globs are excluded when computing the version of the module, when responding to filesystem watch events, and when staging builds.
Unlike the scan.exclude
field in the project config, the filters here have no effect on which files and directories are watched for changes. Use the project scan.exclude
field to affect those, if you have large directories that should not be watched for changes.
array[posixPath]
No
Example:
repositoryUrl
A remote repository URL. Currently only supports git servers. Must contain a hash suffix pointing to a specific branch or tag, with the format: #<branch|tag>
Garden will import the repository source code into this module, but read the module's config from the local garden.yml file.
gitUrl | string
No
Example:
allowPublish
When false, disables pushing this module to remote registries via the publish command.
boolean
true
No
generateFiles[]
A list of files to write to the module directory when resolving this module. This is useful to automatically generate (and template) any supporting files needed for the module.
array[object]
[]
No
generateFiles[].sourcePath
POSIX-style filename to read the source file contents from, relative to the path of the module (or the ConfigTemplate configuration file if one is being applied). This file may contain template strings, much like any other field in the configuration.
posixPath
No
generateFiles[].targetPath
POSIX-style filename to write the resolved file contents to, relative to the path of the module source directory (for remote modules this means the root of the module repository, otherwise the directory of the module configuration).
Note that any existing file with the same name will be overwritten. If the path contains one or more directories, they will be automatically created if missing.
posixPath
Yes
generateFiles[].resolveTemplates
By default, Garden will attempt to resolve any Garden template strings in source files. Set this to false to skip resolving template strings. Note that this does not apply when setting the value
field, since that's resolved earlier when parsing the configuration.
boolean
true
No
generateFiles[].value
The desired file contents as a string.
string
No
variables
A map of variables scoped to this particular module. These are resolved before any other parts of the module configuration and take precedence over project-scoped variables. They may reference project-scoped variables, and generally use any template strings normally allowed when resolving modules.
object
No
varfile
Specify a path (relative to the module root) to a file containing variables, that we apply on top of the
module-level variables
field.
The format of the files is determined by the configured file's extension:
.yaml
/.yml
- YAML. The file must consist of a YAML document, which must be a map (dictionary). Keys may contain any value type. YAML format is used by default.
.json
- JSON. Must contain a single JSON object (not an array).
NOTE: The default varfile format was changed to YAML in Garden v0.13, since YAML allows for definition of nested objects and arrays.
To use different module-level varfiles in different environments, you can template in the environment name
to the varfile name, e.g. varfile: "my-module.${environment.name}.env
(this assumes that the corresponding
varfiles exist).
posixPath
No
Example:
buildArgs
Specify build arguments to use when building the container image.
Note: Garden will always set a GARDEN_ACTION_VERSION
(alias GARDEN_MODULE_VERSION
) argument with the module/build version at build time.
object
{}
No
extraFlags[]
Specify extra flags to use when building the container image. Note that arguments may not be portable across implementations.
array[string]
No
platforms[]
Specify the platforms to build the image for. This is useful when building multi-platform images.
The format is os/arch
, e.g. linux/amd64
, linux/arm64
, etc.
array[string]
No
secrets
Secret values that can be mounted in the Dockerfile, but do not become part of the image filesystem or image manifest. This is useful e.g. for private registry auth tokens.
Build arguments and environment variables are inappropriate for secrets, as they persist in the final image.
The secret can later be consumed in the Dockerfile like so:
See also https://docs.docker.com/build/building/secrets/
object
No
Example:
image
Specify the image name for the container. Should be a valid Docker image identifier. If specified and the module does not contain a Dockerfile, this image will be used to deploy services for this module. If specified and the module does contain a Dockerfile, this identifier is used when pushing the built image.
string
No
dockerfile
POSIX-style name of a Dockerfile, relative to module root.
posixPath
No
services[]
A list of services to deploy from this container module.
array[object]
[]
No
services[].name
Valid RFC1035/RFC1123 (DNS) label (may contain lowercase letters, numbers and dashes, must start with a letter, and cannot end with a dash), cannot contain consecutive dashes or start with garden
, or be longer than 63 characters.
string
Yes
services[].dependencies[]
The names of any services that this service depends on at runtime, and the names of any tasks that should be executed before this service is deployed.
array[string]
[]
No
services[].disabled
Set this to true
to disable the service. You can use this with conditional template strings to enable/disable services based on, for example, the current environment or other variables (e.g. enabled: ${environment.name != "prod"}
). This can be handy when you only need certain services for specific environments, e.g. only for development.
Disabling a service means that it will not be deployed, and will also be ignored if it is declared as a runtime dependency for another service, test or task.
Note however that template strings referencing the service's outputs (i.e. runtime outputs) will fail to resolve when the service is disabled, so you need to make sure to provide alternate values for those if you're using them, using conditional expressions.
boolean
false
No
services[].command[]
The command/entrypoint to run the container with.
array[string]
No
Example:
services[].args[]
The arguments (on top of the command
, i.e. entrypoint) to run the container with.
array[string]
No
Example:
services[].env
Key/value map of environment variables. Keys must be valid POSIX environment variable names (must not start with GARDEN
) and values must be primitives or references to secrets.
object
{}
No
Example:
services[].cpu
object
{"min":10,"max":1000}
No
services[].cpu.min
The minimum amount of CPU the container needs to be available for it to be deployed, in millicpus (i.e. 1000 = 1 CPU)
number
10
No
services[].cpu.max
The maximum amount of CPU the container can use, in millicpus (i.e. 1000 = 1 CPU). If set to null will result in no limit being set.
number
1000
No
services[].memory
object
{"min":90,"max":1024}
No
services[].memory.min
The minimum amount of RAM the container needs to be available for it to be deployed, in megabytes (i.e. 1024 = 1 GB)
number
90
No
services[].memory.max
The maximum amount of RAM the container can use, in megabytes (i.e. 1024 = 1 GB) If set to null will result in no limit being set.
number
1024
No
services[].volumes[]
List of volumes that should be mounted when starting the container.
Note: If neither hostPath
nor module
is specified,
an empty ephemeral volume is created and mounted when deploying the container.
array[object]
[]
No
services[].volumes[].name
The name of the allocated volume.
string
Yes
services[].volumes[].containerPath
The path where the volume should be mounted in the container.
posixPath
Yes
services[].volumes[].hostPath
NOTE: Usage of hostPath is generally discouraged, since it doesn't work reliably across different platforms and providers. Some providers may not support it at all.
A local path or path on the node that's running the container, to mount in the container, relative to the config source directory (or absolute).
posixPath
No
Example:
services[].privileged
If true, run the main container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.
boolean
No
services[].addCapabilities[]
POSIX capabilities to add when running the container.
array[string]
No
services[].dropCapabilities[]
POSIX capabilities to remove when running the container.
array[string]
No
services[].tty
Specify if containers in this action have TTY support enabled (which implies having stdin support enabled).
boolean
false
No
services[].deploymentStrategy
Specifies the container's deployment strategy.
string
"RollingUpdate", "Recreate"
"RollingUpdate"
Yes
services[].annotations
Annotations to attach to the service (note: May not be applicable to all providers).
When using the Kubernetes provider, these annotations are applied to both Service and Pod resources. You can generally specify the annotations intended for both Pods or Services here, and the ones that don't apply on either side will be ignored (i.e. if you put a Service annotation here, it'll also appear on Pod specs but will be safely ignored there, and vice versa).
object
{}
No
Example:
services[].daemon
Whether to run the service as a daemon (to ensure exactly one instance runs per node). May not be supported by all providers.
boolean
false
No
services[].sync
Specifies which files or directories to sync to which paths inside the running containers of the service when it's in sync mode, and overrides for the container command and/or arguments.
Sync is enabled e.g. by setting the --sync
flag on the garden deploy
command.
object
No
services[].sync.args[]
Override the default container arguments when in sync mode.
array[string]
No
services[].sync.command[]
Override the default container command (i.e. entrypoint) when in sync mode.
array[string]
No
services[].sync.paths[]
Specify one or more source files or directories to automatically sync with the running container.
array[object]
No
services[].sync.paths[].source
Path to a local directory to be synchronized with the target.
This should generally be a templated path to another action's source path (e.g. ${actions.build.my-container-image.sourcePath}
), or a relative path.
If a path is hard-coded, we recommend sticking with relative paths here, and using forward slashes (/
) as a delimiter, as Windows-style paths with back slashes (\
) and absolute paths will work on some platforms, but they are not portable and will not work for users on other platforms.
Defaults to the Deploy action's config's directory if no value is provided.
string
"."
No
Example:
services[].sync.paths[].target
POSIX-style absolute path to sync to inside the container. The root path (i.e. "/") is not allowed.
posixPath
Yes
Example:
services[].sync.paths[].exclude[]
Specify a list of POSIX-style paths or glob patterns that should be excluded from the sync.
.git
directories and .garden
directories are always ignored.
array[posixPath]
No
Example:
services[].sync.paths[].mode
string
"one-way", "one-way-safe", "one-way-replica", "one-way-reverse", "one-way-replica-reverse", "two-way", "two-way-safe", "two-way-resolved"
"one-way-safe"
Yes
services[].sync.paths[].defaultFileMode
number
0o644
No
services[].sync.paths[].defaultDirectoryMode
number
0o755
No
services[].sync.paths[].defaultOwner
number | string
No
services[].sync.paths[].defaultGroup
number | string
No
services[].image
Specify an image ID to deploy. Should be a valid Docker image identifier. Not required if the module has a Dockerfile.
string
No
services[].ingresses[]
List of ingress endpoints that the service exposes.
array[object]
[]
No
Example:
services[].ingresses[].annotations
Annotations to attach to the ingress (Note: May not be applicable to all providers)
object
{}
No
Example:
services[].ingresses[].hostname
The hostname that should route to this service. Defaults to the default hostname configured in the provider configuration.
Note that if you're developing locally you may need to add this hostname to your hosts file.
hostname
No
services[].ingresses[].linkUrl
The link URL for the ingress to show in the console and in dashboards. Also used when calling the service with the call
command.
Use this if the actual URL is different from what's specified in the ingress, e.g. because there's a load balancer in front of the service that rewrites the paths.
Otherwise Garden will construct the link URL from the ingress spec.
string
No
services[].ingresses[].path
The path which should be routed to the service.
string
"/"
No
services[].ingresses[].port
The name of the container port where the specified paths should be routed.
string
Yes
services[].healthCheck
Specify how the service's health should be checked after deploying.
object
No
services[].healthCheck.httpGet
Set this to check the service's health by making an HTTP request.
object
No
services[].healthCheck.httpGet.path
The path of the service's health check endpoint.
string
Yes
services[].healthCheck.httpGet.port
The name of the port where the service's health check endpoint should be available.
string
Yes
services[].healthCheck.httpGet.scheme
string
"HTTP"
No
services[].healthCheck.command[]
Set this to check the service's health by running a command in its container.
array[string]
No
services[].healthCheck.tcpPort
Set this to check the service's health by checking if this TCP port is accepting connections.
string
No
services[].healthCheck.readinessTimeoutSeconds
The maximum number of seconds to wait until the readiness check counts as failed.
number
3
No
services[].healthCheck.livenessTimeoutSeconds
The maximum number of seconds to wait until the liveness check counts as failed.
number
3
No
services[].timeout
The maximum duration (in seconds) to wait for resources to deploy and become healthy.
number
300
No
services[].limits
Deprecated: Please use the cpu
and memory
fields instead.
Specify resource limits for the service.
object
No
services[].limits.cpu
Deprecated: This field will be removed in a future release.
The maximum amount of CPU the service can use, in millicpus (i.e. 1000 = 1 CPU)
number
No
services[].limits.memory
Deprecated: This field will be removed in a future release.
The maximum amount of RAM the service can use, in megabytes (i.e. 1024 = 1 GB)
number
No
services[].ports[]
List of ports that the service container exposes.
array[object]
[]
No
services[].ports[].name
The name of the port (used when referencing the port elsewhere in the service configuration).
string
Yes
services[].ports[].protocol
The protocol of the port.
string
"TCP"
No
services[].ports[].containerPort
The port exposed on the container by the running process. This will also be the default value for servicePort
.
This is the port you would expose in your Dockerfile and that your process listens on. This is commonly a non-privileged port like 8080 for security reasons.
The service port maps to the container port:servicePort:80 -> containerPort:8080 -> process:8080
number
Yes
Example:
services[].ports[].localPort
Specify a preferred local port to attach to when creating a port-forward to the service port. If this port is busy, a warning will be shown and an alternative port chosen.
number
No
Example:
services[].ports[].servicePort
The port exposed on the service. Defaults to containerPort
if not specified.
This is the port you use when calling a service from another service within the cluster. For example, if your service name is my-service and the service port is 8090, you would call it with: http://my-service:8090/some-endpoint.
It is common to use port 80, the default port number, so that you can call the service directly with http://my-service/some-endpoint.
The service port maps to the container port:servicePort:80 -> containerPort:8080 -> process:8080
number
No
Example:
services[].ports[].hostPort
Deprecated: This field will be removed in a future release.
number
No
services[].ports[].nodePort
Set this to expose the service on the specified port on the host node (may not be supported by all providers). Set to true
to have the cluster pick a port automatically, which is most often advisable if the cluster is shared by multiple users.
This allows you to call the service from the outside by the node's IP address and the port number set in this field.
number
No
services[].replicas
The number of instances of the service to deploy. Defaults to 3 for environments configured with production: true
, otherwise 1.
Note: This setting may be overridden or ignored in some cases. For example, when running with daemon: true
or if the provider doesn't support multiple replicas.
number
No
tests[]
A list of tests to run in the module.
array[object]
[]
No
tests[].name
The name of the test.
string
Yes
tests[].dependencies[]
The names of any services that must be running, and the names of any tasks that must be executed, before the test is run.
array[string]
[]
No
tests[].disabled
Set this to true
to disable the test. You can use this with conditional template strings to
enable/disable tests based on, for example, the current environment or other variables (e.g.enabled: ${environment.name != "prod"}
). This is handy when you only want certain tests to run in
specific environments, e.g. only during CI.
boolean
false
No
tests[].timeout
Maximum duration (in seconds) of the test run.
number
600
No
tests[].command[]
The command/entrypoint to run the container with.
array[string]
No
Example:
tests[].args[]
The arguments (on top of the command
, i.e. entrypoint) to run the container with.
array[string]
No
Example:
tests[].env
Key/value map of environment variables. Keys must be valid POSIX environment variable names (must not start with GARDEN
) and values must be primitives or references to secrets.
object
{}
No
Example:
tests[].cpu
object
{"min":10,"max":1000}
No
tests[].cpu.min
The minimum amount of CPU the container needs to be available for it to be deployed, in millicpus (i.e. 1000 = 1 CPU)
number
10
No
tests[].cpu.max
The maximum amount of CPU the container can use, in millicpus (i.e. 1000 = 1 CPU). If set to null will result in no limit being set.
number
1000
No
tests[].memory
object
{"min":90,"max":1024}
No
tests[].memory.min
The minimum amount of RAM the container needs to be available for it to be deployed, in megabytes (i.e. 1024 = 1 GB)
number
90
No
tests[].memory.max
The maximum amount of RAM the container can use, in megabytes (i.e. 1024 = 1 GB) If set to null will result in no limit being set.
number
1024
No
tests[].volumes[]
List of volumes that should be mounted when starting the container.
Note: If neither hostPath
nor module
is specified,
an empty ephemeral volume is created and mounted when deploying the container.
array[object]
[]
No
tests[].volumes[].name
The name of the allocated volume.
string
Yes
tests[].volumes[].containerPath
The path where the volume should be mounted in the container.
posixPath
Yes
tests[].volumes[].hostPath
NOTE: Usage of hostPath is generally discouraged, since it doesn't work reliably across different platforms and providers. Some providers may not support it at all.
A local path or path on the node that's running the container, to mount in the container, relative to the config source directory (or absolute).
posixPath
No
Example:
tests[].privileged
If true, run the main container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.
boolean
No
tests[].addCapabilities[]
POSIX capabilities to add when running the container.
array[string]
No
tests[].dropCapabilities[]
POSIX capabilities to remove when running the container.
array[string]
No
tests[].tty
Specify if containers in this action have TTY support enabled (which implies having stdin support enabled).
boolean
false
No
tests[].deploymentStrategy
Specifies the container's deployment strategy.
string
"RollingUpdate", "Recreate"
"RollingUpdate"
Yes
tests[].artifacts[]
Specify artifacts to copy out of the container after the run. The artifacts are stored locally under the .garden/artifacts
directory.
Note: Depending on the provider, this may require the container image to include sh
tar
, in order to enable the file transfer.
array[object]
No
Example:
tests[].artifacts[].source
A POSIX-style path or glob to copy. Must be an absolute path. May contain wildcards.
posixPath
Yes
Example:
tests[].artifacts[].target
A POSIX-style path to copy the artifacts to, relative to the project artifacts directory at .garden/artifacts
.
posixPath
"."
No
Example:
tests[].image
Specify an image ID to deploy. Should be a valid Docker image identifier. Not required if the module has a Dockerfile.
string
No
tests[].cacheResult
Set to false if you don't want the Test action result to be cached. Use this if the Test action needs to be run any time your project (or one or more of the Test action's dependants) is deployed. Otherwise the Test action is only re-run when its version changes, or when you run garden run
.
boolean
true
No
tasks[]
A list of tasks that can be run from this container module. These can be used as dependencies for services (executed before the service is deployed) or for other tasks.
array[object]
[]
No
tasks[].name
The name of the task.
string
Yes
tasks[].description
A description of the task.
string
No
tasks[].dependencies[]
The names of any tasks that must be executed, and the names of any services that must be running, before this task is executed.
array[string]
[]
No
tasks[].disabled
Set this to true
to disable the task. You can use this with conditional template strings to enable/disable tasks based on, for example, the current environment or other variables (e.g. enabled: ${environment.name != "prod"}
). This can be handy when you only want certain tasks to run in specific environments, e.g. only for development.
Disabling a task means that it will not be run, and will also be ignored if it is declared as a runtime dependency for another service, test or task.
Note however that template strings referencing the task's outputs (i.e. runtime outputs) will fail to resolve when the task is disabled, so you need to make sure to provide alternate values for those if you're using them, using conditional expressions.
boolean
false
No
tasks[].timeout
Maximum duration (in seconds) of the task's execution.
number
600
No
tasks[].command[]
The command/entrypoint to run the container with.
array[string]
No
Example:
tasks[].args[]
The arguments (on top of the command
, i.e. entrypoint) to run the container with.
array[string]
No
Example:
tasks[].env
Key/value map of environment variables. Keys must be valid POSIX environment variable names (must not start with GARDEN
) and values must be primitives or references to secrets.
object
{}
No
Example:
tasks[].cpu
object
{"min":10,"max":1000}
No
tasks[].cpu.min
The minimum amount of CPU the container needs to be available for it to be deployed, in millicpus (i.e. 1000 = 1 CPU)
number
10
No
tasks[].cpu.max
The maximum amount of CPU the container can use, in millicpus (i.e. 1000 = 1 CPU). If set to null will result in no limit being set.
number
1000
No
tasks[].memory
object
{"min":90,"max":1024}
No
tasks[].memory.min
The minimum amount of RAM the container needs to be available for it to be deployed, in megabytes (i.e. 1024 = 1 GB)
number
90
No
tasks[].memory.max
The maximum amount of RAM the container can use, in megabytes (i.e. 1024 = 1 GB) If set to null will result in no limit being set.
number
1024
No
tasks[].volumes[]
List of volumes that should be mounted when starting the container.
Note: If neither hostPath
nor module
is specified,
an empty ephemeral volume is created and mounted when deploying the container.
array[object]
[]
No
tasks[].volumes[].name
The name of the allocated volume.
string
Yes
tasks[].volumes[].containerPath
The path where the volume should be mounted in the container.
posixPath
Yes
tasks[].volumes[].hostPath
NOTE: Usage of hostPath is generally discouraged, since it doesn't work reliably across different platforms and providers. Some providers may not support it at all.
A local path or path on the node that's running the container, to mount in the container, relative to the config source directory (or absolute).
posixPath
No
Example:
tasks[].privileged
If true, run the main container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.
boolean
No
tasks[].addCapabilities[]
POSIX capabilities to add when running the container.
array[string]
No
tasks[].dropCapabilities[]
POSIX capabilities to remove when running the container.
array[string]
No
tasks[].tty
Specify if containers in this action have TTY support enabled (which implies having stdin support enabled).
boolean
false
No
tasks[].deploymentStrategy
Specifies the container's deployment strategy.
string
"RollingUpdate", "Recreate"
"RollingUpdate"
Yes
tasks[].artifacts[]
Specify artifacts to copy out of the container after the run. The artifacts are stored locally under the .garden/artifacts
directory.
Note: Depending on the provider, this may require the container image to include sh
tar
, in order to enable the file transfer.
array[object]
No
Example:
tasks[].artifacts[].source
A POSIX-style path or glob to copy. Must be an absolute path. May contain wildcards.
posixPath
Yes
Example:
tasks[].artifacts[].target
A POSIX-style path to copy the artifacts to, relative to the project artifacts directory at .garden/artifacts
.
posixPath
"."
No
Example:
tasks[].image
Specify an image ID to deploy. Should be a valid Docker image identifier. Not required if the module has a Dockerfile.
string
No
tasks[].cacheResult
Set to false if you don't want the Run action result to be cached. Use this if the Run action needs to be run any time your project (or one or more of the Run action's dependants) is deployed. Otherwise the Run action is only re-run when its version changes, or when you run garden run
.
boolean
true
No
The following keys are available via the ${modules.<module-name>}
template string key for container
modules.
${modules.<module-name>.buildPath}
The build path of the module.
string
Example:
${modules.<module-name>.name}
The name of the module.
string
${modules.<module-name>.path}
The source path of the module.
string
Example:
${modules.<module-name>.var.*}
A map of all variables defined in the module.
object
{}
${modules.<module-name>.var.<variable-name>}
string | number | boolean | link | array[link]
${modules.<module-name>.version}
The current version of the module.
string
Example:
${modules.<module-name>.outputs.local-image-name}
Alias for localImageName, for backward compatibility.
string
${modules.<module-name>.outputs.local-image-id}
Alias for localImageId, for backward compatibility.
string
${modules.<module-name>.outputs.deployment-image-name}
Alias for deploymentImageName, for backward compatibility.
string
${modules.<module-name>.outputs.deployment-image-id}
Alias for deploymentImageId, for backward compatibility.
string
The following keys are available via the ${runtime.services.<service-name>}
template string key for container
module services.
Note that these are only resolved when deploying/running dependants of the service, so they are not usable for every field.
${runtime.services.<service-name>.version}
The current version of the service.
string
Example:
The following keys are available via the ${runtime.tasks.<task-name>}
template string key for container
module tasks.
Note that these are only resolved when deploying/running dependants of the task, so they are not usable for every field.
${runtime.tasks.<task-name>.version}
The current version of the task.
string
Example:
> dependencies
> > name
> > copy
> > > source
> > > target
> timeout
> targetImage
Note that you can also exclude files using the exclude
field or by placing .gardenignore
files in your source tree, which use the same format as .gitignore
files. See the for details.
Note that you can also explicitly include files using the include
field. If you also specify the include
field, the files/patterns specified here are filtered from the files matched by include
. See the for details.
> sourcePath
> targetPath
> resolveTemplates
> value
.env
- Standard "dotenv" format, as defined by .
> name
> dependencies
> disabled
> command
> args
> env
> cpu
> > min
> > max
> memory
> > min
> > max
> volumes
> > name
> > containerPath
> > hostPath
> privileged
> addCapabilities
> dropCapabilities
> tty
> deploymentStrategy
> annotations
> daemon
> sync
See the for more information.
> > args
> > command
> > paths
> > > source
> > > target
> > > exclude
> > > mode
The sync mode to use for the given paths. See the for details.
> > > defaultFileMode
The default permission bits, specified as an octal, to set on files at the sync target. Defaults to 0o644 (user can read/write, everyone else can read). See the for more information.
> > > defaultDirectoryMode
The default permission bits, specified as an octal, to set on directories at the sync target. Defaults to 0o755 (user can read/write, everyone else can read). See the for more information.
> > > defaultOwner
Set the default owner of files and directories at the target. Specify either an integer ID or a string name. See the for more information.
> > > defaultGroup
Set the default group on files and directories at the target. Specify either an integer ID or a string name. See the for more information.
> image
> ingresses
> > annotations
> > hostname
> > linkUrl
> > path
> > port
> healthCheck
> > httpGet
> > > path
> > > port
> > > scheme
> > command
> > tcpPort
> > readinessTimeoutSeconds
> > livenessTimeoutSeconds
> timeout
> limits
> > cpu
> > memory
> ports
> > name
> > protocol
> > containerPort
> > localPort
> > servicePort
> > hostPort
> > nodePort
> replicas
> name
> dependencies
> disabled
> timeout
> command
> args
> env
> cpu
> > min
> > max
> memory
> > min
> > max
> volumes
> > name
> > containerPath
> > hostPath
> privileged
> addCapabilities
> dropCapabilities
> tty
> deploymentStrategy
> artifacts
> > source
> > target
> image
> cacheResult
> name
> description
> dependencies
> disabled
> timeout
> command
> args
> env
> cpu
> > min
> > max
> memory
> > min
> > max
> volumes
> > name
> > containerPath
> > hostPath
> privileged
> addCapabilities
> dropCapabilities
> tty
> deploymentStrategy
> artifacts
> > source
> > target
> image
> cacheResult