- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
AWSTemplateFormatVersion: "2010-09-09"
Description: Not Have Any Idea
Parameters:
Service:
Description: Service Name
Type: String
Cluster:
Description: Cluster Name
Type: String
TaskDefinition:
Description: TaskDefinition Name
Type: String
securitygroup:
Description: securitygroup
Type: AWS::EC2::SecurityGroup::Id
SubnetId:
Type: List<AWS::EC2::Subnet::Id>
Description: Select at two subnets in your selected VPC.
Resources:
sernginx:
Type: "AWS::ECS::Service"
Properties:
ServiceName:
Ref: Service
LaunchType: "FARGATE"
DesiredCount: 1
Cluster:
Ref: Cluster
TaskDefinition:
Ref: TaskDefinition
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 70
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: ENABLED
SecurityGroups:
- Ref: securitygroup
Subnets:
Ref: SubnetId
我正在使用此代码创建 aws ecs 服务 fargate
我收到 ROLLBACK_COMPLETE 状态,并显示一条错误消息
服务 arn:aws:ecs:us-east-1:439138162442:service/yuiyiuyiu 不稳定
最佳答案
我已经使用这种模板来创建 Fargate 任务。
AWSTemplateFormatVersion: '2010-09-09'
Description: Docker Core App service
Parameters:
EnvironmentName:
Type: String
Default: coreapp
Description: A name for the environment that this cloudformation will be part of.
ServiceName:
Type: String
Default: coreapi
Description: A name for the service
ImageUrl:
Type: String
Default: your_image_URI
Description: The url of a docker image
ContainerPort:
Type: Number
Default: 5000
Description: What port number the application inside the docker container
ContainerCpu:
Type: Number
Default: 256
Description: How much CPU to give the container.
ContainerMemory:
Type: Number
Default: 512
Description: How much memory in megabytes to give the container
DesiredCount:
Type: Number
Default: 2
Description: How many copies of the service task to run
Role:
Type: String
Default: ""
Description: (Optional) An IAM role to give the service's containers
Resources:
Service:
Type: AWS::ECS::Service
Properties:
ServiceName: !Ref 'ServiceName'
Cluster:
- coreapp
LaunchType: FARGATE
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 75
DesiredCount: !Ref 'DesiredCount'
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: ENABLED
SecurityGroups:
- sg-483aa03e
Subnets:
- subnet-2ce41866
- subnet-ceefe5aa
TaskDefinition: !Ref 'TaskDefinition'
关于aws-cloudformation - 在aws ecs fargate中使用cloudformation创建服务 "did not stabilize",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49710344/
我了解排序算法的就地属性的重要性。 我知道稳定性有助于维持相对顺序,但算法的稳定性属性会影响其性能吗? 最佳答案 来自维基百科: A sorting algorithm is stable if wh
我正在研究 ESP32 用于 wifi 项目,尽管有 CC3200 (TI) 等替代品,因为它的价格。但我怀疑 ESP32 的硬件或 SDK 的可靠性。 我在开发简单项目时发现了一些错误。我向 ESP
我在页面右侧有一个 div,在顶部有一个标题,例如: 所以我有菜单的 div,我将它包裹在另一个 div 中,将其设置为向右浮动,此外,在菜单 div 之前,我在顶部有标题 div。我想要做的是制作另
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我正在从事一个使用 MC 框架作为通信 channel 的项目,经过一些测试后,我觉得这个 channel 在某种程度上不稳定,无法依赖。 为了正确使用该框架,我一直在关注 Apple 的文档和视频,
我今天正在安装新的 CPAN 模块,结果发现 JSON::XS 模块显示了它自己的警告/咆哮,关于在 5.22 以上的 Perls 中使用它。似乎作者厌倦了据称在那之后引入 Perl 的向后不兼容的更
我有一列包含这样的数据: [ 0, +1, +1, +1, 0, +1, -1, -1, 0, -1, -1, -1, -1, +1, +1, -1, +1, +1, +1, +1, +1, +1,
我正在 Unity3d 中创建一个与 python 的 websockets 库通信的应用程序。我的Python脚本如下: from __future__ import division import
我想在我的应用中捕捉稳定的图像,但我还没有找到实现它所需的配置。 这是我的代码: let frontCamera = cameraWithPosition(AVCaptureDevicePositio
我正在尝试运行 composer require phpseclib/mcrypt_compat:dev-master在一个空目录中,并收到以下错误: ./composer.json has been
我正在尝试在 Ubuntu 22.04 服务器上安装我的第一个 kubernetes 集群。我正在按照此链接 (https://www.cloudsigma.com/how-to-install-an
AWSTemplateFormatVersion: "2010-09-09" Description: Not Have Any Idea Parameters: Service: Des
目前,我正在使用 Arduino nano。当我在 Arduino IDE 中编译我的 c 代码时,出现以下错误。 程序上传成功,运行正常,请问是什么原因造成的?真的会影响arduino nano的性
我有三星 S10,它具有视频稳定功能。使用系统默认的相机应用程序,我可以看到它启用和未启用时的区别:首先,如果它已启用,则会有一些缩放预览,其次,它在设备移动期间很明显。 我尝试使用 Camera2
我已经为 DCGAN 构建了自己的实现在 TensorFlow培训 MNIST . 完整代码(可运行)可在 github 上找到:https://github.com/Daniel451/tfdcga
我尝试用 composer 发布一个项目。该项目驻留在 github 上,并通过 packagist.org 发布。 但是当我尝试使用 composer 创建我的项目时,它失败并显示以下错误消息: "
所以我正在使用 ECS(通过 ecs-cli 创建)和 CloudFormation,并且在创建自动缩放组时遇到问题: 它始终失败,提示“LoadBalancer 附件不稳定”。有谁知道这可能是什么原
所以我正在使用 ECS(通过 ecs-cli 创建)和 CloudFormation,并且在创建自动缩放组时遇到问题: 它始终失败,提示“LoadBalancer 附件不稳定”。有谁知道这可能是什么原
我正在浏览CNTK 204: Sequence to Sequence Networks with Text Data教程。使用了函数 cntk.blocks.Stabilizer(),但目前没有该函
当更改浏览器窗口的大小时,我注意到窗口边框和行(红色)之间的填充正在发生变化,如您在此处所见: 然后,缩小窗口: 我用来做这个简单例子的代码是: Bootstrap Example
我是一名优秀的程序员,十分优秀!