gpt4 book ai didi

amazon-web-services - Spot实例支持DCOS

转载 作者:行者123 更新时间:2023-12-04 08:03:51 25 4
gpt4 key购买 nike

是否可以更改 DCOS 模板以使用 spot 实例?我环顾四周,似乎没有太多关于这方面的信息。

最佳答案

好的,given the DCOS template ,从站的 LaunchConfiguration 看起来像这样:(我把它缩短了一些)

"MasterLaunchConfig": {
"Type": "AWS::AutoScaling::LaunchConfiguration",
"Properties": {
"IamInstanceProfile": { "Ref": "MasterInstanceProfile" },
"SecurityGroups": [ ... ],
"ImageId": { ... },
"InstanceType": { ... },
"KeyName": { "Ref": "KeyName" },
"UserData": { ... }
}
}

要开始,您需要做的就是添加 SpotPrice那里的属性(property)。 SpotPrice 的值显然是您要支付的最高价格。您可能需要在自动缩放方面做更多工作,尤其是在警报和一天中的时间方面。因此,这是您的新 LaunchConfiguration,现货价格为每小时 1.00 美元:

"MasterLaunchConfig": {
"Type": "AWS::AutoScaling::LaunchConfiguration",
"Properties": {
"IamInstanceProfile": { "Ref": "MasterInstanceProfile" },
"SecurityGroups": [ ... ],
"ImageId": { ... },
"InstanceType": { ... },
"KeyName": { "Ref": "KeyName" },
"UserData": { ... },
"SpotPrice": 1.00
}
}

关于amazon-web-services - Spot实例支持DCOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31409463/

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