gpt4 book ai didi

Azure 二头肌 - 应用服务计划名称和层级

转载 作者:行者123 更新时间:2023-12-03 02:07:49 25 4
gpt4 key购买 nike

例如,在使用 Azure Function 和 bicep 时,该函数需要一个应用服务计划,并且该计划需要一个 sku:

resource MyHostingPlan 'Microsoft.Web/serverfarms@2021-02-01' = {
name: MyAppPlanName
location: location
sku: {
name: ?
tier: ?
}
}

resource MyFunction1 'Microsoft.Web/sites@2021-02-01' = {
name: MyAppPlanName
location: location
kind: 'functionapp'
properties: {
httpsOnly: true
serverFarmId: MyHostingPlan.id
...

https://azure.microsoft.com/en-au/pricing/details/app-service/linux/#pricing 中的内容之间似乎没有 1 对 1 的映射。以及二头肌脚本的层名称和 SKU。例如:

  • 消费计划为“Y1”/“动态”
  • P1v2 似乎是 "sku": { "name": "P1v2", "tier": "PremiumV2"}

这两者都没有在定价表中明确说明,而对于 P1v2也许人们可以猜测,对于消费计划来说这根本不明显。

问:查找应用服务计划在二头肌脚本中使用的名称和*tier`字符串的正确过程是什么?

最佳答案

*x 定义单个实例的比例。

查找此内容的最佳位置是功能/应用服务计划的扩展部分中的 Azure 门户

enter image description here

Note: All those plans are different. While the consumption planprovides event based auto-scale at pay-what-you-use rates, thefunction premium plan offers the same but at fixed per instance priceswith additional features (e.g. network integration, no-warmup time,etc). The App Service Plan is different than those two plans. Noevent-based autoscaling but is great if you have functions and unusedcapacity at an existing plan.

关于Azure 二头肌 - 应用服务计划名称和层级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74370668/

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