Skip to content

goh-chunlin/GoToAzure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoToAzure

This is a sample project to provide a quick-start for Golang developers to experience the deployment of their Golang applications to Microsoft Azure Web Apps.

Build Status License

Section 1: Setup Build Pipeline

  1. Login to https://dev.azure.com;
  2. Click on the "+ New Project" button at the top-right corner (It may not be visible to you if you are not admin);
  3. Click "Create" button to proceed after keying in the information about your project and deciding whether your repo should be Public or Private;
  4. Choose "Builds" under Pipelines at the left menu;
  5. Click on the "New Pipeline" button;
  6. Click on the link which says "Use the classic editor";
  7. Select the location of your repo (eg. Azure DevOps or GitHub, in this readme, I use GitHub because the code is on GitHub);
  8. Continue to next step after connecting to the repo;
  9. Search "go" in the search box and choose "Go (Preview)" as template;
  10. Leave the settings of the Pipeline as they are;
  11. Visit the "Triggers" tab;
  12. Enable the Continuous Integration and batch processing;
  13. Click "Save & Queue" button to proceed;
  14. Wait for the Build process to finish with all green ticks;
  15. Celebrate for setting up the Build Pipeline when the Artifact file is successfully generated and published.

Section 2: Setup Azure Web App

  1. Login to https://portal.azure.com;
  2. Create a new Azure web app with the following options configured accordingly;
    • Publish: Code
    • Runtime Stack: ASP .NET v4.7
    • Operating System: Windows
  3. Wait for the message saying "Your deployment is complete";
  4. Celebrate for setting up new Azure web app successfully.

