Skip to content

Commit

Permalink
Add RBAC instructions for GKE cluster (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha authored Apr 12, 2018
1 parent 290e750 commit 65b7d0d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 65b7d0d

Please sign in to comment.