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 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。