我已经使用 CodeBuild 和 CodeDeploy 创建了一个 CodePipeline,它应该部署到活动的 ECS 集群。
容器的构建没有任何问题。
buildspec.yml 和 appspec.yml 都位于存储库根目录中,如下所示:
buildspec.yml:
version: 0.2
phases:
pre_build:
commands:
- echo Logging in to Amazon ECR...
- aws --version
- $(aws ecr get-login --region $AWS_DEFAULT_REGION --no-include-email)
- REPOSITORY_URI=555.dkr.ecr.us-east-1.amazonaws.com/name
- COMMIT_HASH=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
- IMAGE_TAG=${COMMIT_HASH:=latest}
build:
commands:
- echo Build started on `date`
- echo Building the Docker image...
- docker build -t $REPOSITORY_URI:latest .
- docker tag $REPOSITORY_URI:latest $REPOSITORY_URI:$IMAGE_TAG
post_build:
commands:
- echo Build completed on `date`
- echo Pushing the Docker images...
- docker push $REPOSITORY_URI:latest
- docker push $REPOSITORY_URI:$IMAGE_TAG
- echo Writing image definitions file...
- printf '[{"name":"name","imageUri":"%s"}]' $REPOSITORY_URI:$IMAGE_TAG > imagedefinitions.json
artifacts:
files:
- appspec.yml
- imagedefinitions.json
appspec.yml:
version: 1.0
Resources:
- TargetService:
Type: AWS::ECS::Service
Properties:
TaskDefinition: "arn:aws:ecs:us-east-1:555:task-definition/name:1"
LoadBalancerInfo:
ContainerName: "name"
ContainerPort: "80"
PlatformVersion: "LATEST"
CodeDeploy 失败,并显示以下错误消息:
AppSpec 文件是必需的,但在修订版中找不到
在查看 S3 中引用的修订工件后,我可以验证存档根目录中是否存在正确的 appspec.yml 文件,如上所示。
此配置可能出现什么问题?
在文件名和 buildspec.yml 中将 appspec.yml 更改为 appspec.yaml。