var img = document.createElement('img'); img.src = "https://terradocs.matomo.cloud//piwik.php?idsite=2&rec=1&url=https://feather.terra.money" + location.pathname; img.style = "border:0"; img.alt = "tracker"; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(img,s);
Skip to main content

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