0

希望有人可以在这里帮助我,根据 AWS CDK 文档,如果我声明我的 VPC,那么我不应该声明 'capacity',但是当我运行cdk synth时出现以下错误......

抛出新的错误(Validation failed with the following errors:\n ${errorList});

错误:验证失败并出现以下错误:[PrerenderInfrasctutureStack/preRenderApp/Service] 此服务的集群需要 Ec2 容量。在集群上调用 addXxxCapacity()。

这是我的代码......(我希望 Nathan Peck 看到这个)

const ec2 = require('@aws-cdk/aws-ec2');
const ecsPattern = require('@aws-cdk/aws-ecs-patterns');
const ecs = require('@aws-cdk/aws-ecs');
class PrerenderInfrasctutureStack extends cdk.Stack {
  /**
   *
   * @param {cdk.Construct} scope
   * @param {string} id
   * @param {cdk.StackProps=} props
   */


  constructor(scope, id, props) {
    super(scope, id, props);

    const myVPC = ec2.Vpc.fromLookup(this, 'publicVpc', {
      vpcId:'vpc-xxx'
    });


    const preRenderApp = new ecsPattern.ApplicationLoadBalancedEc2Service(this, 'preRenderApp', {
      vpcId: myVPC,
      certificate: 'arn:aws:acm:ap-southeast-2:xxx:certificate/xxx', //becuase this is spcified, then the LB will automatically use HTTPS
      domainName: 'my-dev.com.au.',
      domainZone:'my-dev.com.au',
      listenerPort: 443,
      publicLoadBalancer: true,
      memoryReservationMiB: 8,
      cpu: 4096,
      desiredCount: 1,
      taskImageOptions:{
        image: ecs.ContainerImage.fromRegistry('xxx.dkr.ecr.region.amazonaws.com/express-prerender-server'), 
        containerPort: 3000
      },
    });


  }

}


module.exports = { PrerenderInfrasctutureStack }

4

1 回答 1

1

这是因为如果您没有明确传递集群,那么它会使用您帐户中存在的默认集群。然而,默认集群开始时没有 EC2 容量,因为 EC2 实例在运行时需要花钱。您可以在 Fargate 模式下使用空的默认集群,因为 Fargate 不需要 EC2 容量,它只是在 Fargate 内运行您的容器,但在您将 EC2 实例添加到集群之前,默认集群将无法使用 EC2 模式。

此处的简单解决方案是切换到ApplicationLoadBalancedFargateService,因为 Fargate 服务使用 Fargate 容量运行,因此它们不需要集群中的 EC2 实例。或者,您应该使用以下内容定义自己的集群:

// Create an ECS cluster
const cluster = new ecs.Cluster(this, 'Cluster', {
  vpc,
});

// Add capacity to it
cluster.addCapacity('DefaultAutoScalingGroupCapacity', {
  instanceType: new ec2.InstanceType("t2.xlarge"),
  desiredCapacity: 3,
});

然后在创建时将该集群作为属性传递ApplicationLoadBalancedEc2Service

希望这可以帮助!

于 2020-05-05T15:54:16.453 回答