Preparing your project
Before you can create a delivery pipeline, targets, and a release, you need to enable some APIs in Google Cloud and grant the necessary IAM roles and permissions.
Enabling the API
In Chapter 2, you enabled most of the APIs you need to use Cloud Deploy. Besides those APIs, you need to enable the Cloud Deploy API.
The following command assumes you still have your current Google Cloud project configured as the default project on your command line. Run this command to enable the Compute Engine API and the Cloud Deploy API:
gcloud services enable clouddeploy.googleapis.com \ && gcloud services enable compute.googleapis.com
With these APIs enabled, you can now create your GKE clusters, as described in the next section.
Creating the GKE clusters
In this chapter, you will create two Cloud Deploy targets, each of which points to a GKE cluster that you will deploy to. Before you can do that, you need to create the two clusters...