diff --git a/docs/install.md b/docs/install.md
index 5aa4233c1756a73154babeb1c7c104365e72bc9c..52b55baef03a349902945adb4a74121c8ef63979 100755
--- a/docs/install.md
+++ b/docs/install.md
@@ -131,6 +131,7 @@ You can explicitly tell `helm init` to...
 - Install a particular image (version) with `--tiller-image`
 - Install to a particular cluster with `--kube-context`
 - Install into a particular namespace with `--tiller-namespace`
+- Install Tiller with a Service Account with `--service-account` (for [RBAC enabled clusters](securing_installation.md#rbac))
 
 Once Tiller is installed, running `helm version` should show you both
 the client and server version. (If it shows only the client version,
diff --git a/docs/rbac.md b/docs/rbac.md
index 36d06e62a7441cd44ef4672ab54a9528dfaf17c7..4af36203cc9e2a01b9f6dfcbf5b11b85eb153f48 100644
--- a/docs/rbac.md
+++ b/docs/rbac.md
@@ -14,11 +14,6 @@ Once you have satisfied the pre-requisite and have a service account with the co
 
 ### Example: Service account with cluster-admin role
 
-```console
-$ kubectl create serviceaccount tiller --namespace kube-system
-serviceaccount "tiller" created
-```
-
 In `rbac-config.yaml`:
 
 ```yaml