title | tocTitle |
---|---|
`templated` Module Type |
`templated` |
{% hint style="warning" %}
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.
{% endhint %}
[DEPRECATED] Please use the new RenderTemplate
config kind instead.
A special module type, for rendering module templates. See the Config Templates guide for more information.
Specify the name of a ConfigTemplate with the template
field, and provide any expected inputs using the inputs
field. The generated modules becomes sub-modules of this module.
Note that the following common Module configuration fields are disallowed for this module type:
build
, description
, include
, exclude
, repositoryUrl
, allowPublish
, generateFiles
, variables
and varfile
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.
templated
modules also export values that are available in template strings. See the Outputs section below for details.
The values in the schema below are the default values.
kind: Module
# The type of this module.
type:
# The name of this module.
name:
# Specify how to build the module. Note that plugins may define additional keys on this object.
build:
# A list of modules that must be built before this module is built.
dependencies:
- # Module name to build ahead of this module.
name:
# Specify one or more files or directories to copy from the built dependency to this module.
copy:
- # POSIX-style path or filename of the directory or file(s) to copy to the target.
source:
# POSIX-style path or filename to copy the directory or file(s), relative to the build directory.
# Defaults to the same as source path.
target:
# Maximum time in seconds to wait for build to finish.
timeout: 600
# A description of the module.
description:
# Set to true to skip rendering this template.
disabled: false
# 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](https://docs.garden.io/using-garden/configuration-overview#including-excluding-files-and-directories) for
# details.
#
# Also note that specifying an empty list here means _no sources_ should be included.
include:
# 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](https://docs.garden.io/using-garden/configuration-overview#including-excluding-files-and-directories)
# 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.
exclude:
# A remote repository URL. Currently only supports git servers. Must contain a hash suffix pointing to a specific
# branch or tag, with the format: <git remote url>#<branch|tag>
#
# Garden will import the repository source code into this module, but read the module's config from the local
# garden.yml file.
repositoryUrl:
# When false, disables pushing this module to remote registries.
allowPublish: true
# 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.
generateFiles:
- # 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.
sourcePath:
# 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.
targetPath:
# 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.
resolveTemplates: true
# The desired file contents as a string.
value:
# 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.
variables:
# 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:
#
# * `.env` - Standard "dotenv" format, as defined by [dotenv](https://github.com/motdotla/dotenv#rules).
# * `.yaml`/`.yml` - YAML. The file must consist of a YAML document, which must be a map (dictionary). Keys may
# contain any value type.
# * `.json` - JSON. Must contain a single JSON _object_ (not an array).
#
# _NOTE: The default varfile format will change 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).
varfile:
# The ConfigTemplate to use to generate the sub-modules of this module.
template:
# A map of inputs to pass to the ConfigTemplate. These must match the inputs schema of the ConfigTemplate.
#
# Note: You can use template strings for the inputs, but be aware that inputs that are used to generate the resulting
# config names and other top-level identifiers must be resolvable when scanning for configs, and thus cannot reference
# other actions, modules or runtime variables. See the [environment configuration context
# reference](../template-strings/environments.md) to see template strings that are safe to use for inputs used to
# generate config identifiers.
inputs:
Type | Allowed Values | Default | Required |
---|---|---|---|
string |
"Module" | "Module" |
Yes |
The type of this module.
Type | Required |
---|---|
string |
Yes |
Example:
type: "container"
The name of this module.
Type | Required |
---|---|
string |
Yes |
Example:
name: "my-sweet-module"
Specify how to build the module. Note that plugins may define additional keys on this object.
Type | Default | Required |
---|---|---|
object |
{"dependencies":[]} |
No |
build > dependencies
A list of modules that must be built before this module is built.
Type | Default | Required |
---|---|---|
array[object] |
[] |
No |
Example:
build:
...
dependencies:
- name: some-other-module-name
build > dependencies > name
Module name to build ahead of this module.
Type | Required |
---|---|
string |
Yes |
build > dependencies > copy
Specify one or more files or directories to copy from the built dependency to this module.
Type | Default | Required |
---|---|---|
array[object] |
[] |
No |
build > dependencies > copy > source
POSIX-style path or filename of the directory or file(s) to copy to the target.
Type | Required |
---|---|
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.
Type | Required |
---|---|
posixPath |
No |
build > timeout
Maximum time in seconds to wait for build to finish.
Type | Default | Required |
---|---|---|
number |
600 |
No |
A description of the module.
Type | Required |
---|---|
string |
No |
Set to true to skip rendering this template.
Type | Default | Required |
---|---|---|
boolean |
false |
No |
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.
Type | Required |
---|---|
array[posixPath] |
No |
Example:
include:
- Dockerfile
- my-app.js
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 |
---|---|
array[posixPath] |
No |
Example:
exclude:
- tmp/**/*
- '*.log'
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 |
---|---|
gitUrl | string |
No |
Example:
repositoryUrl: "git+https://github.com/org/repo.git#v2.0"
When false, disables pushing this module to remote registries.
Type | Default | Required |
---|---|---|
boolean |
true |
No |
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 |
---|---|---|
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.
Type | Required |
---|---|
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.
Type | Required |
---|---|
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.
Type | Default | Required |
---|---|---|
boolean |
true |
No |
generateFiles > value
The desired file contents as a string.
Type | Required |
---|---|
string |
No |
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 |
---|---|
object |
No |
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:
.env
- Standard "dotenv" format, as defined by dotenv..yaml
/.yml
- YAML. The file must consist of a YAML document, which must be a map (dictionary). Keys may contain any value type..json
- JSON. Must contain a single JSON object (not an array).
NOTE: The default varfile format will change 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 |
---|---|
posixPath |
No |
Example:
varfile: "my-module.env"
The ConfigTemplate to use to generate the sub-modules of this module.
Type | Required |
---|---|
string |
Yes |
A map of inputs to pass to the ConfigTemplate. These must match the inputs schema of the ConfigTemplate.
Note: You can use template strings for the inputs, but be aware that inputs that are used to generate the resulting config names and other top-level identifiers must be resolvable when scanning for configs, and thus cannot reference other actions, modules or runtime variables. See the environment configuration context reference to see template strings that are safe to use for inputs used to generate config identifiers.
Type | Required |
---|---|
object |
No |
The following keys are available via the ${modules.<module-name>}
template string key for templated
modules.
The build path of the module.
Type |
---|
string |
Example:
my-variable: ${modules.my-module.buildPath}
The name of the module.
Type |
---|
string |
The source path of the module.
Type |
---|
string |
Example:
my-variable: ${modules.my-module.path}
A map of all variables defined in the module.
Type | Default |
---|---|
object |
{} |
Type |
---|
string | number | boolean | link | array[link] |
The current version of the module.
Type |
---|
string |
Example:
my-variable: ${modules.my-module.version}
The following keys are available via the ${runtime.services.<service-name>}
template string key for templated
module services.
Note that these are only resolved when deploying/running dependants of the service, so they are not usable for every field.
The current version of the service.
Type |
---|
string |
Example:
my-variable: ${runtime.services.my-service.version}
The following keys are available via the ${runtime.tasks.<task-name>}
template string key for templated
module tasks.
Note that these are only resolved when deploying/running dependants of the task, so they are not usable for every field.
The current version of the task.
Type |
---|
string |
Example:
my-variable: ${runtime.tasks.my-tasks.version}