You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(azure/rhel-ai): add Azure Marketplace image support
Add --marketplace flag to deploy RHEL AI from the Azure Marketplace
instead of the shared gallery. The SKU is constructed from accelerator
type (cuda→nvidia, rocm→amd) and GPU count (1/2/4/8), with gen2
handling delegated to SkuG2Support. Includes a Plan block on the VM
resource for marketplace purchase plan acceptance and a helpful error
message when marketplace terms have not been accepted.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Pavol Pitonak <ppitonak@redhat.com>
returnfmt.Errorf("RHEL AI: failed to provision a GPU-capable instance (ND/NC-series required for vllm); verify GPU quota in the target location/subscription: %w", err)
returnfmt.Errorf("RHEL AI marketplace: terms not accepted; run: az vm image terms accept --publisher %s --offer %s --plan %s\n%w",
98
+
marketplacePublisher, marketplaceOffer, sku, err)
99
+
}
100
+
iflen(computeReq.ComputeSizes) ==0 {
101
+
returnfmt.Errorf("RHEL AI: failed to provision a GPU-capable instance (ND/NC-series required for vllm); verify GPU quota in the target location/subscription: %w", err)
0 commit comments