pulumi Deploy
Deploys a Pulumi stack and either creates/updates it automatically (if
autoApply: true
) or warns when the stack resources are not up-to-date, or errors if it's missing entirely.Note: It is not recommended to set
autoApply
to true
for production or shared environments, since this may result in accidental or conflicting changes to the stack. Instead, it is recommended to manually preview and update using the provided plugin commands. Run garden plugins pulumi
for details. Note that not all Pulumi CLI commands are wrapped by the plugin, only the ones where it's important to apply any variables defined in the action. For others, simply run the Pulumi CLI as usual from the project root.Stack outputs are made available as action outputs. These can then be referenced by other actions under
${actions.<name>.outputs.<key>}
. You can template in those values as e.g. command arguments or environment variables for other services.Below is the full schema reference for the action. For an introduction to configuring Garden, please look at our Configuration guide.
The first section contains the complete YAML schema, and the second section describes each schema key.
pulumi
actions 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.
# The type of action, e.g. `exec`, `container` or `kubernetes`. Some are built into Garden but mostly these will be
# defined by your configured providers.
type:
# A valid name for the action. Must be unique across all actions of the same _kind_ in your project.
name:
# A description of the action.
description:
# By default, the directory where the action is defined is used as the source for the build context.
#
# You can override this by setting either `source.path` to another (POSIX-style) path relative to the action source
# directory, or `source.repository` to get the source from an external repository.
#
# If using `source.path`, you must make sure the target path is in a git repository.
#
# For `source.repository` behavior, please refer to the [Remote Sources
# guide](https://docs.garden.io/advanced/using-remote-sources).
source:
# A relative POSIX-style path to the source directory for this action. You must make sure this path exists and is in
# a git repository!
path:
# When set, Garden will import the action source from this repository, but use this action configuration (and not
# scan for configs in the separate repository).
repository:
# 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>
url:
# A list of other actions that this action depends on, and should be built, deployed or run (depending on the action
# type) before processing this action.
#
# Each dependency should generally be expressed as a `"<kind>.<name>"` string, where _<kind>_ is one of `build`,
# `deploy`, `run` or `test`, and _<name>_ is the name of the action to depend on.
#
# You may also optionally specify a dependency as an object, e.g. `{ kind: "Build", name: "some-image" }`.
#
# Any empty values (i.e. null or empty strings) are ignored, so that you can conditionally add in a dependency via
# template expressions.
dependencies: []
# Set this to `true` to disable the action. You can use this with conditional template strings to disable actions
# 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 actions for specific environments, e.g. only for development.
#
# For Build actions, this means the build is not performed _unless_ it is declared as a dependency by another enabled
# action (in which case the Build is assumed to be necessary for the dependant action to be run or built).
#
# For other action kinds, the action is skipped in all scenarios, and dependency declarations to it are ignored. Note
# however that template strings referencing outputs (i.e. runtime outputs) will fail to resolve when the action is
# disabled, so you need to make sure to provide alternate values for those if you're using them, using conditional
# expressions.
disabled: false
# Specify a list of POSIX-style paths or globs that should be regarded as source files for this action, and thus will
# affect the computed _version_ of the action.
#
# For actions other than _Build_ actions, this is usually not necessary to specify, or is implicitly inferred. An
# exception would be e.g. an `exec` action without a `build` reference, where the relevant files cannot be inferred
# and you want to define which files should affect the version of the action, e.g. to make sure a Test action is run
# when certain files are modified.
#
# _Build_ actions have a different behavior, since they generally are based on some files in the source tree, so
# please reference the docs for more information on those.
#
# 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.
include:
# Specify a list of POSIX-style paths or glob patterns that should be explicitly excluded from the action's version.
#
# For actions other than _Build_ actions, this is usually not necessary to specify, or is implicitly inferred. For
# _Deploy_, _Run_ and _Test_ actions, the exclusions specified here only applied on top of explicitly set `include`
# paths, or such paths inferred by providers. 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 when watching is enabled. Use the project `scan.exclude` field to affect those,
# if you have large directories that should not be watched for changes.
exclude:
# A map of variables scoped to this particular action. These are resolved before any other parts of the action
# configuration and take precedence over group-scoped variables (if applicable) and project-scoped variables, in that
# order. They may reference group-scoped and project-scoped variables, and generally can use any template strings
# normally allowed when resolving the action.
variables:
# Specify a list of paths (relative to the directory where the action is defined) to a file containing variables, that
# we apply on top of the action-level `variables` field, and take precedence over group-level variables (if
# applicable) and project-level variables, in that order.
#
# If you specify multiple paths, they are merged in the order specified, i.e. the last one takes precedence over the
# previous ones.
#
# 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 varfiles in different environments, you can template in the environment name to the varfile name,
# e.g. `varfile: "my-action.\$\{environment.name\}.env` (this assumes that the corresponding varfiles exist).
#
# If a listed varfile cannot be found, it is ignored.
varfiles: []
# Specify a _Build_ action, and resolve this action from the context of that Build.
#
# For example, you might create an `exec` Build which prepares some manifests, and then reference that in a
# `kubernetes` _Deploy_ action, and the resulting manifests from the Build.
#
# This would mean that instead of looking for manifest files relative to this action's location in your project
# structure, the output directory for the referenced `exec` Build would be the source.
build:
kind:
# Timeout for the deploy to complete, in seconds.
timeout: 300
spec:
# If set to true, Garden will destroy the stack when calling `garden cleanup namespace` or `garden cleanup deploy
# <deploy action name>`.
# This is useful to prevent unintentional destroys in production or shared environments.
allowDestroy: true
# If set to false, deployments will fail unless a `planPath` is provided for this deploy action. This is useful when
# deploying to
# production or shared environments, or when the action deploys infrastructure that you don't want to
# unintentionally update/create.
autoApply: true
# If set to true, Garden will automatically create the stack if it doesn't already exist.
createStack: false
# Specify the path to the Pulumi project root, relative to the deploy action's root.
root: .
# A map of config variables to use when applying the stack. These are merged with the contents of any
# `pulumiVarfiles` provided
# for this deploy action. The deploy action's stack config will be overwritten with the resulting merged config.
# Variables declared here override any conflicting config variables defined in this deploy action's
# `pulumiVarfiles`.
#
# Note: `pulumiVariables` should not include action outputs from other pulumi deploy actions when `cacheStatus` is
# set to true, since
# the outputs may change from the time the stack status of the dependency action is initially queried to when it's
# been deployed.
#
# Instead, use pulumi stack references when using the `cacheStatus` config option.
pulumiVariables: {}
# Specify one or more paths (relative to the deploy action's root) to YAML files containing pulumi config variables.
#
# Templated paths that resolve to `null`, `undefined` or an empty string are ignored.
#
# Any Garden template strings in these varfiles will be resolved when the files are loaded.
#
# Each file must consist of a single YAML document, which must be a map (dictionary). Keys may contain any
# value type.
#
# If one or more varfiles is not found, no error is thrown (that varfile path is simply ignored).
#
# Note: There is no need to nest the variables under a `config` field as is done in a pulumi
# config. Simply specify all the config variables at the top level.
pulumiVarfiles: []
# The name of the pulumi organization to use. Overrides the `orgName` set on the pulumi provider (if any).
# To use the default org, set to null.
orgName:
# When set to true, the pulumi stack will be tagged with the Garden service version when deploying. The tag
# will then be used for service status checks for this service. If the version doesn't change between deploys,
# the subsequent deploy is skipped.
#
# Note that this will not pick up changes to stack outputs referenced via stack references in your pulumi stack,
# unless they're referenced via template strings in the deploy action configuration.
#
# When using stack references to other pulumi deploy actions in your project, we recommend including them in this
# deploy action's `stackReferences` config field (see the documentation for that field on this page).
#
# `cacheStatus: true` is not supported for self-managed state backends.
cacheStatus: false
# When setting `cacheStatus` to true for this deploy action, you should include all stack references used by this
# deploy action's pulumi stack in this field.
#
# This lets Garden know to redeploy the pulumi stack if the output values of one or more of these stack references
# have changed since the last deployment.
stackReferences: []
# When set to true, will use pulumi plans generated by the `garden plugins pulumi preview` command when
# deploying, and will fail if no plan exists locally for the deploy action.
#
# When this option is used, the pulumi plugin bypasses the status check altogether and passes the plan directly
# to `pulumi up` (via the `--plan` option, which is experimental as of March 2022). You should therefore
# take care to only use this config option when you're sure you want to apply the changes in the plan.
#
# This option is intended for two-phase pulumi deployments, where pulumi preview diffs are first reviewed (e.g.
# during code review).
deployFromPreview: false
# The name of the pulumi stack to use. Defaults to the current environment name.
stack:
The type of action, e.g.
exec
, container
or kubernetes
. Some are built into Garden but mostly these will be defined by your configured providers.Type | Required |
---|---|
string | Yes |
A valid name for the action. Must be unique across all actions of the same kind in your project.
Type | Required |
---|---|
string | Yes |
A description of the action.
Type | Required |
---|---|
string | No |
By default, the directory where the action is defined is used as the source for the build context.
You can override this by setting either
source.path
to another (POSIX-style) path relative to the action source directory, or source.repository
to get the source from an external repository.If using
source.path
, you must make sure the target path is in a git repository.Type | Required |
---|---|
object | No |
A relative POSIX-style path to the source directory for this action. You must make sure this path exists and is in a git repository!
Type | Required |
---|---|
posixPath | No |
When set, Garden will import the action source from this repository, but use this action configuration (and not scan for configs in the separate repository).
Type | Required |
---|---|
object | No |
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:
source:
...
repository:
...
url: "git+https://github.com/org/repo.git#v2.0"
A list of other actions that this action depends on, and should be built, deployed or run (depending on the action type) before processing this action.
Each dependency should generally be expressed as a
"<kind>.<name>"
string, where is one of build
, deploy
, run
or test
, and is the name of the action to depend on.You may also optionally specify a dependency as an object, e.g.
{ kind: "Build", name: "some-image" }
.Any empty values (i.e. null or empty strings) are ignored, so that you can conditionally add in a dependency via template expressions.
Type | Default | Required |
---|---|---|
array[actionReference] | [] | No |
Example:
dependencies:
- build.my-image
- deploy.api
Set this to
true
to disable the action. You can use this with conditional template strings to disable actions 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 actions for specific environments, e.g. only for development.For Build actions, this means the build is not performed unless it is declared as a dependency by another enabled action (in which case the Build is assumed to be necessary for the dependant action to be run or built).
For other action kinds, the action is skipped in all scenarios, and dependency declarations to it are ignored. Note however that template strings referencing outputs (i.e. runtime outputs) will fail to resolve when the action 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 |
---|---|---|
boolean | false | No |
Specify a list of POSIX-style paths or globs that should be regarded as source files for this action, and thus will affect the computed version of the action.
For actions other than Build actions, this is usually not necessary to specify, or is implicitly inferred. An exception would be e.g. an
exec
action without a build
reference, where the relevant files cannot be inferred and you want to define which files should affect the version of the action, e.g. to make sure a Test action is run when certain files are modified.Build actions have a different behavior, since they generally are based on some files in the source tree, so please reference the docs for more information on those.
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.Type | Required |
---|---|
array[posixPath] | No |
Example:
include:
- my-app.js
- some-assets/**/*
Specify a list of POSIX-style paths or glob patterns that should be explicitly excluded from the action's version.
For actions other than Build actions, this is usually not necessary to specify, or is implicitly inferred. For Deploy, Run and Test actions, the exclusions specified here only applied on top of explicitly set
include
paths, or such paths inferred by providers. 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 when watching is enabled. 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 map of variables scoped to this particular action. These are resolved before any other parts of the action configuration and take precedence over group-scoped variables (if applicable) and project-scoped variables, in that order. They may reference group-scoped and project-scoped variables, and generally can use any template strings normally allowed when resolving the action.
Type | Required |
---|---|
object | No |
Specify a list of paths (relative to the directory where the action is defined) to a file containing variables, that we apply on top of the action-level
variables
field, and take precedence over group-level variables (if applicable) and project-level variables, in that order.If you specify multiple paths, they are merged in the order specified, i.e. the last one takes precedence over the previous ones.
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.
To use different varfiles in different environments, you can template in the environment name to the varfile name, e.g.
varfile: "my-action.\$\{environment.name\}.env
(this assumes that the corresponding varfiles exist).If a listed varfile cannot be found, it is ignored.
Type | Default | Required |
---|---|---|
array[posixPath] | [] | No |
Example:
varfiles:
"my-action.env"
Specify a Build action, and resolve this action from the context of that Build.
For example, you might create an
exec
Build which prepares some manifests, and then reference that in a kubernetes
Deploy action, and the resulting manifests from the Build.This would mean that instead of looking for manifest files relative to this action's location in your project structure, the output directory for the referenced
exec
Build would be the source.Type | Required |
---|---|
string | No |
Type | Allowed Values | Required |
---|---|---|
string | "Deploy" | Yes |
Timeout for the deploy to complete, in seconds.
Type | Default | Required |
---|---|---|
number | 300 | No |
Type | Required |
---|---|
object | No |
If set to true, Garden will destroy the stack when calling
garden cleanup namespace
or garden cleanup deploy <deploy action name>
. This is useful to prevent unintentional destroys in production or shared environments.Type | Default | Required |
---|---|---|
boolean | true | No |
If set to false, deployments will fail unless a
planPath
is provided for this deploy action. This is useful when deploying to production or shared environments, or when the action deploys infrastructure that you don't want to unintentionally update/create.Type | Default | Required |
---|---|---|
boolean | true | No |
If set to true, Garden will automatically create the stack if it doesn't already exist.
Type | Default | Required |
---|---|---|
boolean | false | No |
Specify the path to the Pulumi project root, relative to the deploy action's root.
Type | Default | Required |
---|---|---|
posixPath | "." | No |
A map of config variables to use when applying the stack. These are merged with the contents of any
pulumiVarfiles
provided for this deploy action. The deploy action's stack config will be overwritten with the resulting merged config. Variables declared here override any conflicting config variables defined in this deploy action's pulumiVarfiles
.Note:
pulumiVariables
should not include action outputs from other pulumi deploy actions when cacheStatus
is set to true, since the outputs may change from the time the stack status of the dependency action is initially queried to when it's been deployed.Instead, use pulumi stack references when using the
cacheStatus
config option.Type | Default | Required |
---|---|---|
object | {} | No |
Specify one or more paths (relative to the deploy action's root) to YAML files containing pulumi config variables.
Templated paths that resolve to
null
, undefined
or an empty string are ignored.Any Garden template strings in these varfiles will be resolved when the files are loaded.
Each file must consist of a single YAML document, which must be a map (dictionary). Keys may contain any value type.
If one or more varfiles is not found, no error is thrown (that varfile path is simply ignored).
Note: There is no need to nest the variables under a
config
field as is done in a pulumi config. Simply specify all the config variables at the top level.Type | Default | Required |
---|---|---|
array[posixPath] | [] | No |
The name of the pulumi organization to use. Overrides the
orgName
set on the pulumi provider (if any). To use the default org, set to null.Type | Required |
---|---|
string | No |
When set to true, the pulumi stack will be tagged with the Garden service version when deploying. The tag will then be used for service status checks for this service. If the version doesn't change between deploys, the subsequent deploy is skipped.
Note that this will not pick up changes to stack outputs referenced via stack references in your pulumi stack, unless they're referenced via template strings in the deploy action configuration.
When using stack references to other pulumi deploy actions in your project, we recommend including them in this deploy action's
stackReferences
config field (see the documentation for that field on this page).cacheStatus: true
is not supported for self-managed state backends.Type | Default | Required |
---|---|---|
boolean | false | No |
When setting
cacheStatus
to true for this deploy action, you should include all stack references used by this deploy action's pulumi stack in this field.This lets Garden know to redeploy the pulumi stack if the output values of one or more of these stack references have changed since the last deployment.
Type | Default | Required |
---|---|---|
array[string] | [] | No |
Example:
spec:
...
stackReferences:
- '${actions.deploy.some-pulumi-deploy-action.outputs.ip-address}'
- '${actions.deploy.some-other-pulumi-deploy-action.outputs.database-url}'
When set to true, will use pulumi plans generated by the
garden plugins pulumi preview
command when deploying, and will fail if no plan exists locally for the deploy action.When this option is used, the pulumi plugin bypasses the status check altogether and passes the plan directly to
pulumi up
(via the --plan
option, which is experimental as of March 2022). You should therefore take care to only use this config option when you're sure you want to apply the changes in the plan.This option is intended for two-phase pulumi deployments, where pulumi preview diffs are first reviewed (e.g. during code review).
Type | Default | Required |
---|---|---|
boolean | false | No |
The name of the pulumi stack to use. Defaults to the current environment name.
Type | Required |
---|---|
string | No |
The following keys are available via the
${actions.deploy.<name>}
template string key for pulumi
action.The name of the action.
Type |
---|
string |
Whether the action is disabled.
Type |
---|
boolean |
Example:
my-variable: ${actions.deploy.my-deploy.disabled}
The local path to the action build directory.
Type |
---|
string |
Example:
my-variable: ${actions.deploy.my-deploy.buildPath}
The local path to the action source directory.
Type |
---|
string |
Example:
my-variable: ${actions.deploy.my-deploy.sourcePath}
The mode that the action should be executed in (e.g. 'sync' or 'local' for Deploy actions). Set to 'default' if no special mode is being used.
Type | Default |
---|---|
string | "default" |
Example:
my-variable: ${actions.deploy.my-deploy.mode}
The variables configured on the action.
Type | Default |
---|---|
object | {} |
Type |
---|
string | number | boolean | link | array[link] |
A map of all the outputs returned by the Pulumi stack.
Type | Default |
---|---|
object | {} |
Type |
---|
string | number | boolean | link | array[link] |
Last modified 16d ago