Comment on page
Project Configuration
Below is the schema reference for Project configuration files. For an introduction to configuring a Garden project, please look at our configuration guide.
The reference is divided into two sections:
Note that individual providers, e.g.
kubernetes
, add their own project level configuration keys. The provider types are listed on the Providers page.Please refer to those for more details on provider configuration.
The values in the schema below are the default values.
# Indicate what kind of config this is.
kind: Project
# The name of the project.
name:
# A list of environments to configure for the project.
environments:
- # The name of the environment.
name:
# Set the default namespace to use. This can be templated to be user-specific, or to use an environment variable
# (e.g. in CI).
#
# You can also set this to `null`, in order to require an explicit namespace to be set on usage. This may be
# advisable for shared environments, but you may also be able to achieve the desired result by templating this
# field, as mentioned above.
defaultNamespace: default
# Flag the environment as a production environment.
#
# Setting this flag to `true` will activate the protection on the `build`, `delete`, `deploy`, `dev`, and
# `test` commands. A protected command will ask for a user confirmation every time is run against
# an environment marked as production.
# Run the command with the "--yes" flag to skip the check (e.g. when running Garden in CI).
#
# This flag is also passed on to every provider, and may affect how certain providers behave.
# For more details please check the documentation for the providers in use.
production: false
# The name of the provider plugin to use.
name:
# List other providers that should be resolved before this one.
dependencies: []
# If specified, this provider will only be used in the listed environments. Note that an empty array
# effectively disables the provider. To use a provider in all environments, omit this field.
environments:
# Specify a path (relative to the project root) to a file containing variables, that we apply on top of the
# _environment-specific_ `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._
#
# If you don't set the field and the `garden.<env-name>.env` file does not exist,
# we simply ignore it. If you do override the default value and the file doesn't exist, an error will be thrown.
varfile:
# A key/value map of variables that modules can reference when using this environment. These take precedence over
# variables defined in the top-level `variables` field, but may also reference the top-level variables in template
# strings.
variables: {}
# A list of providers that should be used for this project, and their configuration. Please refer to individual
# plugins/providers for details on how to configure them.
providers:
- # The name of the provider plugin to use.
name:
# List other providers that should be resolved before this one.
dependencies: []
# If specified, this provider will only be used in the listed environments. Note that an empty array effectively
# disables the provider. To use a provider in all environments, omit this field.
environments:
# The default environment to use when calling commands without the `--env` parameter. May include a namespace name, in
# the format `<namespace>.<environment>`. Defaults to the first configured environment, with no namespace set.
defaultEnvironment: ''
# Specify a list of filenames that should be used as ".ignore" files across the project, using the same syntax and
# semantics as `.gitignore` files. By default, patterns matched in `.gardenignore` files, found anywhere in the
# project, are ignored when scanning for modules and module sources (Note: prior to version 0.12.0, `.gitignore` files
# were also used by default).
# Note that these take precedence over the project `module.include` field, and module `include` fields, so any paths
# matched by the .ignore files will be ignored even if they are explicitly specified in those fields.
# See the [Configuration Files
# guide](https://docs.garden.io/v/acorn-0.12/using-garden/configuration-overview#including-excluding-files-and-directories)
# for details.
dotIgnoreFiles:
proxy:
# The URL that Garden uses when creating port forwards. Defaults to "localhost".
#
# Note that the `GARDEN_PROXY_DEFAULT_ADDRESS` environment variable takes precedence over this value.
hostname: localhost
# Control where to scan for modules in the project.
modules:
# Specify a list of POSIX-style paths or globs that should be scanned for Garden modules.
#
# Note that you can also _exclude_ path 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/v/acorn-0.12/using-garden/configuration-overview#including-excluding-files-and-directories)
# for details.
#
# Unlike the `exclude` field, the paths/globs specified here have _no effect_ on which files and directories Garden
# watches for changes. Use the `exclude` field to affect those, if you have large directories that should not be
# watched for changes.
#
# Also note that specifying an empty list here means _no paths_ should be included.
include:
# Specify a list of POSIX-style paths or glob patterns that should be excluded when scanning for modules.
#
# The filters here also affect which files and directories are watched for changes. So if you have a large number of
# directories in your project that should not be watched, you should specify them here.
#
# For example, you might want to exclude large vendor directories in your project from being scanned and watched, by
# setting `exclude: [node_modules/**/*, vendor/**/*]`.
#
# Note that you can also explicitly _include_ files using the `include` field. If you also specify the `include`
# field, the paths/patterns specified here are filtered from the files matched by `include`.
#
# The `include` field does _not_ affect which files are watched.
#
# See the [Configuration Files
# guide](https://docs.garden.io/v/acorn-0.12/using-garden/configuration-overview#including-excluding-files-and-directories)
# for details.
exclude:
# A list of output values that the project should export. These are exported by the `garden get outputs` command, as
# well as when referencing a project as a sub-project within another project.
#
# You may use any template strings to specify the values, including references to provider outputs, module
# outputs and runtime outputs. For a full reference, see the [Output configuration
# context](./template-strings/project-outputs.md) section in the Template String Reference.
#
# Note that if any runtime outputs are referenced, the referenced services and tasks will be deployed and run if
# necessary when resolving the outputs.
outputs:
- # The name of the output value.
name:
# The value for the output. Must be a primitive (string, number, boolean or null). May also be any valid template
# string.
value:
# A list of remote sources to import into project.
sources:
- # The name of the source to import
name:
# 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>
repositoryUrl:
# Specify a path (relative to the project root) to a file containing variables, that we apply on top of the
# project-wide `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._
#
# If you don't set the field and the `garden.env` file does not exist, we simply ignore it.
# If you do override the default value and the file doesn't exist, an error will be thrown.
#
# _Note that in many cases it is advisable to only use environment-specific var files, instead of combining
# multiple ones. See the `environments[].varfile` field for this option._
varfile: garden.env
# Key/value map of variables to configure for all environments. Keys may contain letters and numbers. Any values are
# permitted, including arrays and objects of any nesting.
variables: {}
Indicate what kind of config this is.
Type | Allowed Values | Default | Required |
---|---|---|---|
string | "Project" | "Project" | Yes |
The name of the project.
Type | Required |
---|---|
string | Yes |
Example:
name: "my-sweet-project"
A list of environments to configure for the project.
Type | Required |
---|---|
array[object] | No |
The name of the environment.
Type | Required |
---|---|
string | Yes |
Example:
environments:
- name: "dev"
Set the default namespace to use. This can be templated to be user-specific, or to use an environment variable (e.g. in CI).
You can also set this to
null
, in order to require an explicit namespace to be set on usage. This may be advisable for shared environments, but you may also be able to achieve the desired result by templating this field, as mentioned above.Type | Default | Required |
---|---|---|
string | "default" | No |
Example:
environments:
- defaultNamespace: "user-${local.username}"
Flag the environment as a production environment.
Setting this flag to
true
will activate the protection on the build
, delete
, deploy
, dev
, and test
commands. A protected command will ask for a user confirmation every time is run against an environment marked as production. Run the command with the "--yes" flag to skip the check (e.g. when running Garden in CI).This flag is also passed on to every provider, and may affect how certain providers behave. For more details please check the documentation for the providers in use.
Type | Default | Required |
---|---|---|
boolean | false | No |
Example:
environments:
- production: true
Deprecated: This field will be removed in a future release.
Type | Default | Required |
---|---|---|
array[object] | [] | No |
The name of the provider plugin to use.
Type | Required |
---|---|
string | Yes |
Example:
environments:
- providers:
- name: "local-kubernetes"
List other providers that should be resolved before this one.
Type | Default | Required |
---|---|---|
array[string] | [] | No |
Example:
environments:
- providers:
- dependencies:
- exec
If specified, this provider will only be used in the listed environments. Note that an empty array effectively disables the provider. To use a provider in all environments, omit this field.
Type | Required |
---|---|
array[string] | No |
Example:
environments:
- providers:
- environments:
- dev
- stage
Specify a path (relative to the project root) to a file containing variables, that we apply on top of the environment-specific
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..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.
If you don't set the field and the
garden.<env-name>.env
file does not exist, we simply ignore it. If you do override the default value and the file doesn't exist, an error will be thrown.Type | Required |
---|---|
posixPath | No |
Example:
environments:
- varfile: "custom.env"
A key/value map of variables that modules can reference when using this environment. These take precedence over variables defined in the top-level
variables
field, but may also reference the top-level variables in template strings.Type | Default | Required |
---|---|---|
object | {} | No |
A list of providers that should be used for this project, and their configuration. Please refer to individual plugins/providers for details on how to configure them.
Type | Default | Required |
---|---|---|
array[object] | [] | No |
The name of the provider plugin to use.
Type | Required |
---|---|
string | Yes |
Example:
providers:
- name: "local-kubernetes"
List other providers that should be resolved before this one.
Type | Default | Required |
---|---|---|
array[string] | [] | No |
Example:
providers:
- dependencies:
- exec
If specified, this provider will only be used in the listed environments. Note that an empty array effectively disables the provider. To use a provider in all environments, omit this field.
Type | Required |
---|---|
array[string] | No |
Example:
providers:
- environments:
- dev
- stage
The default environment to use when calling commands without the
--env
parameter. May include a namespace name, in the format <namespace>.<environment>
. Defaults to the first configured environment, with no namespace set.Type | Default | Required |
---|---|---|
string | "" | No |
Example:
defaultEnvironment: "dev"
Specify a list of filenames that should be used as ".ignore" files across the project, using the same syntax and semantics as
.gitignore
files. By default, patterns matched in .gardenignore
files, found anywhere in the project, are ignored when scanning for modules and module sources (Note: prior to version 0.12.0, .gitignore
files were also used by default). Note that these take precedence over the project module.include
field, and module include
fields, so any paths matched by the .ignore files will be ignored even if they are explicitly specified in those fields. See the Configuration Files guide for details.Type | Default | Required |
---|---|---|
array[posixPath] | [".gardenignore"] | No |
Example:
dotIgnoreFiles:
- .gardenignore
- .gitignore
Type | Required |
---|---|
object | No |
The URL that Garden uses when creating port forwards. Defaults to "localhost".
Note that the
GARDEN_PROXY_DEFAULT_ADDRESS
environment variable takes precedence over this value.Type | Default | Required |
---|---|---|
string | "localhost" | No |
Example:
proxy:
...
hostname: - 127.0.0.1
Control where to scan for modules in the project.
Type | Required |
---|---|
object | No |
Specify a list of POSIX-style paths or globs that should be scanned for Garden modules.
Note that you can also exclude path 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.Unlike the
exclude
field, the paths/globs specified here have no effect on which files and directories Garden watches for changes. Use the exclude
field to affect those, if you have large directories that should not be watched for changes.Also note that specifying an empty list here means no paths should be included.
Type | Required |
---|---|
array[posixPath] | No |
Example:
modules:
...
include:
- modules/**/*
Specify a list of POSIX-style paths or glob patterns that should be excluded when scanning for modules.
The filters here also affect which files and directories are watched for changes. So if you have a large number of directories in your project that should not be watched, you should specify them here.
For example, you might want to exclude large vendor directories in your project from being scanned and watched, by setting
exclude: [node_modules/**/*, vendor/**/*]
.Note that you can also explicitly include files using the
include
field. If you also specify the include
field, the paths/patterns specified here are filtered from the files matched by include
.The
include
field does not affect which files are watched.Type | Required |
---|---|
array[posixPath] | No |
Example:
modules:
...
exclude:
- public/**/*
- tmp/**/*
A list of output values that the project should export. These are exported by the
garden get outputs
command, as well as when referencing a project as a sub-project within another project.You may use any template strings to specify the values, including references to provider outputs, module outputs and runtime outputs. For a full reference, see the Output configuration context section in the Template String Reference.
Note that if any runtime outputs are referenced, the referenced services and tasks will be deployed and run if necessary when resolving the outputs.
Type | Default | Required |
---|---|---|
array[object] | [] | No |
The name of the output value.
Type | Required |
---|---|
string | Yes |
Example:
outputs:
- name: "my-output-key"
The value for the output. Must be a primitive (string, number, boolean or null). May also be any valid template string.
Type | Required |
---|---|
string | number | boolean | Yes |
Example:
outputs:
- value: "${modules.my-module.outputs.some-output}"
A list of remote sources to import into project.
Type | Default | Required |
---|---|---|
array[object] | [] | No |
The name of the source to import
Type | Required |
---|---|
string | Yes |
Example:
sources:
- name: "my-external-repo"
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>
Type | Required |
---|---|
gitUrl | string | Yes |
Example:
sources:
- repositoryUrl: "git+https://github.com/org/repo.git#v2.0"
Specify a path (relative to the project root) to a file containing variables, that we apply on top of the project-wide
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..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.
If you don't set the field and the
garden.env
file does not exist, we simply ignore it. If you do override the default value and the file doesn't exist, an error will be thrown.Note that in many cases it is advisable to only use environment-specific var files, instead of combining multiple ones. See the
environments[].varfile
field for this option.Type | Default | Required |
---|---|---|
posixPath | "garden.env" | No |
Example:
varfile: "custom.env"
Key/value map of variables to configure for all environments. Keys may contain letters and numbers. Any values are permitted, including arrays and objects of any nesting.
Type | Default | Required |
---|---|---|
object | {} | No |
Last modified 5mo ago