mirror of https://github.com/istio/istio.io.git
1.0 KiB
1.0 KiB
| title | description | weight | keywords | |||
|---|---|---|---|---|---|---|
| Platform setup for Google Kubernetes Engine | Instructions to setup the Google Kubernetes Engine cluster for Istio. | 11 |
|
To setup the Google Kubernetes Engine cluster for Istio, follow these instructions:
-
Create a new cluster.
{{< text bash >}} $ gcloud container clusters create
--cluster-version=1.10.5-gke.0
--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 >}}