1

尝试通过以下具有适当导入的清单使用 cloudformation 创建 ECS 服务

 UIService:
        Type: AWS::ECS::Service
        Properties:
          Cluster: !ImportValue ECSClusterName
          DesiredCount: 1
          LaunchType: EC2
          LoadBalancers:
            - ContainerName: !ImportValue UIContainerName
              ContainerPort: '80'
              TargetGroupArn: !ImportValue UITGArn
          ServiceName: ui-service
          ServiceRegistries:
           - RegistryArn: arn:aws:servicediscovery:eu-west-1:944094092130:service/srv-oIclu40KCKM3esez7
          TaskDefinition: !ImportValue UITaskArn

这失败并显示以下消息:

当为 networkMode 指定 'host' 或 'bridge' 时,必须从任务定义中指定 'containerName' 和 'containerPort' 的值。

但是,当我添加想要的值时(在 serviceregistry 属性中,它让我假设它们是需要的?)

  UIService:
    Type: AWS::ECS::Service
    Properties:
      Cluster: !ImportValue ECSClusterName
      DesiredCount: 1
      LaunchType: EC2
      LoadBalancers:
        - ContainerName: !ImportValue UIContainerName
          ContainerPort: '80'
          TargetGroupArn: !ImportValue UITGArn
      ServiceName: ui-service
      ServiceRegistries:
       - RegistryArn: arn:aws:servicediscovery:eu-west-1:944094092130:service/srv-oIclu40KCKM3esez7
         ContainerName: !ImportValue UIContainerName
         ContainerPort: '80'
      TaskDefinition: !ImportValue UITaskArn

...我得到以下失败:

遇到不支持的属性 ContainerName

4

2 回答 2

2

这是来自 AWS 的错误,其中 cloudformation 目前不支持containerNamecontainerPort属性。这是ServiceRegistry的官方文档,这里是 cloudformation 的文档。如果我没记错的话,在发布服务发现的时候,它只支持awsvpc网络模式,后来添加了bridge/host 。它解释了为什么我们会有这样的差异。

目前,您可以创建基本的 ECS cloudformation,并使用 CLI/API/SDK 进行相应的更新,或者您可以等待 AWS 团队对其添加支持。

Updated: As per this new feature (introduced on 24 Sep 2018), now you can specify the containerName and containerPort in the Service Registry.

于 2018-09-11T09:48:50.603 回答
0

As per latest feature (introduced today), now you can specific the containerName and containerPort in ServiceRegistry.

I have quickly tested and it seems working just fine.

于 2018-09-24T22:43:38.687 回答