Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

jacoelho/ecsctl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ecsctl

ecsctl - rolling deployments on AWS ECS service.

Demo

demo

Usage

ecsctl [--cluster <cluster name>] [--region <aws region>] rolling-update <service> [--timeout 60] [--update-period 45] [--instance-count 3] [--image <new image>]

For example:

ecsctl --cluster frontend rolling-update nginx --image nginx:2433e41

This will create a new service called nginx-blue with the task updated to the image: nginx:2433e41

Running again:

ecsctl --cluster frontend rolling-update nginx --image nginx:latest

This will create a new service called nginx-green with the task updated to the image: nginx:latest