使用 Universal 安装工具在 AWS 上的 DC/OS

使用 Universal 安装工具在 AWS 上的 DC/OS 指南

This guide is meant to take an operator through all steps necessary for a successful installation of DC/OS using Terraform. If you are already familiar with the prerequisites, you can jump to creating a DC/OS Cluster.

  • Linux, macOS, or Windows
  • command-line shell terminal such as Bash or PowerShell
  • verified Amazon Web Services (AWS) account and user profile with permissions

Install Terraform

IMPORTANT: Terraform was updated to 0.12.x. The DC/OS Universal Installer currently only supports Terraform 0.11.x

  1. Visit the Terraform releases page for bundled installations and support for Linux, macOS and Windows. Choose the latest 0.11 version.

    If you’re on a Mac environment with installed, simply run the following command:

    Windows users that have Chocolatey installed, run:

    1. choco install terraform --version 0.11.14 -y

There are many ways of passing in your credentials in order for Terraform to authenticate with your cloud provider. Most likely, you already have your cloud provider credentials loaded through the AWS CLI. Terraform will automatically detect those credentials during initialization for you. See for more information on setting up credentials and user profile.

Alternatively, you can pass in your access_key and secret_key through the configuration file which you will create. The properties listed here are the three things that Terraform needs on your behalf. See the provider configuration reference for more information on how this works under the hood. Also, please keep in mind storing your credentials outside of your version control for security.

  1. provider "aws" {
  2. access_key = "foo"
  3. secret_key = "bar"
  4. region = "us-east-1"
  5. }

Set up SSH credentials for your cluster

Terraform will need to send out SSH keys to connect securely to the nodes it creates. If you already have a key-pair available and added to your SSH-agent, you can skip this section.

  1. Not sure if you have a keypair you want to use? List the contents of your ssh directory.

    1. ls ~/.ssh
  2. If you don’t have one you like, start the ssh-keygen program to create a new key pair, following the prompts.

    1. ssh-keygen -t rsa
  3. Add the key to your SSH agent by starting the agent if it isn’t already running and then loading your key:

    1. eval "$(ssh-agent -s)"
    1. ssh-add ~/.ssh/<your-key-name>

DC/OS Enterprise requires a valid license key provided by Mesosphere that will be passed into the main.tf configuration file as dcos_license_key_contents. If you do not set a password, the default superuser and password will be available for log in:

Username: bootstrapuser
Password: deleteme

IMPORTANT: You should NOT use the default credentials in a production environment. When you create or identify an administrative account for the production environment, you also need to generate a password hash for the account.

To set superuser credentials for the first log in, add the following values into your main.tf along with your license key. The password will need to be hashed to SHA-512.

  1. dcos_superuser_password_hash = "${file("./dcos_superuser_password_hash")}

Creating a DC/OS Cluster

  1. Let’s start by creating a local folder and cd’ing into it. This folder will be used as the staging ground for downloading all required Terraform modules and holding the configuration for the cluster you are about to create.

    1. mkdir dcos-demo && cd dcos-demo
  2. Create a file in that folder called main.tf, which is the configuration file that will be called on each time when terraform runs. The name of this file should always be main.tf. Open the file in the code editor of your choice and paste in the following. Notice the copy icon in the upper right hand corner of the code block to copy the code to your clipboard:

  3. There is a main variable that must be set to complete the main.tf:

    • ssh_public_key_file = "<path-to-public-key-file>": the path to the public key for your cluster, following our example it would be:

      1. "~/.ssh/aws-key.pub"
  4. region is a setting that sets the AWS region that this DC/OS cluster will spin up on. While this setting is currently set to “us-east-1”, it can be changed to any other region (e.g “us-west-1”, “us-west-2”, “us-east-2”, etc). For a complete list, please refer to the .

  5. The bootstrap_instance_type, masters_instance_type, private_agents_instance_type, and public_agents_instance_type variables control which AWS instance type will be used for each node type. What instance types are available can vary by region and change over time. Ensure the instance types you select meet DC/OS’ minimum system requirements.

  6. Enterprise users, uncomment/comment the section for the dcos_variant to look like this, inserting the location to your license key, and adding superuser credentials if needed. Enterprise

    1. dcos_variant = "ee"
    2. dcos_license_key_contents = "${file("./license.txt")}"
    • 3 Master
    • 2 Private Agents
    • 1 Public Agent

    If you want to change the cluster name or vary the number of masters/agents, feel free to adjust those values now as well. Cluster names must be unique, consist of alphanumeric characters, ‘-’, ‘_’ or ‘.’, start and end with an alphanumeric character, and be no longer than 24 characters. You can find additional .

    There are also simple helpers listed underneath the module which find your public ip and specify that the following output should be printed once cluster creation is complete:

    • master-ips A list of Your DC/OS master nodes
    • cluster-address The URL you use to access DC/OS UI after the cluster is setup.
    • public-agent-loadbalancer The URL of your Public routable services.
  7. Check that you have inserted your cloud provider and public key paths to main.tf, changed or added any other additional variables as wanted, then save and close your file.
  1. Now the action of actually creating your cluster and installing DC/OS begins. First, initialize the project’s local settings and data. Make sure you are still working in the same folder where you created your main.tf file, and run the initialization.

    1. terraform init -upgrade
    1. Terraform has been successfully initialized!
    2. You may now begin working with Terraform. Try running "terraform plan" to see
    3. any changes that are required for your infrastructure. All Terraform commands
    4. should now work.
    5. If you ever set or change modules or backend configuration for Terraform,
    6. rerun this command to reinitialize your environment. If you forget, other
    7. commands will detect it and remind you to do so if necessary.

    Note: If terraform is not able to connect to your provider, ensure that you are logged in and are exporting your credentials and necessary region information for your cloud provider.

  2. After Terraform has been initialized, the next step is to run the execution planner and save the plan to a static file - in this case, plan.out.

    1. terraform plan -out=plan.out

    Writing the execution plan to a file allows us to pass the execution plan to the apply command below as well help us guarantee the accuracy of the plan. Note that this file is ONLY readable by Terraform.

    Afterwards, we should see a message like the one below, confirming that we have successfully saved to the plan.out file. This file should appear in your dcos-demo folder alongside main.tf.

    1. Plan: 74 to add, 3 to change, 0 to destroy.
    2. ------------------------------------------------------------------------
    3. This plan was saved to: plan.out
    4. To perform exactly these actions, run the following command to apply:
    5. terraform apply "plan.out"

    Every time you run terraform plan, the output will always detail the resources your plan will be adding, changing or destroying. Since we are creating our DC/OS cluster for the very first time, our output tells us that our plan will result in adding 38 pieces of infrastructure/resources.

  3. The next step is to get Terraform to build/deploy our plan. Run the command below.

    1. terraform apply plan.out

    Sit back and enjoy! The infrastructure of your DC/OS cluster is being created while you watch. This may take a few minutes.

    Once Terraform has completed applying the plan, you should see output similar to the following:

    1. Apply complete! Resources: 74 added, 0 changed, 0 destroyed.
    2. cluster-address = testing-123-958581895.us-east-1.elb.amazonaws.com
    3. masters-ips = [
    4. 3.93.239.91
    5. ]
    6. public-agents-loadbalancer = ext-testing-123-40f11d1227e88057.elb.us-east-1.amazonaws.com

    And congratulations - you’re up and running!

