gpt4 book ai didi

azure - 可用作 AKS 节点的最便宜的 VM 是多少?

转载 作者:行者123 更新时间:2023-12-02 11:29:40 26 4
gpt4 key购买 nike

我正在测试一些 Terraform 代码来创建 Kubernetes 集群,因此我选择了最小/最便宜的 VM

resource "azurerm_kubernetes_cluster" "k8s" {
name = "${var.cluster_name}"
location = "${azurerm_resource_group.resource_group.location}"
resource_group_name = "${azurerm_resource_group.resource_group.name}"
dns_prefix = "${var.dns_prefix}"

agent_pool_profile {
name = "agentpool"
count = "${var.agent_count}"
vm_size = "Standard_B1s"
os_type = "Linux"
os_disk_size_gb = "${var.agent_disk_size}"
}

service_principal {
client_id = "${var.client_id}"
client_secret = "${var.client_secret}"
}
}

但是,当我 terraform apply 时,我从 azure 收到此错误消息:

"The VM SKU chosen for this cluster Standard_B1s does not have enough CPU/memory to run as an AKS node."

如何列出 AKS 节点的有效 VM SKU 并按成本对它们进行排序?

最佳答案

您需要选择内存至少为 3.5 GB 的实例。阅读此 blog 中的关于节点大小的注释 。您可以在Azure sales site上列出VM大小和价格。 .

目前,最便宜的是具有 4 GB RAM 的 Standard_B2s。您还可以直接在 Azure 门户中对其进行排序。 enter image description here

关于azure - 可用作 AKS 节点的最便宜的 VM 是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54876474/

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