brent-robinson / posh-acme-azure-example

Example using the Posh-ACME PowerShell module to orchestrate TLS certificate issuance using ACME in Azure with Azure DevOps
https://medium.com/@brentrobinson5/automating-certificate-management-with-azure-and-lets-encrypt-fee6729e2b78
MIT License
30 stars 27 forks source link

An image label with the label Ubuntu16 does not exist #9

Open rnkhouse opened 3 years ago

rnkhouse commented 3 years ago

Getting this error:

##[warning]An image label with the label Ubuntu16 does not exist.
,##[error]The remote provider was unable to process the request.
Pool: Azure Pipelines
Image: Ubuntu16
rboorman commented 3 years ago

I am having this same issue - We know that Microsoft removed Ubuntu 16 (github actions did too). I just don't know what the Queue label would be. Anyone have an idea?

rnkhouse commented 3 years ago

I am using Azure Pipelines

rboorman commented 3 years ago

I am too - I was just noting that most CI that are cloud based removed Ubuntu 1604 due to security issues. So here is what I did to fix it for me: in the azure-pipelines.yml comment out and add the variables for vmImageName

# queue:
#   name: Host Ubuntu 1604
variables:
  vmImageName: 'ubuntu-latest'

hope this helps...