Logging in to DC/OS

  1. To log in and start exploring your cluster, navigate to the cluster-address listed in the output of the CLI. From here you can choose your provider to create the superuser account Open Source, or log in with your specified Enterprise credentials Enterprise.

AWS - 图1

Scaling Your Cluster

Terraform makes it easy to scale your cluster to add additional agents (public or private) once the initial cluster has been created. Simply follow the instructions below.

  1. Increase the value for the num_private_agents and/or num_public_agents in your main.tf file. In this example we are going to scale our cluster from 2 private agents to 3, changing just that line, and saving the file.

  2. Now that we’ve made changes to our main.tf, we need to re-run our new execution plan.

    1. terraform plan -out=plan.out

    Doing this helps us to ensure that our state is stable and to confirm that we will only be creating the resources necessary to scale our Private Agents to the desired number.

    You should see a message similar to above. There will be 3 resources added as a result of scaling up our cluster’s Private Agents (1 instance resource & 2 null resources which handle the DC/OS installation & prerequisites behind the scenes).

  3. Now that our plan is set, just like before, let’s get Terraform to build/deploy it.

    1. terraform apply plan.out

    AWS - 图2

    You should see now 4 total nodes connected like below via the DC/OS UI.

Upgrading Your Cluster

Terraform also makes it easy to upgrade our cluster to a newer version of DC/OS. If you are interested in learning more about the upgrade procedure that Terraform performs, please see the official DC/OS Upgrade documentation.

  1. In order to perform an upgrade, we need to go back to our main.tf and modify the current DC/OS Version (dcos_version) to a newer version, such as 1.13.3 for this example.

    1. dcos_version = "1.13.3"
  2. We also should make sure having the latest version of the Terraform modules. So we tell Terraform to request those from the registry.

    1. terraform get -update
  3. Re-run the execution plan, terraform will notice the change in version and run accordingly.

    1. terraform plan -out=plan.out

    You should see an output like below, with your main.tf now set for normal operations on a new version of DC/OS.

    AWS - 图3

  4. Apply the plan.

    1. terraform apply plan.out

    Once the apply completes, you can verify that the cluster was upgraded via the DC/OS UI.

Deleting Your Cluster

If you want to destroy your cluster, then use the following command and wait for it to complete.

  1. terraform destroy

Important: Running this command will cause your entire cluster and all of its associated resources to be destroyed. Only run this command if you are absolutely sure you no longer need access to your cluster.

You will be required to enter yes to verify.

AWS - 图4

The Universal Installer config module backend has undergone a change and is now running version 0.2 for Amazon Web Services users. If you are still on 0.1, there is no direct upgrade path you will NOT be able to upgrade automatically, as the underlying cluster management has been changed. You will need to spin up a new cluster and transfer your services over.

Updates:

  • Currently, only CentOS or RHEL are the only supported node OS’s.
  • dcos_install_mode has been deprecated and is now automatically calculated.

Checking your version

You can check the version of the Universal Installer modules you are running by viewing your main.tf.

  1. module "dcos" {
  2. source = "dcos-terraform/dcos/aws"
  3. version = "~> 0.2.0"
  4. # ...
  5. }

Using install and upgrade modes for ~> 0.1.0 version users

To use the examples on these pages, make the following changes to your . The only time you should set the variable to upgrade is when upgrading the DC/OS version. Remember to set it back to install afterwards to ensure normal operations.

ENTERPRISE

AWS 上 DC/OS 使用 Universal 安装工具添加远程分域的指南。

在 AWS 上使用 Universal 安装工具的可替换管理节点

使用 Universal 安装工具在 AWS 上配置您的 DC/OS 安装