Last active
May 28, 2019 15:44
-
-
Save mgoodness/4c5ddf4cc340a7c504a01a8f9ff422cf to your computer and use it in GitHub Desktop.
nginx-ingress-controller Role
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
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: Role | |
metadata: | |
name: nginx-ingress-controller | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- configmaps | |
- pods | |
- secrets | |
- namespaces | |
verbs: | |
- get | |
- apiGroups: | |
- "" | |
resources: | |
- configmaps | |
resourceNames: | |
- ingress-controller-leader-nginx | |
- tcp-services | |
- udp-services | |
verbs: | |
- get | |
- update | |
- apiGroups: | |
- "" | |
resources: | |
- configmaps | |
verbs: | |
- create | |
- apiGroups: | |
- "" | |
resources: | |
- endpoints | |
verbs: | |
- get |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment