From 65b7d0d32797df6bcc20520a7a8b917737cba844 Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Thu, 12 Apr 2018 09:35:15 -0700 Subject: [PATCH] Add RBAC instructions for GKE cluster (#210) --- docs/setup/install.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/setup/install.md b/docs/setup/install.md index ca1482a04..9841c10db 100644 --- a/docs/setup/install.md +++ b/docs/setup/install.md @@ -146,6 +146,19 @@ $ helm install appscode/kubedb --name my-release \ To see the detailed configuration options, visit [here](https://github.com/kubedb/cli/tree/master/chart/kubedb). +### Installing in GKE Cluster + +If you are installing KubeDB on a GKE cluster, you will need cluster admin permissions to install KubeDB operator. Run the following command to grant admin permision to the cluster. + +```console +# get current google identity +$ gcloud info | grep Account +Account: [user@example.org] + +$ kubectl create clusterrolebinding cluster-admin-binding --clusterrole=cluster-admin --user=user@example.org +``` + + ## Verify installation To check if KubeDB operator pods have started, run the following command: