Skip to content

yukiko-bass/mslearn-aks-deployment-pipeline-github-actions

 
 

Repository files navigation

page_type languages products description urlFragment
sample
go
javascript
html
css
aks
github
acr
Demo application for the 'Create a Deployment Pipeline with AKS and Github Actions' learn module
aks-deployment-pipeline-github-actions-demo

Official Microsoft Sample

This is the base demonstration for the "Create a Deployment Pipeline with AKS and GitHub Actions" learn module.

Summary

Contents

Outline the file contents of the repository. It helps users navigate the codebase, build configuration and any related assets.

File/folder Description
src Sample source code.
.gitignore Define what to ignore at commit time.
CHANGELOG.md List of changes to the sample.
CONTRIBUTING.md Guidelines for contributing to the sample.
README.md This README file.
LICENSE The license for the sample.
Dockerfile Docker image file

Prerequisites

This sample is built using Hugo, therefore it is needed as prerequisite to run this example.

Running Locally

Attention This section only applies if you're cloning the repository and running it in your local machine, it does not apply if you're trying to accomplish the related learn module.

In this case, please follow the module's instructions and run the startup script

After cloning the repository, init the theme repository by running git submodule update --init src/themes/introduction in the root directory.

Running the sample

  1. Get into the src directory
  2. Run hugo server -D
  3. Access the URL given by the Terminal

Running the image

Assuming you already have Docker installed, just run docker build -t image-name . on the root directory.

To execute it, run: docker run -p <local-port>:80 image-name

You can also opt to run it from the remote source using docker run -p <local-port>:80 mcr.microsoft.com/mslearn/samples/contoso-website

Deploying to Kubernetes

Inside the Kubernetes directory, you'll have all necessary resources to deploy the application to an AKS cluster using the HTTP Application Routing Addon.

  1. Update the Ingress.yaml file and update your specific DNS zone to the one you have in your AKS cluster, this information can be found in the DNS zone resource inside the resource group of your cluster
  2. Use Kubectl apply -f <filename> to all the files in the directory to create the workloads

Key concepts

Hugo is a static build engine that allows users to create static websites. The idea behind this demo is to show how we can deploy a containerized application to AKS.

There's a Dockerfile in the root of the repository, this Dockerfile is responsible for generating the image we'll be using to deploy the website. It's a simple NGINX default image, in it we do a few steps:

  • Update all the packages
  • Install curl, git and Node.js
  • Download and install Hugo
  • Install PostCSS and autoprefixer using NPM globally as they are requirements for the theme
  • Clone the repository and init all submodules
  • Generate a static web page from the website template
  • Move that directory into NGINX public folder
  • Expose port 80 so we can access it from the cluster

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Legal Notices

Microsoft and any contributors grant you a license to the Microsoft documentation and other content in this repository under the Creative Commons Attribution 4.0 International Public License, see the LICENSE file, and grant you a license to any code in the repository under the MIT License, see the LICENSE-CODE file.

Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries. The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks. Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653.

Privacy information can be found at https://privacy.microsoft.com/en-us/

Microsoft and any contributors reserve all other rights, whether under their respective copyrights, patents, or trademarks, whether by implication, estoppel or otherwise.

About

Sample code for the MS Learn module for AKS with GitHub Actions

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 71.3%
  • Shell 21.4%
  • Dockerfile 7.3%