You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running garden publish --env remote fails if the image hasn't been built locally. The reason is that the image name that is pulled doesn't match the image name that's published.
Expected behavior
Garden should publish the image.
Workaround
Publish the image from a local environment, e.g. garden publish my-module --env local for local refers to an environment that uses the local-kubernetes provider.
Suggested solution(s)
We need to re-tag the pulled imaged. Something like: docker tag pulledImage localId.
The text was updated successfully, but these errors were encountered:
Bug
Current Behavior
Running
garden publish --env remote
fails if the image hasn't been built locally. The reason is that the image name that is pulled doesn't match the image name that's published.Expected behavior
Garden should publish the image.
Workaround
Publish the image from a local environment, e.g.
garden publish my-module --env local
for local refers to an environment that uses thelocal-kubernetes
provider.Suggested solution(s)
We need to re-tag the pulled imaged. Something like:
docker tag pulledImage localId
.The text was updated successfully, but these errors were encountered: