To get started, you will need a GCP account.
This tutorial will teach you how to deploy Nomad clusters to the Google Cloud Platform using Packer and Terraform.
Includes:
- Installing HashiCorp Tools (Nomad, Consul, Vault, Terraform, and Packer).
- Installing the GCP SDK CLI Tools, if you're not using Cloud Shell.
- Creating a new GCP project, along with a Terraform Service Account.
- Building a golden image using Packer.
- Deploying a cluster with Terraform.
Download the latest version of Nomad from HashiCorp's website by copying and pasting this snippet in the terminal:
curl "https://releases.hashicorp.com/nomad/0.12.4/nomad_0.12.4_linux_amd64.zip" -o nomad.zip
unzip nomad.zip
sudo mv nomad /usr/local/bin
nomad --version
Download the latest version of Consul from HashiCorp's website by copying and pasting this snippet in the terminal:
curl "https://releases.hashicorp.com/consul/1.8.3/consul_1.8.3_linux_amd64.zip" -o consul.zip
unzip consul.zip
sudo mv consul /usr/local/bin
consul --version
Download the latest version of Vault from HashiCorp's website by copying and pasting this snippet in the terminal:
curl "https://releases.hashicorp.com/vault/1.5.3/vault_1.5.3_linux_amd64.zip" -o vault.zip
unzip vault.zip
sudo mv vault /usr/local/bin
vault --version
Download the latest version of Packer from HashiCorp's website by copying and pasting this snippet in the terminal:
curl "https://releases.hashicorp.com/packer/1.6.2/packer_1.6.2_linux_amd64.zip" -o packer.zip
unzip packer.zip
sudo mv packer /usr/local/bin
packer --version
Download the latest version of Terraform from HashiCorp's website by copying and pasting this snippet in the terminal:
curl "https://releases.hashicorp.com/terraform/0.13.1/terraform_0.13.1_linux_amd64.zip" -o terraform.zip
unzip terraform.zip
sudo mv terraform /usr/local/bin
terraform --version
If you are using Google Cloud, you already have gcloud
set up, and you can safely skip this step.
To install the GCP SDK Command Line Tools, follow the installation instructions for your specific operating system:
After installation, authenticate gcloud
with the following command:
gcloud auth login
Generate a project ID with the following command:
export GOOGLE_PROJECT="nomad-gcp-$(cat /dev/random | head -c 5 | xxd -p)"
Using that project ID, create a new GCP project:
gcloud projects create $GOOGLE_PROJECT
And then set your gcloud
config to use that project:
gcloud config set project $GOOGLE_PROJECT
Next, let's link a billing account to that project. To determine what billing accounts are available, run the following command:
gcloud alpha billing accounts list
Locate the ACCOUNT_ID
for the billing account you want to use, and set the GOOGLE_BILLING_ACCOUNT
environment variable. Replace the XXXXXXX
with the ACCOUNT_ID
you located with the previous command output:
export GOOGLE_BILLING_ACCOUNT="XXXXXXX"
So we can link the GOOGLE_BILLING_ACCOUNT
with the previously created GOOGLE_PROJECT
:
gcloud alpha billing projects link "$GOOGLE_PROJECT" --billing-account "$GOOGLE_BILLING_ACCOUNT"
In order to deploy VMs to the project, we need to enable the compute API:
gcloud services enable compute.googleapis.com
Finally, let's create a Terraform Service Account user and its account.json
credentials file:
gcloud iam service-accounts create terraform \
--display-name "Terraform Service Account" \
--description "Service account to use with Terraform"
gcloud projects add-iam-policy-binding "$GOOGLE_PROJECT" \
--member serviceAccount:"terraform@$GOOGLE_PROJECT.iam.gserviceaccount.com" \
--role roles/editor
gcloud iam service-accounts keys create account.json \
--iam-account "terraform@$GOOGLE_PROJECT.iam.gserviceaccount.com"
⚠️ WarningThe
account.json
credentials gives privileged access to this GCP project. Be careful to avoid leaking these credentials by accidentally committing them to version control systems such asgit
, or storing them where they are visible to others. In general, storing these credentials on an individually operated, private computer (like your laptop) or in your own GCP cloud shell is acceptable for testing purposes. For production use, or for teams, use a secrets management system like HashiCorp Vault. For this tutorial's purposes, we'll be storing theaccount.json
credentials on disk in the cloud shell.
Now set the full path of the newly created account.json
file as GOOGLE_APPLICATION_CREDENTIALS
environment variable.
export GOOGLE_APPLICATION_CREDENTIALS=$(realpath account.json)
Before moving onto the next steps, ensure the following environment variables are set:
GOOGLE_PROJECT
with your selected GCP project ID.GOOGLE_APPLICATION_CREDENTIALS
with the full path to the Terraform Service Accountaccount.json
credentials file created in the last step.
Packer is HashiCorp's open source tool for creating identical machine images for multiple platforms from a single source configuration. The machine image created here can be customized through modifications to the build configuration file and the shell script.
Use the following command to build the machine image:
packer build packer.json
Change into the env/us-east
environment directory:
cd env/us-east
Initialize Terraform:
terraform init
Plan infrastructure changes with Terraform:
terraform plan -var="project=${GOOGLE_PROJECT}" -var="credentials=${GOOGLE_APPLICATION_CREDENTIALS}"
Apply infrastructure changes with Terraform:
terraform apply -auto-approve -var="project=${GOOGLE_PROJECT}" -var="credentials=${GOOGLE_APPLICATION_CREDENTIALS}"
To access the Nomad, Consul, or Vault web UI inside the cluster, create an SSH tunnel using gcloud
. To open up tunnels to all of the UIs available in the cluster, run these commands which will start each SSH tunnel as a background process in your current shell:
gcloud compute ssh hashistack-server-0 --zone=us-east1-c --tunnel-through-iap -- -f -N -L 127.0.0.1:4646:127.0.0.1:4646
gcloud compute ssh hashistack-server-0 --zone=us-east1-c --tunnel-through-iap -- -f -N -L 127.0.0.1:8200:127.0.0.1:8200
gcloud compute ssh hashistack-server-0 --zone=us-east1-c --tunnel-through-iap -- -f -N -L 127.0.0.1:8500:127.0.0.1:8500
After running those commands, you can now click any of the following links to open up a Web Preview using Cloud Shell:
If you're not using Cloud Shell, you can use any of these links:
In case you want to try out any of the optional steps with the Vault CLI later on, set this helper variable:
export VAULT_ADDR=http://localhost:8200
You have deployed a Nomad cluster to GCP! 🎉
Click here for next steps.
Come back here when you're done exploring Nomad and the HashiCorp stack. In the next section, you'll learn how to clean up, and will destroy the demo infrastructure you've created.
You have deployed a Nomad cluster to GCP!
To destroy all the demo infrastructure:
terraform destroy -force -var="project=${GOOGLE_PROJECT}" -var="credentials=${GOOGLE_APPLICATION_CREDENTIALS}"
Finally, to completely delete the project:
gcloud projects delete $GOOGLE_PROJECT
If you prefer to delete the project using GCP's Cloud Console, follow this link to GCP's Cloud Resource Manager.