Skip to content

leansoftX/azure-devops-101-sample

Repository files navigation

Example Voting App

Getting started

Download Docker. If you are on Mac or Windows, Docker Compose will be automatically installed. On Linux, make sure you have the latest version of Compose.

Run in this directory:

docker-compose up

The app will be running at http://localhost:5000, and the results will be at http://localhost:5001.

Alternately, if you want to run it on a Docker Swarm, first make sure you have a swarm. If you don't, run:

docker swarm init

Once you have your swarm, in this directory run:

docker stack deploy --compose-file docker-stack.yml vote

Architecture

Architecture diagram

  • A Python webapp which lets you vote between two options
  • A Redis queue which collects new votes
  • A .NET worker which consumes votes and stores them in…
  • A Postgres database backed by a Docker volume
  • A Node.js webapp which shows the results of the voting in real time

Deploy to Kubernetes

Note: if you are attending leansoftX.com hosted training sessions, will be provided by the trainer. Otherwise you will need to replace all azuredevops101.azurecr.cn reference to your own ACR instance.

# create a secret according to your Azure Container Registry settings
kubectl create secret docker-registry regcred --docker-server=azuredevops101.azurecr.cn --docker-username=azuredevops101 --docker-password=XRAH2SQ9l+Cn8Yj8cmNSo=vnEN7jEe8B [email protected]

# run kubectl to deploy
cd kompose
kubectl apply -f ./

It will take some time for kubernetes to pull down image, run the container and setup load balancer in Azure. You can run the following command to watch for the services status until the EXTERNAL-IP is shown up.

kubectl get services --watch

Once the EXTERNAL-IP is showing up, you can copy them into your browser and open the vote and result pages.

Note

The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.