How to Deploy - GITHUB Public REPO into Azure + Using CI/CD Then Validating it with Build, test etc

Marcos Ranes 1 Reputation point
2022-03-16T11:23:55.237+00:00

I need to simply publish an APP written in Golang(GO) into AZURE providing CI/CD to run, Build, Test, etc.

I need to make it available afterwards to someone so they can access GITHUB Repo and perform this test to confirm it is actually deploying properly without having to access Azure at all. All need to be done using automation. Can some help?

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,586 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,639 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,408 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
20,629 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Vidya Narasimhan 2,126 Reputation points Microsoft Employee
    2022-03-16T17:41:55.157+00:00

    @Marcos Ranes here is a link of an example containing a github repo with nodejs codebase that uses Azure pipelines (ci/cd) to deploy onto Azure https://www.azuredevopslabs.com/labs/vstsextend/github-azurepipelines/

    You can also use Github actions which is a native ci/cd workflow instead of Azure pipelines. https://learn.microsoft.com/en-us/azure/developer/github/github-actions

    1 person found this answer helpful.

  2. Marcos Ranes 1 Reputation point
    2022-03-18T07:57:46.023+00:00

    Here is where I started;
    184451-image.png

    184369-image.png

    184386-image.png

    184376-image.png

    184461-image.png

    184378-image.png

    I noticed as the image below can demonstrate that AZUre created a repo on my GITHUB as the previous Azure portal demonstrate the following files;
    184424-image.png

    Questions I have:
    1 - I used the AZUre template for a go app and it comes with the files above which I understand are required for the building into Azure, is it correct?

    2 - I have a repo which is a simple To-do list app (coded using go - Golang) THAT I Need to build as an APP at AZURE, is the way I described above the best way? I saw the Kubernetes as an option, is that another way that I should consider? I understand that for a simple app it isn't required. To get past this screen below I removed the Dockerfile that belongs to the Azure Build process app then U run it again... The following screen after the one below will show the last error that I can't get passed.
    184413-image.png

    During the building process, I was having an issue on 'build and push to ACR', check below;

    184309-image.png

    I noticed that I had 2 Dockerfile files (One of the Dockerfile files that came with Azure for the building process, and the other that was already within the APP that I was trying to build. Note: I understand that it was trying to run-build the docker file from Azure instead of the existing docker file from the application itself. = I would like to know now how do I get passed the error below to finally build this app, or if I should change all the procedures I did because of anything that I may have missed.

    184339-image.png

    Here is my repository link:
    https://github.com/marcosranes/Webtest13