## Install Terraform
1. Install Terraform if it is not already installed (visit [terraform.io](https://terraform.io) for other distributions):
../terraform-install.sh
## Set up the environment
1. Set the project, replace `YOUR_PROJECT` with your project ID:
PROJECT=YOUR_PROJECT
gcloud config set project ${PROJECT}
2. Configure the environment for Terraform:
[[
## Run Terraform
terraform init terraform apply
## Testing
1. Wait for the load balancer to be provisioned:
./test.sh
2. Verify response from load balancer:
curl http://$(terraform output load-balancer-ip)
## Connecting with kubectl
1. Get the cluster credentials and configure kubectl:
gcloud container clusters get-credentials
2. Verify kubectl connectivity:
kubectl get pods -n staging
## Cleanup
1. Delete resources created by terraform:
terraform destroy