helm
Modules are deprecated and will be removed in version 0.14
. Please use action-based configuration instead. See the 0.12 to Bonsai migration guide for details.
Description
Specify a Helm chart (either in your repository or remote from a registry) to deploy.
Refer to the Helm guide for usage instructions.
Garden uses Helm 3.16.2.
Below is the full schema reference. For an introduction to configuring Garden modules, please look at our Configuration guide.
The first section contains the complete YAML schema, and the second section describes each schema key.
helm
modules also export values that are available in template strings. See the Outputs section below for details.
Complete YAML Schema
The values in the schema below are the default values.
Configuration Keys
kind
kind
Type | Allowed Values | Default | Required |
---|---|---|---|
| "Module" |
| Yes |
type
type
The type of this module.
Type | Required |
---|---|
| Yes |
Example:
name
name
The name of this module.
Type | Required |
---|---|
| Yes |
Example:
build
build
Specify how to build the module. Note that plugins may define additional keys on this object.
Type | Default | Required |
---|---|---|
|
| No |
build.dependencies[]
build.dependencies[]
build > dependencies
A list of modules that must be built before this module is built.
Type | Default | Required |
---|---|---|
|
| No |
Example:
build.dependencies[].name
build.dependencies[].name
build > dependencies > name
Module name to build ahead of this module.
Type | Required |
---|---|
| Yes |
build.dependencies[].copy[]
build.dependencies[].copy[]
build > dependencies > copy
Specify one or more files or directories to copy from the built dependency to this module.
Type | Default | Required |
---|---|---|
|
| No |
build.dependencies[].copy[].source
build.dependencies[].copy[].source
build > dependencies > copy > source
POSIX-style path or filename of the directory or file(s) to copy to the target.
Type | Required |
---|---|
| Yes |
build.dependencies[].copy[].target
build.dependencies[].copy[].target
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.
Type | Required |
---|---|
| No |
build.timeout
build.timeout
build > timeout
Maximum time in seconds to wait for build to finish.
Type | Default | Required |
---|---|---|
|
| No |
local
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 when local = false
).
Note: This maps to the buildAtSource
option in this module's generated Build action (if any).
Type | Default | Required |
---|---|---|
|
| No |
description
description
A description of the module.
Type | Required |
---|---|
| No |
disabled
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 deployed or run. It also means that the module is not built unless it is declared as a build dependency by another enabled module (in which case building this module is necessary for the dependant to be built).
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.
Type | Default | Required |
---|---|---|
|
| No |
include[]
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.
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 Configuration Files guide for details.
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 local chart sources, Garden automatically sets include
to: ["*", "charts/**/*", "templates/**/*"]
.
If neither include
nor exclude
is set and the module specifies a remote chart, Garden automatically sets ìnclude
to []
.
Type | Required |
---|---|
| No |
Example:
exclude[]
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.
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 Configuration Files guide for details.
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.
Type | Required |
---|---|
| No |
Example:
repositoryUrl
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.
Type | Required |
---|---|
| No |
Example:
allowPublish
allowPublish
When false, disables pushing this module to remote registries via the publish command.
Type | Default | Required |
---|---|---|
|
| No |
generateFiles[]
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.
Type | Default | Required |
---|---|---|
|
| No |
generateFiles[].sourcePath
generateFiles[].sourcePath
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.
Type | Required |
---|---|
| No |
generateFiles[].targetPath
generateFiles[].targetPath
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.
Type | Required |
---|---|
| Yes |
generateFiles[].resolveTemplates
generateFiles[].resolveTemplates
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.
Type | Default | Required |
---|---|---|
|
| No |
generateFiles[].value
generateFiles[].value
generateFiles > value
The desired file contents as a string.
Type | Required |
---|---|
| No |
variables
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.
Type | Required |
---|---|
| No |
varfile
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..env
- Standard "dotenv" format, as defined by dotenv..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).
Type | Required |
---|---|
| No |
Example:
namespace
namespace
A valid Kubernetes namespace name. Must be a valid RFC1035/RFC1123 (DNS) label (may contain lowercase letters, numbers and dashes, must start with a letter, and cannot end with a dash) and must not be longer than 63 characters.
Type | Required |
---|---|
| No |
portForwards[]
portForwards[]
Manually specify port forwards that Garden should set up when deploying in dev or watch mode. If specified, these override the auto-detection of forwardable ports, so you'll need to specify the full list of port forwards to create.
Type | Required |
---|---|
| No |
portForwards[].name
portForwards[].name
portForwards > name
An identifier to describe the port forward.
Type | Required |
---|---|
| No |
portForwards[].resource
portForwards[].resource
portForwards > resource
The full resource kind and name to forward to, e.g. Service/my-service or Deployment/my-deployment. Note that Garden will not validate this ahead of attempting to start the port forward, so you need to make sure this is correctly set. The types of resources supported will match that of the kubectl port-forward
CLI command.
Type | Required |
---|---|
| Yes |
portForwards[].targetPort
portForwards[].targetPort
portForwards > targetPort
The port number on the remote resource to forward to.
Type | Required |
---|---|
| Yes |
portForwards[].localPort
portForwards[].localPort
portForwards > localPort
The preferred local port to forward from. If none is set, a random port is chosen. If the specified port is not available, a warning is shown and a random port chosen instead.
Type | Required |
---|---|
| No |
releaseName
releaseName
Optionally override the release name used when installing (defaults to the Deploy name).
Type | Required |
---|---|
| No |
timeout
timeout
Time in seconds to wait for Helm to complete any individual Kubernetes operation (like Jobs for hooks).
Type | Default | Required |
---|---|---|
|
| No |
values
values
Map of values to pass to Helm when rendering the templates. May include arrays and nested objects. When specified, these take precedence over the values in the values.yaml
file (or the files specified in valueFiles
).
Type | Default | Required |
---|---|---|
|
| No |
valueFiles[]
valueFiles[]
Specify value files to use when rendering the Helm chart. These will take precedence over the values.yaml
file bundled in the Helm chart, and should be specified in ascending order of precedence. Meaning, the last file in this list will have the highest precedence.
If you also specify keys under the values
field, those will effectively be added as another file at the end of this list, so they will take precedence over other files listed here.
Note that the paths here should be relative to the config root, and the files should be contained in this action config's directory.
Type | Default | Required |
---|---|---|
|
| No |
atomicInstall
atomicInstall
Whether to set the --atomic
flag during installs and upgrades. Set to true
if you'd like the changes applied to be reverted on failure. Set to false if e.g. you want to see more information about failures and then manually roll back, instead of having Helm do it automatically on failure.
Note that setting atomic
to true
implies wait
.
Type | Default | Required |
---|---|---|
|
| No |
base
base
The name of another helm
module to use as a base for this one. Use this to re-use a Helm chart across multiple services. For example, you might have an organization-wide base chart for certain types of services. If set, this module will by default inherit the following properties from the base module: serviceResource
, values
Each of those can be overridden in this module. They will be merged with a JSON Merge Patch (RFC 7396).
Type | Required |
---|---|
| No |
Example:
chart
chart
A valid Helm chart name or URI (same as you'd input to helm install
) Required if the action doesn't contain the Helm chart itself.
Type | Required |
---|---|
| No |
Example:
chartPath
chartPath
The path, relative to the module path, to the chart sources (i.e. where the Chart.yaml file is, if any). Not used when base
is specified.
Type | Default | Required |
---|---|---|
|
| No |
dependencies[]
dependencies[]
List of names of services that should be deployed before this chart.
Type | Default | Required |
---|---|---|
|
| No |
sync
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.
Note that serviceResource
must also be specified to enable sync.
Sync is enabled by setting the --sync
flag on the garden deploy
command.
See the Code Synchronization guide for more information.
Type | Required |
---|---|
| No |
sync.args[]
sync.args[]
sync > args
Override the default container arguments when in sync mode.
Type | Required |
---|---|
| No |
sync.command[]
sync.command[]
sync > command
Override the default container command (i.e. entrypoint) when in sync mode.
Type | Required |
---|---|
| No |
sync.paths[]
sync.paths[]
sync > paths
Specify one or more source files or directories to automatically sync with the running container.
Type | Required |
---|---|
| No |
sync.paths[].source
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.
Type | Default | Required |
---|---|---|
|
| No |
Example:
sync.paths[].target
sync.paths[].target
POSIX-style absolute path to sync to inside the container. The root path (i.e. "/") is not allowed.
Type | Required |
---|---|
| Yes |
Example:
sync.paths[].exclude[]
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.
Type | Required |
---|---|
| No |
Example:
sync.paths[].mode
sync.paths[].mode
The sync mode to use for the given paths. See the Code Synchronization guide for details.
Type | Allowed Values | Default | Required |
---|---|---|---|
| "one-way", "one-way-safe", "one-way-replica", "one-way-reverse", "one-way-replica-reverse", "two-way", "two-way-safe", "two-way-resolved" |
| Yes |
sync.paths[].defaultFileMode
sync.paths[].defaultFileMode
sync > paths > 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 Mutagen docs for more information.
Type | Default | Required |
---|---|---|
|
| No |
sync.paths[].defaultDirectoryMode
sync.paths[].defaultDirectoryMode
sync > paths > 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 Mutagen docs for more information.
Type | Default | Required |
---|---|---|
|
| No |
sync.paths[].defaultOwner
sync.paths[].defaultOwner
Set the default owner of files and directories at the target. Specify either an integer ID or a string name. See the Mutagen docs for more information.
Type | Required |
---|---|
| No |
sync.paths[].defaultGroup
sync.paths[].defaultGroup
Set the default group on files and directories at the target. Specify either an integer ID or a string name. See the Mutagen docs for more information.
Type | Required |
---|---|
| No |
sync.containerName
sync.containerName
sync > containerName
Optionally specify the name of a specific container to sync to. If not specified, the first container in the workload is used.
Type | Required |
---|---|
| No |
localMode
localMode
[EXPERIMENTAL] Configures the local application which will send and receive network requests instead of the target resource specified by localMode.target
or defaultTarget
. One of those fields must be specified to enable local mode for the action.
The selected container of the target Kubernetes resource will be replaced by a proxy container which runs an SSH server to proxy requests. Reverse port-forwarding will be automatically configured to route traffic to the locally run application and back.
Local mode is enabled by setting the --local
option on the garden deploy
command. Local mode always takes the precedence over sync mode if there are any conflicting service names.
Health checks are disabled for services running in local mode.
See the Local Mode guide for more information.
Note! This feature is still experimental. Some incompatible changes can be made until the first non-experimental release.
Type | Required |
---|---|
| No |
localMode.ports[]
localMode.ports[]
localMode > ports
The reverse port-forwards configuration for the local application.
Type | Required |
---|---|
| No |
localMode.ports[].local
localMode.ports[].local
The local port to be used for reverse port-forward.
Type | Required |
---|---|
| No |
localMode.ports[].remote
localMode.ports[].remote
The remote port to be used for reverse port-forward.
Type | Required |
---|---|
| No |
localMode.command[]
localMode.command[]
localMode > command
The command to run the local application. If not present, then the local application should be started manually.
Type | Required |
---|---|
| No |
localMode.restart
localMode.restart
localMode > restart
Specifies restarting policy for the local application. By default, the local application will be restarting infinitely with 1000ms between attempts.
Type | Default | Required |
---|---|---|
|
| No |
localMode.restart.delayMsec
localMode.restart.delayMsec
localMode > restart > delayMsec
Delay in milliseconds between the local application restart attempts. The default value is 1000ms.
Type | Default | Required |
---|---|---|
|
| No |
localMode.restart.max
localMode.restart.max
Max number of the local application restarts. Unlimited by default.
Type | Default | Required |
---|---|---|
|
| No |
localMode.target
localMode.target
localMode > target
The remote Kubernetes resource to proxy traffic from. If specified, this is used instead of defaultTarget
.
Type | Required |
---|---|
| No |
localMode.target.kind
localMode.target.kind
The kind of Kubernetes resource to find.
Type | Allowed Values | Required |
---|---|---|
| "Deployment", "DaemonSet", "StatefulSet" | Yes |
localMode.target.name
localMode.target.name
The name of the resource, of the specified kind
. If specified, you must also specify kind
.
Type | Required |
---|---|
| No |
localMode.target.podSelector
localMode.target.podSelector
localMode > target > podSelector
A map of string key/value labels to match on any Pods in the namespace. When specified, a random ready Pod with matching labels will be picked as a target, so make sure the labels will always match a specific Pod type.
Type | Required |
---|---|
| No |
localMode.target.containerName
localMode.target.containerName
localMode > target > containerName
The name of a container in the target. Specify this if the target contains more than one container and the main container is not the first container in the spec.
Type | Required |
---|---|
| No |
repo
repo
The repository URL to fetch the chart from. Defaults to the "stable" helm repo (https://charts.helm.sh/stable).
Type | Required |
---|---|
| No |
serviceResource
serviceResource
The Deployment, DaemonSet or StatefulSet or Pod that Garden should regard as the Garden service in this module (not to be confused with Kubernetes Service resources).
This can either reference a workload (i.e. a Deployment, DaemonSet or StatefulSet) via the kind
and name
fields, or a Pod via the podSelector
field.
Because a Helm chart can contain any number of Kubernetes resources, this needs to be specified for certain Garden features and commands to work.
Type | Required |
---|---|
| No |
serviceResource.kind
serviceResource.kind
serviceResource > kind
The type of Kubernetes resource to sync files to.
Type | Allowed Values | Default | Required |
---|---|---|---|
| "Deployment", "DaemonSet", "StatefulSet" |
| Yes |
serviceResource.containerName
serviceResource.containerName
serviceResource > containerName
The name of a container in the target. Specify this if the target contains more than one container and the main container is not the first container in the spec.
Type | Required |
---|---|
| No |
serviceResource.podSelector
serviceResource.podSelector
serviceResource > podSelector
A map of string key/value labels to match on any Pods in the namespace. When specified, a random ready Pod with matching labels will be picked as a target, so make sure the labels will always match a specific Pod type.
Type | Required |
---|---|
| No |
serviceResource.name
serviceResource.name
serviceResource > name
The name of the resource to sync to. If the chart contains a single resource of the specified Kind, this can be omitted.
This can include a Helm template string, e.g. '{{ template "my-chart.fullname" . }}'. This allows you to easily match the dynamic names given by Helm. In most cases you should copy this directly from the template in question in order to match it. Note that you may need to add single quotes around the string for the YAML to be parsed correctly.
Type | Required |
---|---|
| No |
serviceResource.containerModule
serviceResource.containerModule
serviceResource > containerModule
The Garden module that contains the sources for the container. This needs to be specified under serviceResource
in order to enable syncing, but is not necessary for tasks and tests. Must be a container
module.
Note: If you specify a module here, you don't need to specify it additionally under build.dependencies
.
Type | Required |
---|---|
| No |
Example:
skipDeploy
skipDeploy
Set this to true if the chart should only be built, but not deployed as a service. Use this, for example, if the chart should only be used as a base for other modules.
Type | Default | Required |
---|---|---|
|
| No |
tasks[]
tasks[]
The task definitions for this module.
Type | Default | Required |
---|---|---|
|
| No |
tasks[].name
tasks[].name
tasks > name
The name of the task.
Type | Required |
---|---|
| Yes |
tasks[].description
tasks[].description
tasks > description
A description of the task.
Type | Required |
---|---|
| No |
tasks[].dependencies[]
tasks[].dependencies[]
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.
Type | Default | Required |
---|---|---|
|
| No |
tasks[].disabled
tasks[].disabled
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.
Type | Default | Required |
---|---|---|
|
| No |
tasks[].timeout
tasks[].timeout
tasks > timeout
Maximum duration (in seconds) of the task's execution.
Type | Default | Required |
---|---|---|
|
| No |
tasks[].cacheResult
tasks[].cacheResult
tasks > cacheResult
Set to false if you don't want the Runs's result to be cached. Use this if the Run needs to be run any time your project (or one or more of the Run's dependants) is deployed. Otherwise the Run is only re-run when its version changes, or when you run garden run
.
Type | Default | Required |
---|---|---|
|
| No |
tasks[].command[]
tasks[].command[]
tasks > command
The command/entrypoint used to run inside the container.
Type | Required |
---|---|
| No |
Example:
tasks[].args[]
tasks[].args[]
tasks > args
The arguments to pass to the command/entrypoint used for execution.
Type | Required |
---|---|
| No |
Example:
tasks[].env
tasks[].env
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.
Type | Default | Required |
---|---|---|
|
| No |
Example:
tasks[].artifacts[]
tasks[].artifacts[]
tasks > artifacts
Specify artifacts to copy out of the container after the run. The artifacts are stored locally under the .garden/artifacts
directory.
Type | Default | Required |
---|---|---|
|
| No |
tasks[].artifacts[].source
tasks[].artifacts[].source
A POSIX-style path or glob to copy. Must be an absolute path. May contain wildcards.
Type | Required |
---|---|
| Yes |
Example:
tasks[].artifacts[].target
tasks[].artifacts[].target
A POSIX-style path to copy the artifacts to, relative to the project artifacts directory at .garden/artifacts
.
Type | Default | Required |
---|---|---|
|
| No |
Example:
tasks[].namespace
tasks[].namespace
tasks > namespace
A valid Kubernetes namespace name. Must be a valid RFC1035/RFC1123 (DNS) label (may contain lowercase letters, numbers and dashes, must start with a letter, and cannot end with a dash) and must not be longer than 63 characters.
Type | Required |
---|---|
| No |
tasks[].resource
tasks[].resource
tasks > resource
The Deployment, DaemonSet or StatefulSet or Pod that Garden should use to execute this task. If not specified, the serviceResource
configured on the module will be used. If neither is specified, an error will be thrown.
This can either reference a workload (i.e. a Deployment, DaemonSet or StatefulSet) via the kind
and name
fields, or a Pod via the podSelector
field.
The following pod spec fields from the service resource will be used (if present) when executing the task:
Warning: Garden will retain configMaps
and secrets
as volumes, but remove persistentVolumeClaim
volumes from the Pod spec, as they might already be mounted.
affinity
automountServiceAccountToken
containers
dnsConfig
dnsPolicy
enableServiceLinks
hostAliases
hostIPC
hostNetwork
hostPID
hostname
imagePullSecrets
nodeName
nodeSelector
overhead
preemptionPolicy
priority
priorityClassName
runtimeClassName
schedulerName
securityContext
serviceAccount
serviceAccountName
shareProcessNamespace
subdomain
tolerations
topologySpreadConstraints
volumes
Type | Required |
---|---|
| No |
tasks[].resource.kind
tasks[].resource.kind
The type of Kubernetes resource to sync files to.
Type | Allowed Values | Default | Required |
---|---|---|---|
| "Deployment", "DaemonSet", "StatefulSet" |
| Yes |
tasks[].resource.containerName
tasks[].resource.containerName
tasks > resource > containerName
The name of a container in the target. Specify this if the target contains more than one container and the main container is not the first container in the spec.
Type | Required |
---|---|
| No |
tasks[].resource.podSelector
tasks[].resource.podSelector
tasks > resource > podSelector
A map of string key/value labels to match on any Pods in the namespace. When specified, a random ready Pod with matching labels will be picked as a target, so make sure the labels will always match a specific Pod type.
Type | Required |
---|---|
| No |
tasks[].resource.name
tasks[].resource.name
The name of the resource to sync to. If the chart contains a single resource of the specified Kind, this can be omitted.
This can include a Helm template string, e.g. '{{ template "my-chart.fullname" . }}'. This allows you to easily match the dynamic names given by Helm. In most cases you should copy this directly from the template in question in order to match it. Note that you may need to add single quotes around the string for the YAML to be parsed correctly.
Type | Required |
---|---|
| No |
tasks[].resource.containerModule
tasks[].resource.containerModule
tasks > resource > containerModule
The Garden module that contains the sources for the container. This needs to be specified under serviceResource
in order to enable syncing, but is not necessary for tasks and tests. Must be a container
module.
Note: If you specify a module here, you don't need to specify it additionally under build.dependencies
.
Type | Required |
---|---|
| No |
Example:
tests[]
tests[]
The test suite definitions for this module.
Type | Default | Required |
---|---|---|
|
| No |
tests[].name
tests[].name
tests > name
The name of the test.
Type | Required |
---|---|
| Yes |
tests[].dependencies[]
tests[].dependencies[]
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.
Type | Default | Required |
---|---|---|
|
| No |
tests[].disabled
tests[].disabled
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.
Type | Default | Required |
---|---|---|
|
| No |
tests[].timeout
tests[].timeout
tests > timeout
Maximum duration (in seconds) of the test run.
Type | Default | Required |
---|---|---|
|
| No |
tests[].command[]
tests[].command[]
tests > command
The command/entrypoint used to run the test inside the container.
Type | Required |
---|---|
| No |
Example:
tests[].args[]
tests[].args[]
tests > args
The arguments to pass to the container used for testing.
Type | Required |
---|---|
| No |
Example:
tests[].env
tests[].env
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.
Type | Default | Required |
---|---|---|
|
| No |
Example:
tests[].artifacts[]
tests[].artifacts[]
tests > artifacts
Specify artifacts to copy out of the container after the run. The artifacts are stored locally under the .garden/artifacts
directory.
Type | Default | Required |
---|---|---|
|
| No |
tests[].artifacts[].source
tests[].artifacts[].source
A POSIX-style path or glob to copy. Must be an absolute path. May contain wildcards.
Type | Required |
---|---|
| Yes |
Example:
tests[].artifacts[].target
tests[].artifacts[].target
A POSIX-style path to copy the artifacts to, relative to the project artifacts directory at .garden/artifacts
.
Type | Default | Required |
---|---|---|
|
| No |
Example:
tests[].resource
tests[].resource
tests > resource
The Deployment, DaemonSet or StatefulSet or Pod that Garden should use to execute this test suite. If not specified, the serviceResource
configured on the module will be used. If neither is specified, an error will be thrown.
This can either reference a workload (i.e. a Deployment, DaemonSet or StatefulSet) via the kind
and name
fields, or a Pod via the podSelector
field.
The following pod spec fields from the service resource will be used (if present) when executing the test suite:
Warning: Garden will retain configMaps
and secrets
as volumes, but remove persistentVolumeClaim
volumes from the Pod spec, as they might already be mounted.
affinity
automountServiceAccountToken
containers
dnsConfig
dnsPolicy
enableServiceLinks
hostAliases
hostIPC
hostNetwork
hostPID
hostname
imagePullSecrets
nodeName
nodeSelector
overhead
preemptionPolicy
priority
priorityClassName
runtimeClassName
schedulerName
securityContext
serviceAccount
serviceAccountName
shareProcessNamespace
subdomain
tolerations
topologySpreadConstraints
volumes
Type | Required |
---|---|
| No |
tests[].resource.kind
tests[].resource.kind
The type of Kubernetes resource to sync files to.
Type | Allowed Values | Default | Required |
---|---|---|---|
| "Deployment", "DaemonSet", "StatefulSet" |
| Yes |
tests[].resource.containerName
tests[].resource.containerName
tests > resource > containerName
The name of a container in the target. Specify this if the target contains more than one container and the main container is not the first container in the spec.
Type | Required |
---|---|
| No |
tests[].resource.podSelector
tests[].resource.podSelector
tests > resource > podSelector
A map of string key/value labels to match on any Pods in the namespace. When specified, a random ready Pod with matching labels will be picked as a target, so make sure the labels will always match a specific Pod type.
Type | Required |
---|---|
| No |
tests[].resource.name
tests[].resource.name
The name of the resource to sync to. If the chart contains a single resource of the specified Kind, this can be omitted.
This can include a Helm template string, e.g. '{{ template "my-chart.fullname" . }}'. This allows you to easily match the dynamic names given by Helm. In most cases you should copy this directly from the template in question in order to match it. Note that you may need to add single quotes around the string for the YAML to be parsed correctly.
Type | Required |
---|---|
| No |
tests[].resource.containerModule
tests[].resource.containerModule
tests > resource > containerModule
The Garden module that contains the sources for the container. This needs to be specified under serviceResource
in order to enable syncing, but is not necessary for tasks and tests. Must be a container
module.
Note: If you specify a module here, you don't need to specify it additionally under build.dependencies
.
Type | Required |
---|---|
| No |
Example:
version
version
The chart version to deploy.
Type | Required |
---|---|
| No |
Outputs
Module Outputs
The following keys are available via the ${modules.<module-name>}
template string key for helm
modules.
${modules.<module-name>.buildPath}
${modules.<module-name>.buildPath}
The build path of the module.
Type |
---|
|
Example:
${modules.<module-name>.name}
${modules.<module-name>.name}
The name of the module.
Type |
---|
|
${modules.<module-name>.path}
${modules.<module-name>.path}
The source path of the module.
Type |
---|
|
Example:
${modules.<module-name>.var.*}
${modules.<module-name>.var.*}
A map of all variables defined in the module.
Type | Default |
---|---|
|
|
${modules.<module-name>.var.<variable-name>}
${modules.<module-name>.var.<variable-name>}
Type |
---|
|
${modules.<module-name>.version}
${modules.<module-name>.version}
The current version of the module.
Type |
---|
|
Example:
${modules.<module-name>.outputs.release-name}
${modules.<module-name>.outputs.release-name}
The Helm release name of the service.
Type |
---|
|
Service Outputs
The following keys are available via the ${runtime.services.<service-name>}
template string key for helm
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}
${runtime.services.<service-name>.version}
The current version of the service.
Type |
---|
|
Example:
Task Outputs
The following keys are available via the ${runtime.tasks.<task-name>}
template string key for helm
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}
${runtime.tasks.<task-name>.version}
The current version of the task.
Type |
---|
|
Example:
Last updated