mirror of https://github.com/istio/istio.io.git
1.0 KiB
1.0 KiB
| title | description | weight | skip_seealso | keywords | ||||
|---|---|---|---|---|---|---|---|---|
| Google Kubernetes Engine | Instructions to setup a Google Kubernetes Engine cluster for Istio. | 9 | true |
|
Follow these instructions to prepare an GKE cluster for Istio.
-
Create a new cluster.
{{< text bash >}} $ gcloud container clusters create
--num-nodes 4 --zone
--project {{< /text >}} -
Retrieve your credentials for
kubectl.{{< text bash >}} $ gcloud container clusters get-credentials
--zone
--project {{< /text >}} -
Grant cluster administrator (admin) permissions to the current user. To create the necessary RBAC rules for Istio, the current user requires admin permissions.
{{< text bash >}} $ kubectl create clusterrolebinding cluster-admin-binding
--clusterrole=cluster-admin
--user=$(gcloud config get-value core/account) {{< /text >}}