AWS CodePipeline与CodeDeploy到ECS找不到appspec.yml

问题描述 投票:3回答:1

我创建使用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文件存在于存档根和如上是。

怎么可能是错误的这个配置?

amazon-web-services amazon-ecs aws-code-deploy aws-codepipeline
1个回答
0
投票

更改appspec.yml在这两个文件名和buildspec.yml到appspec.yaml。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.