- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了让 lambda 从 s3 存储桶获取更新的 zip 文件,每当我更新文件时,我都会将 commit-id 添加到 zip 文件名并上传到 s3 存储桶。 (s3 存储桶版本控制也已激活)。这是我所做的:
我有一个 CloudFormmation 模板,它创建一个 lambda 函数,并且 lambda 从 s3 存储桶获取压缩代码。为了拥有 CI/CD,我创建了一个 CodePipeline,它在 buildpart(buidspec) 中从 python 脚本创建一个 zip 文件并将其上传到 s3 存储桶,它使用 $CODEBUILD_RESOLVED_SOURCE_VERSION 将 commit-id 添加到 zip 文件名
代码构建:
CodeBuild:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Environment:
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
Type: LINUX_CONTAINER
Name: !Sub ${AWS::StackName}-buildzipfile
ServiceRole: !GetAtt CodeBuildRole.Arn
Source:
Type: CODEPIPELINE
BuildSpec: |-
version: 0.2
phases:
install:
runtime-versions:
python: 3.8
build:
commands:
- cd src
- pip install boto3
- pip install zip_files
- echo $CODEBUILD_RESOLVED_SOURCE_VERSION
- python codebuildzip.py $CODEBUILD_RESOLVED_SOURCE_VERSION
- echo "Uploaded LambdaFunction to S3 bucket."
CloudFormation.yml
LambdaFunction:
Type: 'AWS::Lambda::Function'
Properties:
Code:
S3Bucket: !Ref 'LambdaZipfileBucket'
S3Key: lambda_function.zip ####Here it should be like: lambda_function_{commitid}.zip
Description: Monitor Lambda Function
Handler: 'lambda_function.lambda_handler'
Role: !GetAtt
- LambdaExecutionRole
- Arn
Runtime: python3.7
Environment:
Variables:
myvar1: "value1"
在 CodePipeline 中,我正在部署 cloudformation 模板,这里我需要将 lambda zip 文件名发送到 cloudformation,以便 Lambda 获取更新的 S3Key。
CodePipeline:
Type: 'AWS::CodePipeline::Pipeline'
#checking changes of the template and deploying it.
Properties:
RoleArn: !GetAtt CodePipelineRole.Arn
ArtifactStore:
Location: !Ref 'ArtifactStoreBucket'
Type: S3
Name: !Ref 'PipelineName'
Stages:
- Name: Build
Actions:
- Name: CodeBuild
InputArtifacts:
- Name: SrcOutput
ActionTypeId:
Category: Build
Owner: AWS
Version: 1
Provider: CodeBuild
Configuration:
ProjectName: !Ref CodeBuild
OutputArtifacts:
- Name: BuildOutput
RunOrder: '1'
- Name: Deploy
Actions:
- Name: CreateChangeSet
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: '1'
InputArtifacts:
- Name: SrcOutput
Configuration:
ActionMode: CHANGE_SET_REPLACE
RoleArn: !GetAtt CloudFormationExecutionRole.Arn
Capabilities: CAPABILITY_NAMED_IAM
StackName: !Ref StackName
ChangeSetName: !Ref ChangeSetName
TemplatePath: "SrcOutput::templates/CloudFormation.yml"
RunOrder: '2'
- Name: ExecuteChangeSet
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: '1'
Configuration:
ActionMode: CHANGE_SET_EXECUTE
ChangeSetName: !Ref ChangeSetName
RoleArn: !GetAtt CloudFormationExecutionRole.Arn
StackName: !Ref StackName
RunOrder: '3'
我的问题是如何通过 codepipeline 将 s3 对象名称发送到模板文件?或者 lambda 函数是否有更好的方法来获取更新的 s3 对象?
我搜索了很多,有些帖子讨论了使用“Fn::GetArtifactAtt”或将 zipfilename 保存到 ssm 并从 ssm 获取它,但是我无法让它们解决。例如,添加以下参数似乎不正确,因为 ObjectKey 是包含 CodePipeline 生成的工件的 .zip 文件的名称,而不是 s3 对象的名称:
ParameterOverrides: |
{
"S3Key" : { "Fn::GetArtifactAtt" : ["SrcOutput", "ObjectKey"]}
}
如有任何帮助,我们将不胜感激。
最佳答案
还有其他几种方法可以潜在地解决此问题,但与您当前的方法保持一致。
https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-variables.html
管道的第一阶段必须包含至少一个源操作。您可以使用如下所示的命名空间来声明它(SourceVariables):
- Name: Checkout
Actions:
- ActionTypeId:
Category: Source
Owner: AWS
Provider: CodeStarSourceConnection
Version: "1"
Configuration:
ConnectionArn: !Ref CodeStarConnectionArn
FullRepositoryId: !Ref BitBucketRepo
BranchName: !Ref BitBucketRepoReleaseBranch
OutputArtifactFormat: "CODE_ZIP"
Name: Checkout
Namespace: SourceVariables
OutputArtifacts:
- Name: !Ref SourceArtifactName
RunOrder: 1
在管道定义中,现在可以使用“#{SourceVariables.CommitId}”,例如
ParameterOverrides: !Sub |
{
"CommitId" : '#{SourceVariables.CommitId}'
}
那么你的 CF 模板可能是这样的:
Parameters:
CommitId:
Type: String
Resources:
LambdaFunction:
Type: 'AWS::Lambda::Function'
Properties:
Code:
S3Bucket: !Ref 'LambdaZipfileBucket'
S3Key: !Sub lambda_function_${CommitId}.zip
Description: Monitor Lambda Function
Handler: 'lambda_function.lambda_handler'
Role: !GetAtt
- LambdaExecutionRole
- Arn
Runtime: python3.7
Environment:
Variables:
myvar1: "value1"
关于amazon-s3 - 如何将 commit_id 作为 lambda zip 文件名 (s3 object_name) 从 codepipeline 传递到 cloudformation 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67333939/
当我进行“pull ”时,我收到以下错误消息: Failure updating tracking ref refs/remotes/origin/5100_: Missing unknown
为了让 lambda 从 s3 存储桶获取更新的 zip 文件,每当我更新文件时,我都会将 commit-id 添加到 zip 文件名并上传到 s3 存储桶。 (s3 存储桶版本控制也已激活)。这是我
我是一名优秀的程序员,十分优秀!