2. Initialise kubectl CLI
Note
Currently, Feather only supports deploying validators to Google Kubernetes Engine (GKE).
Firstly, create a new GKE cluster using the following (if you do not already have one):
gcloud container clusters create-auto <CLUSTER_NAME> --region=<GCP_REGION>
Then, set the current context of kubectl to point to the created GKE cluster:
gcloud container clusters get-credentials <CLUSTER_NAME> --region=<GCP_REGION>
Finally, verify that kubectl is configured correctly by running:
kubectl config current-context