Container
The container
action type is an abstraction that can be used with multiple plugins. See here for an in-depth guide on the action type itself. Continue reading for more information on the container deploy action type that can be used with the Kubernetes plugin.
You can define a container
Build action with the following config:
Most commonly you'll then want to deploy this image or use it in Test or Run actions. You can do that by referencing the output from the build in your Deploy actions via the ${actions.build.outputs.api.<output-name>}
template string.
For example, to deploy this image with Helm you can use the following config:
Or you can set it in your Kubernetes manifests with the patchResources
field:
You can learn more in the individual guides for the Kubernetes Deploy and Run and Test actions.
Last updated