Skip to content

Instantly share code, notes, and snippets.

@victorpaulo
Created August 26, 2019 10:47
Show Gist options
  • Save victorpaulo/9dfa8fcd811586f143cca69f2eafcfb4 to your computer and use it in GitHub Desktop.
Save victorpaulo/9dfa8fcd811586f143cca69f2eafcfb4 to your computer and use it in GitHub Desktop.
Configuring Helm Tiller RBAC resources
apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: tiller-clusterrolebinding
subjects:
- kind: ServiceAccount
name: tiller
namespace: kube-system
roleRef:
kind: ClusterRole
name: cluster-admin
apiGroup: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment