Running DC/OS on DigitalOcean

OPEN SOURCE

Install DC/OS cluster on DigitalOcean using Terraform

You can create a DC/OS cluster on DigitalOcean using Terraform.

The included Terraform templates are configured to run Mesosphere DC/OS on DigitalOcean. Depending on the DC/OS services that you install, or the amount of computing power your workload needs, you might have to modify the templates to suit your needs. You can modify the Terraform templates, but Mesosphere cannot assist in troubleshooting. If you require support with droplet creation or other related issues, email , visit the unofficial DigitalOcean IRC channel (#digitalocean on freenode) or consider DC/OS Enterprise.

DISCLAIMER: This is a community driven project and not officially supported by Mesosphere. This installation method is used for fast demos and proofs of concept. This page explains how to install DC/OS cluster on DigitalOcean on Terraform. It is intended for reference only and is not recommended for production use. Upgrades are not supported with the following installation methods.

NOTE: Contact the mailing list or Slack channelfor community support.

Security

IMPORTANT: With this method, the network is open by default. Because of this, network security is a concern and should be addressed as soon as possible by the administrator.

Environment

  • One, three or five Mesos master nodes in the admin zone

  • Four Mesos private agent nodes

  • One Mesos public agent node

  • DigitalOcean 4GB (or more) Droplets

Create a DC/OS cluster

Prerequisites

Installing DC/OS

  1. Download and install Terraform using the instructions on the links provided above.

  2. Download the DC/OS Terraform manifests from GitHub into a local directory.

    git clone https://github.com/jmarhee/digitalocean-dcos-terraform
    
  3. From that directory, generate an ssh keypair.

    ssh-keygen -t rsa -f ./do-key
    
  4. Get a token to use against the API. You can follow the documentation.

  5. Add the key to DigitalOcean.

    curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" -d '{"name":"dcos-key","public_key":"<public-key>"}' "https://api.digitalocean.com/v2/account/keys"
    
  6. Get the key ID.

    curl -X GET -H 'Content-Type: application/json' -H 'Authorization: Bearer $TOKEN' "https://api.digitalocean.com/v2/account/keys"
    
  7. Copy sample.terraform.tfvars to a new file named terraform.tfvars, and edit the new file, filling in the values as desired. The following fields are blank; if not filled in, you will be prompted by Terraform when necessary:

    • digitalocean_token - Your DigitalOcean API key

    • ssh_key_fingerprint - The key ID from above

    • dcos_installer_url - Where to get DC/OS https://downloads.dcos.io/dcos/stable/dcos_generate_config.sh

The following have default values and may be changed depending on your requirements:

  • region - DigitalOcean facility: [NYC1|NYC2|NYC3|SGP1|LON1|AMS2|AMS3|SFO1|TOR1|FRA1] Choose the DigitalOcean datacenter for your cluster - default NYC2

  • agent_size - Size of DigitalOcean Droplet to use for the DC/OS Agents: [4GB|8GB|16GB|32GB|48GB|64GB] Choose the DigitalOcean droplet size to use for the DC/OS Private Agents - default 4GB

  • master_size - Size of DigitalOcean Droplet to use for the DC/OS Master: [4GB|8GB|16GB|32GB|48GB|64GB] Choose the DigitalOcean droplet size to use for the DC/OS Master Nodes - default 4GB

  • boot_size - Size of DigitalOcean Droplet to use for the DC/OS Boot Node: [4GB|8GB|16GB|32GB|48GB|64GB] Choose the DigitalOcean droplet size to use for the DC/OS Boot Server - default 4GB

  • dcos_cluster_name - the name of your DC/OS cluster - defaults to digitalocean-dcos

  • dcos_agent_count - Number of private agents to deploy - defaults to 4

  • dcos_public_agent_count - Number of public agents to deploy - defaults to 1

  • dcos_init_pubkey - The path to your ssh public key created in step 4 - defaults to ./do-key.pub

  • key_file_path - The path to your ssh private key created in step 4 - defaults to ./do-key

  1. Also from that same directory, run terraform init and then terraform apply which will deploy the servers into your project at DigitalOcean, and run the DC/OS installation routine. When it completes, you will see output similar to the following, but with the IP addresses assigned to your servers:

terraform apply output

Figure 1. Terraform apply output

You may need to wait a few minutes from this point for all the DC/OS services to become active and the control panel to become available on the master node. After 15 or 20 minutes, check out the troubleshooting documentation.

Launch DC/OS

Launch the DC/OS web interface by entering the Mesos master IP address:

  1. Cut and paste the link provided by running terraform apply, or by running terraform output from the same directory, into your browser to open the DC/OS web interface. The interface runs on the standard HTTP port 80, so you do not need to specify a port number after the hostname.

  2. Install the DC/OS Command-Line Interface (CLI). You can install the CLI to administer your DC/OS cluster. You can access the documentation at any time by clicking the cluster name in the upper-left side.

install CLI

Figure 2. Installing the CLI

Next steps

  • Adding and removing nodes:

    • Run terraform apply -var ‘dcos_agent_count=N’ to change the private agent count to the number specified. (‘dcos_public_agent_count’ is also available)

    • Increasing node count is fast, safe, and fun!

    • We recommend against reducing the node count in production. Stateful DC/OS apps and services may suffer outages and failures if nodes are not put into maintenance mode, and their tasks rescheduled through their respective schedulers.