AzureStack-QuickStart-Templ.../docker-swarm-ubuntu
J0F3 f3f9b1d6e5 fixed clusterInstallParameters (POSTINSTALLSCRIPTURI Script param was missing), Changed comments and echos in ShellScript to reflect Docker Swarm and not Mesos (#243) 2017-07-11 17:11:35 -07:00
..
images Removing linux diagnostic extension. minor readme.md fixes on mesos/swarm 2016-09-08 09:24:52 -07:00
parts fixed clusterInstallParameters (POSTINSTALLSCRIPTURI Script param was missing), Changed comments and echos in ShellScript to reflect Docker Swarm and not Mesos (#243) 2017-07-11 17:11:35 -07:00
README.md remove 15.10 ubuntu version and inbound rule1 across all linux templates (#138) 2016-09-12 12:19:18 -07:00
azuredeploy-sshkeys.parameters.json Push changes from develop to master (#164) 2016-09-27 12:05:37 -07:00
azuredeploy.json fixed clusterInstallParameters (POSTINSTALLSCRIPTURI Script param was missing), Changed comments and echos in ShellScript to reflect Docker Swarm and not Mesos (#243) 2017-07-11 17:11:35 -07:00
azuredeploy.parameters.json Push changes from develop to master (#164) 2016-09-27 12:05:37 -07:00
deploySwarm.ps1 remove 15.10 ubuntu version and inbound rule1 across all linux templates (#138) 2016-09-12 12:19:18 -07:00
metadata.json Push changes from develop to master (#155) 2016-09-21 13:33:28 -07:00

README.md

Clusters with Swarm Orchestrators

These Microsoft Azure Stack templates create docker Swarm clusters.

The below content is to give overall architecture of the Swarm Cluster

Deployed resources

Once your cluster has been created you will have a resource group containing 2 parts:

  1. a set of 1,3,5 masters nodes. Each master's SSH can be accessed via the public dns address at ports 2200..2204

  2. a set of agents nodes. The agent VMs must be accessed through the master.

The following image is an example of a cluster with 3 masters, and 3 agents:

Image of Swarm cluster on azure

All VMs are on the same private subnet, 10.0.0.0/18, and fully accessible to each other.

Prerequisites

Follow the below links to create/download an Ubuntu 14.04 LTS Image and upload the same to Azure Stack's Platform Image Repository(PIR)

  1. https://azure.microsoft.com/en-us/documentation/articles/azure-stack-linux/
  2. https://azure.microsoft.com/en-us/documentation/articles/azure-stack-add-image-pir/ Note: please use the default values for linuxPublisher,linuxOffer,linuxSku,linuxVersion found in azuredeploy.json while creating the manifest.json in PIR

Deployment steps

=> Deploy to azurestack, using custom deployment in azurestack portal. => or use Deployswarm.ps1 to deploy to azurestack via powershell.

Usage

  1. Get your endpoints to cluster

  2. browse to https://portal.azurestack.local

  3. then click browse all, followed by "resource groups", and choose your resource group

Image of resource groups in portal

  1. then expand your resources, and copy the dns names of your jumpbox (if chosen), and your NAT public ip addresses.

Image of public ip addresses in portal

  1. Connect to your cluster using windows jumpbox - remote desktop to the windows jumpbox

Explore Swarm with Simple hello world

  1. After successfully deploying the template write down the two output master and agent FQDNs.
  2. SSH to port 22 of the master private ip
  3. Type docker -H 10.0.0.5:2375 info to see the status of the agent nodes. Image of docker info
  4. Type docker -H 10.0.0.5:2375 run hello-world to see the hello-world test app run on one of the agents

Explore Swarm with a web-based Compose Script, then scale the script to all agents

  1. After successfully deploying the template write down the two output master and agent FQDNs.
  2. create the following docker-compose.yml file with the following content:
web:
  image: "yeasy/simple-web"
  ports:
    - "80:80"
  restart: "always"
  1. type export DOCKER_HOST=10.0.0.5:2375 so that docker-compose automatically hits the swarm endpoints
  2. type docker-compose up -d to create the simple web server. this will take about a minute to pull the image
  3. once completed, type docker ps to see the running image. Image of docker ps
  4. You can now scale the web application by typing docker-compose scale web=3, and this will scale to the rest of your agents. The Azure load balancer will automatically pick up the new containers. Image of docker scaling

Notes

  • This version of swarm is a non-HA(no Loadbalancer or Availabilitysets) with master, Agent node deployment.
  • Refer https://help.ubuntu.com/community/SSH/OpenSSH/Keys#Generating_RSA_Keys for generating sshkeys for ubuntu
  • the installation log for the linux jumpbox, masters, and agents are in /var/log/azure/cluster-bootstrap.log
  • event though the VMs finish quickly configuring swarm can take 5-15 minutes to install, check /var/log/azure/cluster-bootstrap.log for the completion status.