Section 3: Setup Release Pipeline

  1. Back to Azure DevOps (https://dev.azure.com);
  2. Choose the project created in Section 1;
  3. Choose "Releases" under Pipelines at the left menu;
  4. Click on the "New Pipeline" button;
  5. Apply on the "Azure App Service deployment" template;
  6. Click on the "Add an artifact" box in the diagram and choose the Build pipeline created in Section 1;
  7. Click "Add" button to proceed;
  8. Enable the Continuous Deployment trigger;
  9. Edit the Stage 1 by clicking on the "1 job, 1 task";
  10. Connect with Azure by choosing the correct corresponding Azure Subscription and App Service Name for the web app created in Section 2 (You may need to click on the Authorize button to authorize this action so that Azure service connection can be configured);
  11. Click on the "+" button beside "Run on agent";
  12. Add two "Azure App Service Manage" tasks and surround the "Deploy Azure App Service" task, as shown in the screenshot below;
  13. Configured the two newly added tasks so that the first is to stop the Web App and the second is to start the Web App;
  14. Click on the "Deploy Azure App Service" task;
  15. Add in the following line under "Generate web.config parameters for Python, Node.js, Go and Java apps";

    -GoExeFileName "$(System.TeamProject).exe" -appType Go

  16. Tick the checkbox "Select deployment method" and make sure both "Web Deploy" and "Take App Offline" is selected;
  17. Save the pipeline;
  18. Click "Create release";
  19. Choose "Releases" under Pipelines at the left menu;
  20. Wait for the "Release-1" to be having green tick;
  21. Visit the web app to check if the deployment is successful;
  22. Celebrate if you see the following page (You can also test /api to see JSON object returned).

Important Notes

The reason why we need to have two tasks in the Release Pipeline to first stop the Web App before the new code is deployed is that if we do not stop the Web App first then the code cannot be deployed with the following error message.

Error: Error Code: ERROR_FILE_IN_USE

More Information: Web Deploy cannot modify the file GoToAzure.exe on the destination because it is locked by an external process. In order to allow the publish operation to succeed, you may need to either restart your application to release the lock, or use the AppOffline rule handler for .Net applications on your next publish attempt. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_FILE_IN_USE.

Error count: 1

In the app.go, we have the getPort() function is to get the actual port used in Azure Web App for the program. Hence, please do not hardcode ":80", instead read the port number from the HTTP_PLATFORM_PORT.

func getPort() string {
    p := os.Getenv("HTTP_PLATFORM_PORT")
    if p != "" {
        return ":" + p   
    }
    return ":80"
}

Section 4: Containerization

Whatever operating system we're using, the code that runs inside a container needs to be a Linux binary. Fortunately, this is really simple to obtain, thanks to the cross-compilation support in Golang.

On Windows, we can use the following commands to do so on Windows PowerShell.

$ $env:GOOS = "linux"
$ go build -o GoToAzure .

For simplicity, we can have Dockerfile as follows.

FROM scratch

EXPOSE 80

COPY GoToAzure /
COPY static static

ENV APPINSIGHTS_INSTRUMENTATIONKEY '' \
    CONNECTION_STRING ''
    
CMD [ "/GoToAzure" ]

The first reason why I need to containerize my Golang web application on Azure Web App (there is Azure Web App for Containers) is because I want to use wkhtmltopdf. Hence, the following is the Dockerfile for this scenario.

FROM ubuntu:14.04

EXPOSE 80

RUN sed 's/main$/main universe/' -i /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade -y

# Download and install wkhtmltopdf
RUN apt-get install -y build-essential xorg libssl-dev libxrender-dev wget gdebi
RUN wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.trusty_amd64.deb --no-check-certificate
RUN gdebi --n wkhtmltox_0.12.5-1.trusty_amd64.deb

COPY GoToAzure /
COPY static static

ENV APPINSIGHTS_INSTRUMENTATIONKEY '' \
    CONNECTION_STRING ''
    
CMD [ "/GoToAzure" ]

Section 5: Steps to Deploy Containerized Golang App to Azure Web App for Containers from Local

  1. $ go build -o GoToAzure .;
  2. $ docker image build -t gotoazurecontainerregistry.azurecr.io/image:v1 .;
  3. $ docker push gotoazurecontainerregistry.azurecr.io/image:v1.

Optional: If you want to run the container locally:

$ docker container run -P gotoazurecontainerregistry.azurecr.io/image:v1.

Section 6: Steps to Setup Build Pipeline in Azure DevOps for Containerized Golang App

  1. Please make sure you have an account on Azure Container Registry;
  2. Using the Classic Editor, create a Build pipeline for Golang app (same as Steps 1 to 9 in Section 1 above);
  3. Change the go build "Arguments" field to be -o $(System.TeamProject) .;
  4. Remove the "Archive files" and "Publish artifact" steps;
  5. Add two Docker tasks;
  6. Change the "Action" of the first Docker task to be "Build an image" and rename the step to be "Build Docker image". Also, change the "Action" of the second one to be "Push an image" and rename the step to be "Push Docker image";
  7. Check the checkbox "Include Latest Tag" for both "Build Docker image" and "Push Docker image" steps;
  8. Enter the Azure Container Registry information in both Docker steps;
  9. Click "Save" under "Save & queue" dropdown;
  10. Done!

Section 7: Steps to Setup Release Pipeline in Azure DevOps for Containerized Golang App

  1. Continue from Section 3 above.
  2. Delete the default Artifact;
  3. Add a new Artifact with "Source type" changed to Azure Container Repository;
  4. Enter the Azure Container Registry information for the Artifact;
  5. Change the "App Service type" of the "Deployment process" to be "Web App for Containers (Linux)" and enter the Azure Container Registry information below the field;
  6. Click on the "Deploy Azure App Service" and find that the "App Service type" and Azure Container Registry information is copied over;
  7. Enter latest as the "Tag";
  8. Click "Save" at the top right corner;
  9. Done!

Contributions are Welcome!

This project will continue to evolve. We will do modifications all the time as long as Azure DevOps and Azure Portal do not stop changing.

Any help will be appreciated. You can develop new features, fix bugs, improve the documentation, or do some other cool stuff.

If you have new ideas or want to complain about bugs, feel free to create a new issue.

Let's build the best documentation for Golang with Azure!

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.

Azure Community Singapore (ACS)

This project is supported by the Azure Community Singapore (ACS).

References

About

A sample project to provide a quick-start for Golang developers to experience the deployment of their Golang applications to Microsoft Azure Web Apps.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published