简体   繁体   English

是否可以使用支持 GPU 计算的虚拟机创建 Azure Kubernetes 集群以用于 Azure Pass 赞助?

[英]Is there a possibility to create Azure Kubernetes Cluster with virtual machine which supports GPU computing for Azure Pass Sponsorship?

I want to create Azure Kubernetes Service resource which supports GPU computing.我想创建支持 GPU 计算的 Azure Kubernetes 服务资源。 I have huge amount of data and docker image which requires Nvidia drivers.我有大量数据和需要 Nvidia 驱动程序的 docker 图像。 When I attempt to create it I get:当我尝试创建它时,我得到:

Size not available
This size is currently unavailable in eastus for this subscription: NotAvailableForSubscription.

I get this message for every location I choose.对于我选择的每个位置,我都会收到此消息。 I suppose the problem is that I use Azure Pass Sponsorship.我想问题是我使用 Azure Pass 赞助。 Is there any way to do it on this kind of subscription?有没有办法在这种订阅上做到这一点?

You receive this error when the resource SKU you have selected (such as K8's Cluster or VM's) is not available for the location you have selected当您选择的资源 SKU(例如 K8 的集群或 VM)对于您选择的位置不可用时,您会收到此错误

You can check the product availability in selected region by Products available by region .您可以通过按地区可用的产品查看所选地区的产品可用性。

To determine which SKUs are available in a region/zone, use the Get-AzComputeResourceSku command.若要确定区域/区域中哪些 SKU 可用,请使用Get-AzComputeResourceSku命令。 Filter the results by location.按位置过滤结果。 You must have the latest version of PowerShell for this command.对于此命令,您必须拥有最新版本的 PowerShell。

Get-AzComputeResourceSku | where {$_.Locations -icontains  "centralus"}

Refer this documentation for more information.有关更多信息,请参阅此文档

Please refer to this document for a list of common Microsoft Azure limits, quotas and constraints for Azure Sponsorship Subscription.有关 Azure 赞助订阅的常见 Microsoft Azure 限制、配额和约束的列表,请参阅此文档

The following monthly usage quotas are applied.应用以下每月使用配额。 If you need more than these limits, please contact customer service at any time so that they can understand your needs and adjust these limits appropriately.如果您需要超过这些限制,请随时联系客户服务,以便他们了解您的需求并适当调整这些限制。

Reference: Microsoft Azure Sponsorship Offer参考: Microsoft Azure 赞助优惠

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM