Merge pull request #833 from docker/ucp-helm-775

Helm and tiller helper topic added
This commit is contained in:
Justin I. Nevill 2018-10-31 17:29:18 -04:00 committed by GitHub
commit 5b447f9ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -1572,6 +1572,8 @@ manuals:
title: Create UCP audit logs
- path: /ee/ucp/admin/configure/enable-saml-authentication/
title: Enable SAML authentication
- path: /ee/ucp/admin/configure/enable-helm-tiller/
title: Enable Helm and Tiller with UCP
- path: /ee/ucp/admin/configure/external-auth/
title: Integrate with LDAP
- path: /ee/ucp/admin/configure/license-your-installation/

View File

@ -0,0 +1,17 @@
---
title: Enable Helm and Tiller with UCP
description: Learn how to modify service accounts to enable Helm and Tiller to operate with UCP.
keywords: Helm, ucp, Tiller, Kubernetes, service accounts, Kubernetes
---
To use [Helm and Tiller](https://helm.sh/) with UCP, you must modify the `kube-system` default service account to define the necessary roles. Enter the following `kubectl` commands in this order:
```
kubectl create rolebinding default-view --clusterrole=view --serviceaccount=kube-system:default --namespace=kube-system
kubectl create clusterrolebinding add-on-cluster-admin --clusterrole=cluster-admin --serviceaccount=kube-system:default
```
## Using Helm
For more information about using Helm, see [Using Helm - Role-Based Access Control](https://docs.helm.sh/using_helm/#role-based-access-control).