AWS ECS无法放置任务,因为没有容器实例满足其所有要求

问题描述 投票:1回答:2

我正在使用.NET Core WEBAPI和Dockerfile

FROM microsoft/dotnet:sdk AS build-env
WORKDIR /app

# Copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore

# Copy everything else and build
COPY . ./
RUN dotnet publish -c Release -o out

# Build runtime image
FROM microsoft/dotnet:aspnetcore-runtime
WORKDIR /app
COPY --from=build-env /app/out .
ENTRYPOINT ["dotnet", "DummyService.dll"]

在我的cloudformation模板中,ECS部分看起来像这样

  dummyWebApiEcsTaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
  Family: !Ref AWS::StackName
  TaskRoleArn: !GetAtt dummyWebApiIamRole.Arn
  ContainerDefinitions:
    - Name: !Ref AWS::StackName
      Image: MY IMAGE URL
      DnsSearchDomains:
        - !Join [".", [{"Fn::ImportValue": !Sub "${accountStackName}-${AWS::Region}-envName"}, "connected", !If [chinaPartition, "TEST", "CORP"], "cloud"]]
      LogConfiguration:
        LogDriver: splunk
        Options:
          splunk-token: {"Fn::ImportValue": !Sub "${splunkHECStackName}-${AWS::Region}-SplunkHECToken"}
          splunk-url: "http://splunk-forwarder:8088"
          splunk-insecureskipverify: True
          tag: !Ref AWS::StackName
          splunk-format: json
          splunk-source: !Ref AWS::StackName
          splunk-sourcetype: AWS:ECS
      EntryPoint: []
      PortMappings:
        - ContainerPort: 5000
      Command: []
      Cpu: 0
      Environment:
        - Name: BindAddress
          Value: http://0.0.0.0:5000
        - Name: MinLogLevel
          Value: !If [isProduction, "Information", "Debug"]
      Ulimits: []
      DnsServers: []
      MountPoints: []
      DockerSecurityOptions: []
      Memory: 512
      VolumesFrom: []
      Essential: true
      ExtraHosts: []
      ReadonlyRootFilesystem: false
      DockerLabels: {}
      Privileged: false

  dummyEcsService:
Type: AWS::ECS::Service
DependsOn:
  - dummyWebApiIamRole
  - dummyInternalAlb
  - dummyAlbTargetGroup
Properties:
  Cluster:
    Fn::ImportValue: !Sub "cld-core-ecs-${AWS::Region}-ECSCluster"
  DeploymentConfiguration:
    MaximumPercent: 200
    MinimumHealthyPercent: 50
  DesiredCount: 2
  LoadBalancers:
    - ContainerName: !Ref AWS::StackName
      ContainerPort: 5000
      TargetGroupArn: !Ref dummyAlbTargetGroup
  PlacementStrategies:
    - Type: spread
      Field: attribute:ecs.availability-zone
  TaskDefinition: !Ref dummyWebApiEcsTaskDefinition
  ServiceName: !Ref AWS::StackName
  Role: !Sub "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS"

部署无法完成,我可以在ECS服务事件选项卡中看到此错误

service cld-dummy-test无法放置任务,因为没有容器实例满足其所有要求。原因:您的群集中未找到任何容器实例。

amazon-web-services docker .net-core amazon-ecs
2个回答
0
投票

我最终弄明白了。下面的错误消息表明此群集中没有EC2,因此无法启动容器。我们没有使用Fargate。

service cld-dummy-test无法放置任务,因为没有容器实例满足其所有要求。原因:您的群集中未找到任何容器实例。

要将EC2注册到群集,您需要遵循此AWS文章。 https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_container_instance.html

请注意,您启动的EC2需要具有以下userdata才能进行注册。

#!/bin/bash
echo ECS_CLUSTER=your_cluster_name >> /etc/ecs/ecs.config

完成上述操作后,您不应该看到有关“无容器”的错误。但是,如果您像我一样,请在模板中使用splunk日志记录部分。您将遇到一个不同的问题,即没有容器可以用于任务,因为它缺少一个属性。这是一个非常模糊的消息,属性可以是任务定义页面底部列出的任何内容。

在我的情况下,它是splunk日志记录。需要将splunk驱动程序添加到EC2实例。因为我后来发现我们不再需要splunk所以我删除了splunk部分。但是如果你想这样做,你可能需要在你的用户数据中添加以下行。

ECS_AVAILABLE_LOGGING_DRIVERS=["splunk","awslogs"]

我希望这可以帮助别人。


0
投票

AWS ECS有两个启动类型配置:

  • Fargate
  • Fargate + EC2

在这两种情况下,您都无法访问底层资源。

因此,在启动类型配置中可能导致问题的原因是您无法启动任务,否则从ecs仪表板中您可以选择启动类型并选择任务定义。

© www.soinside.com 2019 - 2024. All rights reserved.