Created
May 18, 2019 16:21
-
-
Save tomaustin700/c04a6fb95d548a935c771e1b9cdbc8c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: Namespace | |
apiVersion: v1 | |
metadata: | |
name: $(namespace) | |
spec: {} | |
status: {} | |
--- | |
kind: ServiceAccount | |
apiVersion: v1 | |
metadata: | |
name: tiller | |
namespace: $(namespace) | |
--- | |
kind: Role | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
metadata: | |
name: tiller-manager | |
namespace: $(namespace) | |
rules: | |
- apiGroups: ["", "batch", "extensions", "apps"] | |
resources: ["*"] | |
verbs: ["*"] | |
--- | |
kind: RoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
metadata: | |
name: tiller-binding | |
namespace: $(namespace) | |
subjects: | |
- kind: ServiceAccount | |
name: tiller | |
namespace: $(namespace) | |
roleRef: | |
kind: Role | |
name: tiller-manager | |
apiGroup: rbac.authorization.k8s.io |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment