How can the BYOS images for RHEL in the Azure Marketplace be deployed to a VM?
I can see that BYOS images exist:
PS H:\> Get-AzureRmVMImageSku -Location centralus -PublisherName RedHat -Offer rhel-byos | Select-Object -Property * -ExcludeProperty Id
Skus : rhel-lvm74
Offer : rhel-byos
PublisherName : RedHat
Location : centralus
RequestId : 240292aa-1661-4048-9f47-b2d56e131087
StatusCode : OK
Skus : rhel-lvm75
Offer : rhel-byos
PublisherName : RedHat
Location : centralus
RequestId : 240292aa-1661-4048-9f47-b2d56e131087
StatusCode : OK
Skus : rhel-raw69
Offer : rhel-byos
PublisherName : RedHat
Location : centralus
RequestId : 240292aa-1661-4048-9f47-b2d56e131087
StatusCode : OK
Skus : rhel-raw75
Offer : rhel-byos
PublisherName : RedHat
Location : centralus
RequestId : 240292aa-1661-4048-9f47-b2d56e131087
StatusCode : OK
I'm also able to see that plan information is required:
PS H:\> Get-AzureRmVMImage -Location centralus -PublisherName RedHat -Offer rhel-byos -Skus rhel-raw75 -Version 7.5.20180917 | Select-Object -Property * -ExcludeProperty Id
Location : centralus
PublisherName : RedHat
Offer : rhel-byos
Skus : rhel-raw75
Version : 7.5.20180917
FilterExpression :
Name : 7.5.20180917
OSDiskImage : {
"operatingSystem": "Linux"
}
PurchasePlan : {
"publisher": "redhat",
"name": "rhel-raw75",
"product": "rhel-byos"
}
DataDiskImages : []
However, if I try to deploy a BYOS image with the appropriate plan information, I get the following error:
"Offer with PublisherId: redhat, OfferId: rhel-byos, PlanId rhel-raw75 is private and can not be purchased by subscritpionId:
As far as I can tell, the private offers in the marketplace can be made available through the partner (RedHat, in this case), but I can't find any Red Hat documentation for making these available. The closest I've found relates to the Red Hat Gold Images, but this appears specific to AWS.
Has anyone been able to deploy the RHEL BYOS images from the Azure Marketplace? If so, what steps am I missing to enable access to those images for deployment?