Browse Source

Add yaml template for creating the Service Account for Helm

pull/1012/head
Daniel Țoncu 5 years ago
parent
commit
116dbeffaf
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      k8s/helm/helm-rbac.yaml

+ 18
- 0
k8s/helm/helm-rbac.yaml View File

@ -0,0 +1,18 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tiller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: tiller
namespace: kube-system

Loading…
Cancel
Save