gpt4 book ai didi

amazon-web-services - 代码管道 : CodeDeploy reports "BundleType must be either YAML or JSON"

转载 作者:行者123 更新时间:2023-12-04 08:12:38 24 4
gpt4 key购买 nike

CodeDeploy reports "BundleType must be either YAML or JSON"

appspec.yml is in the root dir of CodeCommit

构建规范.yml:

version: 0.2

phases:
build:
commands:
- echo Build started on `date`
- echo Compiling the Python code...
- python HelloWorld_tst.py
post_build:
commands:
- echo Build completed on `date`
artifacts:
files:
- HelloWorld.py
- appspec.yml
discard-paths: yes


appspec.yml

version: 0.0
Resources:
- autovisionfunction:
Type: AWS::Lambda::Function
Properties:
Name: "autovisionfunction"
Alias: "staging"
CurrentVersion: "1"
TargetVersion: "2"


似乎在 CodePipeline 中找不到 appspec.yml

我已经从 S3 存储桶下载了人工制品 zip,里面有 appspec.yml。

enter image description here

我想念什么?

谢谢

奥利亚

最佳答案

我目前一直在努力解决同样的问题。

经过一番挖掘,我发现它看起来是通过代码管道链接两个服务(codebuild 和 codedeploy)的限制

当前 codebuild 仅支持 ZIP/TAR/TGZ 作为 codedeploy 不支持的包类型(输出)

具有 AWS 响应的类似线程
https://forums.aws.amazon.com/thread.jspa?messageID=864336

解决方法是通过 codebuild::project buildspec 触发 codedeploy。下面的例子

export REVISION="revisionType=S3,s3Location{bucket=$BUCKET_DEPLOYMENTS,key=$CODEBUILD_BUILD_ID/appspec.yml,bundleType=YAML}"

aws deploy create-deployment \
--application-name=$APPLICATION_NAME \
--deployment-group-name=$DEPLOYMENT_GROUP_NAME \
--revision=$REVISION \
--deployment-config-name='CodeDeployDefault.LambdaCanary10Percent30Minutes'

希望这能给你一些关于如何解决限制的想法

问候,

关于amazon-web-services - 代码管道 : CodeDeploy reports "BundleType must be either YAML or JSON",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53136089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com