Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to deploy Marketplace image #16

Open
BittahCriminal opened this issue Mar 11, 2019 · 1 comment
Open

Unable to deploy Marketplace image #16

BittahCriminal opened this issue Mar 11, 2019 · 1 comment

Comments

@BittahCriminal
Copy link

PA Networks,

I don't believe this is an issue with the image itself. However, I wanted to inform you that when attempting to purchase your product within the Azure Marketplace, we receive an HTTP 503 error when deploying your virtual machine

    "statusCode": "InternalServerError",
    "statusMessage": {
      "error": {
        "code": "InternalBillingError",
        "message": "There was a problem communicating with the billing service. Diagnostic information: timestamp '20190308T202824Z'

I believe this is an issue on MS side of things. However, I wanted you all to be aware of the issue, if you weren't already.

@arcotek-ltd
Copy link

arcotek-ltd commented Jun 26, 2019

@BittahCriminal, did you ever find a solution?

We believe it is to do with accepting the license agreement for market place purchases. This normally only needs to be done once, per subscription.

If anyone else comes across this, our issue was caused by a new (EA) subscription taking 48 hours to fully provision. Check your subscription quotas. In my experience, when you see them fully populated, you should be good to go.

Microsoft did give us this command to try and speed things up:

PowerShell:
Register-AzureRmResourceProvider -ProviderNamespace “Microsoft.Network”

AZ CLI:
Azure provider register -s <your_subscription> -n Microsoft.Network
(Keep the < and >)

Then you should be able to accept the agreement:

#List URNs
az vm image list --all --publisher $Publisher --offer $offer --sku $sku --query '[].urn

#Accept URN
az vm image accept-terms --urn paloaltonetworks:vmseries1:byol:9.0.1

PowerShell:

$Location = "NorthEurope"
$Publisher = "PaloAltoNetworks"
$Offer = "vmseries1"
$Sku = "byol"

Get-AzMarketplaceTerms -Publisher $Publisher -Product $offer -Name $sku -Verbose | Set-AzMarketplaceTerms -Accept -Verbose

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant