代码之家  ›  专栏  ›  技术社区  ›  Private

代码管道限制代码生成中的项目属性

  •  1
  • Private  · 技术社区  · 6 年前

    我创建了一个代码构建来基于codecommit中的更改构建我的项目。这就是 batch-get-projects 它的命令详细信息

    {
        "projects": [
            {
                "name": "MultiRepBuild",
                "arn": "arn:aws:codebuild:us-east-1:100000xxx0x:project/MultiRepBui
    ld",
                "source": {
                    "type": "CODECOMMIT",
                    "location": "https://git-codecommit.us-east-1.amazonaws.com/v1/r
    epos/PythonRep",
                    "gitCloneDepth": 1,
                    "insecureSsl": false
                },
                "secondarySources": [],
                "artifacts": {
                    "type": "S3",
                    "location": "testxxxthe-codebuild",
                    "path": "",
                    "namespaceType": "NONE",
                    "name": "Lambda",
                    "packaging": "ZIP",
                    "overrideArtifactName": false,
                    "encryptionDisabled": false
                },
                "secondaryArtifacts": [],
                "cache": {
                    "type": "NO_CACHE"
                },
                "environment": {
                    "type": "LINUX_CONTAINER",
                    "image": "aws/codebuild/python:3.6.5",
                    "computeType": "BUILD_GENERAL1_SMALL",
                    "environmentVariables": [],
                    "privilegedMode": false
                },
                "serviceRole": "arn:aws:iam::xxxxxxxx:role/service-role/codebuil
    d-MultiRepBuild-service-role",
                "timeoutInMinutes": 60,
                "encryptionKey": "arn:aws:kms:us-east-1:xxxxxx:alias/aws/s3",
                "tags": [],
                "created": 1542607679.567,
                "lastModified": 1542611632.345,
                "badge": {
                    "badgeEnabled": false
                }
            }
        ],
        "projectsNotFound": []
    }
    

    此codebuild将创建具有指定名称的buildArtifact Lambda 并以zip格式保存在指定的存储桶中。

    但当我将相同的codebuild与codepipeline集成在一起时,它会根据这个重写bucketname。 answer . 即使我试图用cloudformation更改bucketname,但是我如何添加在工件部分定义的参数(即 name )从上面的片段中,因为我将指出 名称 作为一个 S3KeyName 在我的CloudInformation模板中。

    我试图更改下面文件中的名称,通过运行 aws codepipeline get-pipeline --name MyFirstPipeline >pipeline.json 命令

    {
        "pipeline": {
            "name": "MultiBuild",
            "roleArn": "arn:aws:iam::xxxxxxxxxxx:role/service-role/AWSCodePipelineServiceRole-us-east-1-MultiBuild",
            "artifactStore": {
                "type": "S3",
                "location": "codepipeline-us-east-1-xxxxx"
            },
            "stages": [
                {
                    "name": "Source",
                    "actions": [
                        {
                            "name": "Source",
                            "actionTypeId": {
                                "category": "Source",
                                "owner": "AWS",
                                "provider": "CodeCommit",
                                "version": "1"
                            },
                            "runOrder": 1,
                            "configuration": {
                                "BranchName": "master",
                                "PollForSourceChanges": "false",
                                "RepositoryName": "PythonRep"
                            },
                            "outputArtifacts": [
                                {
                                    "name": "SourceArtifact"
                                }
                            ],
                            "inputArtifacts": []
                        }
                    ]
                },
                {
                    "name": "Build",
                    "actions": [
                        {
                            "name": "Build",
                            "actionTypeId": {
                                "category": "Build",
                                "owner": "AWS",
                                "provider": "CodeBuild",
                                "version": "1"
                            },
                            "runOrder": 1,
                            "configuration": {
                                "ProjectName": "MultiRepBuild"
                            },
                            "outputArtifacts": [
                                {
                                    "name": "Lambda" -->Here
                                }
                            ],
                            "inputArtifacts": [
                                {
                                    "name": "SourceArtifact"
                                }
                            ]
                        }
                    ]
                }
            ],
            "version": 1
        }
    }
    

    这将创建一个名为的文件夹 兰姆达 而不是创建文件。文件结构如下

     ---MultiBuild
          |
          |
          -->Lambda
              |
              |
              abcd.zip
          -->SourceArti
              |
              |
              efgh.zip
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   Matthew Sainsbury Thanga    6 年前

    对不起的!这是代码管道管理工件方式的一个不幸结果。codepipeline outputArtifacts字段中的“name”只是一个逻辑名称。设计了代码管道,以便未来阶段可以引用在过去阶段中使用该名称创建的工件。这些构件存储在您在管道中指定的bucket中,但我认为您不需要在部署配置中使用这些对象。

    如果正在构建要部署到lambda函数的zip文件,则可以在管道中创建第二个阶段,该阶段将部署到您拥有的lambda函数: https://docs.aws.amazon.com/lambda/latest/dg/build-pipeline.html

    如果您只需要将zip文件放在可预测的位置(例如, s3://testxxxthe-codebuild/Lambda.zip )对于您创建的其他一些过程,我们已经从几个客户那里听到了您的用例,并正在考虑如何使此体验更好。同时,您可能会发现以下论坛帖子很有用: https://forums.aws.amazon.com/thread.jspa?threadID=228984