logo

What does the following AWS CLI `create-service` command for ECS do?

aws ecs create-service \
 --cluster production \
 --service-name rest-api \
 --task-definition rest-api:1 \
 --desired-count 2 \
 --launch-type "FARGATE" \
 --network-configuration \
 "awsvpcConfiguration={subnets=[subnet-0b29129ab],securityGroups=[sg-0b29129ab]}"

What does the following AWS CLI `create-service` command for ECS do?

aws ecs create-service \
 --cluster production \
 --service-name rest-api \
 --task-definition rest-api:1 \
 --desired-count 2 \
 --launch-type "FARGATE" \
 --network-configuration \
 "awsvpcConfiguration={subnets=[subnet-0b29129ab],securityGroups=[sg-0b29129ab]}"

题目类型: 技术面试题

这是一道技术面试题,常见于澳洲IT公司面试中。

难度: medium

分类: Cloud, DevOps

标签: AWS, Skill Assessment

参考答案摘要

选项 [ ] changes the security groups of the running **rest-api** task [ ] creates a cluster called **production** and launches two containers into Fargate with the **rest-api** task definition [x] launc...

本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。

← 返回面试题库

<p>What does the following AWS CLI `create-service` command for ECS do?</p><pre><code>aws ecs create-service \ --cluster production \ --service-name rest-api \ --task-definition rest-api:1 \ --desired-count 2 \ --launch-type &quot;FARGATE&quot; \ --network-configuration \ &quot;awsvpcConfiguration={subnets=[subnet-0b29129ab],securityGroups=[sg-0b29129ab]}&quot;</code></pre>

Mediumaws

想查看完整答案?

登录匠人学院学习中心,获取 STAR 格式回答和详细技术解析

前往学习中心查看答案