chilly-waitress-62592
12/28/2022, 8:23 PMproject.garden.yml
I have
deploymentRegistry:
hostname: registry-hostname
namespace: my/namespace
The container module I want to know the image location/tag for has
kind: Module
type: container
name: module-name
repositoryUrl: repository-address
I'd like to be able to get the full image repository and tag. Should it be something like:
registry-hostname/my/namespace/module-name
with a tag of latest
?registry-hostname/my/namespace/module-name
where tag is the module version.
Referencing it in another module via
repository: ${modules.module-name.outputs.deployment-image-name}
tag: ${modules.module-name.version}