ecs-deploy
ecs-deploy copied to clipboard
Do not require image to be provided
Use data from the latest task definitions instead. It makes more sense especially when task definition has more than one containers/images defined.
How would you use this? You'd have already created the task definition with the updated tag elsewhere?
Yes, it's just in case we need to create a new revision and update ecs service to use it. If the task description uses images with latest
tags it allows to switch seamlessly to the new build.
My use case is CI deployment set of rules:
- update images with
docker push
- create a new task revision and update service with
esc-depoy
. Right now I have to define one of the images name andlatest
tag which is already being used in the task definition.