aws ecs update-service

From wikieduonline
Jump to navigation Jump to search

Examples[edit]

aws ecs update-service --cluster your_cluster_name --service your_service-name --force-new-deployment
  • Stop service:
aws ecs update-service --cluster your_cluster_name --service your_service-name --desired-count 0
  • Stop all services:
for SERVICES in $(aws ecs list-services --cluster your-cluster | grep YOUR-TEXT | grep . |  cut -d":" -f6- | cut -d'"' -f1 | cut -d"/" -f3); do
aws ecs update-service --cluster your-cluster --service $SERVICES --desired-count 0; done

Synopsis[edit]

update-service
[--cluster <value>]
--service <value>
[--desired-count <value>]
[--task-definition <value>]
[--capacity-provider-strategy <value>]
[--deployment-configuration <value>]
[--network-configuration <value>]
[--placement-constraints <value>]
[--placement-strategy <value>]
[--platform-version <value>]
[--force-new-deployment | --no-force-new-deployment]
[--health-check-grace-period-seconds <value>]
[--enable-execute-command | --disable-execute-command]
[--enable-ecs-managed-tags | --no-enable-ecs-managed-tags]
[--load-balancers <value>]
[--propagate-tags <value>]
[--service-registries <value>]
[--cli-input-json <value>]
[--generate-cli-skeleton <value>]


Errors[edit]

Related[edit]

See also[edit]

Advertising: