Using Terraform to deploy Docker Datacenter on Photon Platform
In this post I will discuss how a developer or infrastructure administrator can use Terraform to automate infrastructure provisioning. I will demonstrate how you can use Terraform with Photon Platform to deploy and scale Docker Datacenter. Terraform is a tool for building, changing, and versioning infrastructure. Terraform uses configuration files to describe the infrastructure you wish to provision.
I have created two configuration files for this deployment. This first one deploys the Docker Datacenter Manager (manager.tf) and the second one deploys the workers (worker.tf) and automatically adds them to the Swarm Cluster. Photon Platform is used for multi-tenancy and control how much infrastructure you are able to deploy.
Let’s take a look at the manager.tf. The purpose of this file is to deploy a VM and install docker ucp on top of it. For that we use the Photon Platform provider to deploy the VM and Terraform to issue the remote execution commands to deploy the Docker Datacenter Manager.
Now that the manager is deployed we can start deploying swarm workers and add them into the cluster. That is where the worker.tf comes in.
Now that we have the configuration files for the manager and workers, let’s deploy it. In our terminal we issue terraform apply
and it will ask for the number of worker nodes you want to deploy. On the right you can see Photon Platform and the available infrastructure resources you have assigned to your project.
After you execute terraform apply
it will start deploying the
infrastructure described in the configuration files. The first thing it
deploys is the Docker Datacenter Manager so that workers can join the
cluster.
After the manager is deployed, it will spin up the number of workers you specified for the “COUNT” variable.
The last part of a terraform template is the “outputs”. I want to know
the endpoint for my Docker Datacenter VM so I have defined that as an
output. Terraform also tells you what it added/changed/removed whenever
you issue a terraform plan
or terraform apply
.
Success! We have Docker Datacenter up and running with 5 worker nodes. Now you can start deploying your contanerized workloads with the Docker API.
Now let’s say we need to scale up the number of worker nodes. Simply run
terraform apply
and specify the new number of worker nodes you want.
Terraform will examine the current state of the infrastructure and
deploy 5 more VM’s on top of Photon Platform and add them into the Swarm
cluster.
This is a simple example of how you can use “Infrastructure as Code” with Terraform and Photon Platform. You can store your configuration files in version control to track changes and help rollback if something went wrong.
Thank you!