skip to Main Content

I signed on to a free-tier Azure subscription and am trying to create a CICD pipeline.

I go pipelines -> classic editor

enter image description here

Azure repo source –> docker container

enter image description here

but when starting to enter Azure subscription

enter image description here

I get the following error:

enter image description here

I tried references from Deploy azure subscription using azure devops pipeline, Azure Subscriptions are missing on a pipeline, You don’t appear to have an active Azure subscription when creating new Kubernetes service connection in Azure DevOps, and Error when creating a pipeline. "You don’t appear to have an active Azure subscription." to no avail.

Azure’s troubleshoot https://learn.microsoft.com/en-us/azure/devops/pipelines/release/azure-rm-endpoint?view=azure-devops also gave me the same error, You don’t appear to have an active Azure subscription.

Can anyone suggest what I might be missing?

2

Answers


  1. Chosen as BEST ANSWER

    Thank you for suggestions, but I checked again today, and my Azure subscription populated the correct space.

    Only thing I did was contact Azure and set up a meeting (which they did not show up for).

    enter image description here


  2. I have faced the same issue when trying to reproduce the issue. As an alternative way, I have configured the container service connection as below.
    Go to Azure container registry and enable admin in Access keys and make a note of the username, password and login server.

    enter image description here

    Next, in azure devops, docker task, select the latest version (2) and fill in the required details as shown in the screenshot.
    enter image description here

    In the above screenshot, the docker registry is the ACR login server name and the docker ID is the ACR username.
    Save and run the pipeline.
    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search