gpt4 book ai didi

amazon-web-services - Pulumi:如何为 CODE_DEPLOY Controller 配置 ECS 服务

转载 作者:行者123 更新时间:2023-12-04 14:17:57 27 4
gpt4 key购买 nike

在尝试设置蓝/绿部署时,我遇到了以下问题:

error: Plan apply failed: Error creating CodeDeploy deployment group: InvalidECSServiceException: Deployment group's ECS service must be configured for a CODE_DEPLOY deployment controller.
status code: 400, request id: b9314f00-ef3e-467e-a7b0-a3bd87600484

到目前为止,我尝试使用自定义设置创建 aws.ecs.Cluster 并将其传递给 awsx.ecs.Cluster 但输入不正确:

const myCluster = new aws.ecs.Cluster('myCluster', {
settings: {

}
})

结束于:

Type '{}' is not assignable to type 'Input<ClusterSetting>[] | Promise<Input<ClusterSetting>[]> | OutputInstance<Input<ClusterSetting>[]> | undefined'.

而且我无法在任何地方找到 ClusterSetting 类型。

如何为自定义 aws.ecs.Cluster 设置 ServiceDeploymentController 类型?

最佳答案

我遇到了这个问题,并亲自解决了这个问题。基本上不得不对 Typescript 撒谎来使类型对齐,以便我可以将正确的部署 Controller 设置传递给 Fargate 服务:

const serviceArgs: FargateServiceArgs = {
cluster,
waitForSteadyState: false,
taskDefinitionArgs: {
cpu: "512",
memory: "1024",
containers: {
nginx: {
image: "nginx",
portMappings: [blueListener]
}
}
},
desiredCount: 1
};

const deploymentContollerArgs = {
deploymentController: {
type: "CODE_DEPLOY"
}
};

// TODO: This is here because @pulumi/awsx doesn't expose a nice way to set the deployment controller.
const combinedArgs: FargateServiceArgs = {
...serviceArgs,
...deploymentContollerArgs
};

export const laravelWebAppService = new awsx.ecs.FargateService(
stackNamed("larvel-webapp-service"),
{
...combinedArgs
}
);


export const codeDeployGroup = new aws.codedeploy.DeploymentGroup(
stackNamed("code-deploy-group"),
{
appName: codeDeployApplication.name,
serviceRoleArn: role.arn,
deploymentGroupName: stackNamed("code-deploy-group"),
deploymentConfigName: "CodeDeployDefault.ECSAllAtOnce",
deploymentStyle: {
deploymentType: "BLUE_GREEN",
deploymentOption: "WITH_TRAFFIC_CONTROL"
},
blueGreenDeploymentConfig: {
deploymentReadyOption: {
actionOnTimeout: "CONTINUE_DEPLOYMENT"
},
terminateBlueInstancesOnDeploymentSuccess: {
action: "TERMINATE",
terminationWaitTimeInMinutes: 1
}
},
ecsService: {
clusterName: cluster.cluster.name,
serviceName: laravelWebAppService.service.name
},
loadBalancerInfo: {
targetGroupPairInfo: {
prodTrafficRoute: {
listenerArns: [blueListener.listener.arn]
},
testTrafficRoute: {
listenerArns: [greenListener.listener.arn]
},
targetGroups: [
{
name: blueTargetGroup.targetGroup.name
},
{
name: greenTargetGroup.targetGroup.name
}
]
}
}
}
);

关于amazon-web-services - Pulumi:如何为 CODE_DEPLOY Controller 配置 ECS 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58304028/

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