Added RBAC example and adjusted per peer feedback
This commit is contained in:
parent
fb29da7a65
commit
0b41228f49
3 changed files with 7 additions and 3 deletions
|
@ -88,3 +88,9 @@ Name | Description | Platform | Complexity Level
|
|||
-----| ----------- | ---------- | ----------------
|
||||
custom-headers | set custom headers before send traffic to backends | nginx | Advanced
|
||||
configuration-snippets | customize nginx location configuration using annotations | nginx | Advanced
|
||||
|
||||
## RBAC
|
||||
|
||||
Name | Description | Platform | Complexity Level
|
||||
-----| ----------- | ---------- | ----------------
|
||||
rbac | Configuring Role Base Access Control | nginx | intermediate
|
||||
|
|
|
@ -37,7 +37,7 @@ able to function as an ingress across the cluster. These permissions are
|
|||
granted to the ClusterRole named `nginx-ingress-clusterrole`
|
||||
|
||||
* `configmaps`, `endpoints`, `nodes`, `pods`, `secrets`: list, watch
|
||||
* `services`: get, list, watch, update
|
||||
* `services`: get, list, watch
|
||||
* `ingresses`: get, list, watch
|
||||
* `events`: create
|
||||
* `ingresses/status`: update
|
||||
|
|
|
@ -16,7 +16,6 @@ metadata:
|
|||
rules:
|
||||
- apiGroups:
|
||||
- ""
|
||||
- "extensions"
|
||||
resources:
|
||||
- configmaps
|
||||
- secrets
|
||||
|
@ -34,7 +33,6 @@ rules:
|
|||
- get
|
||||
- list
|
||||
- watch
|
||||
- update
|
||||
- apiGroups:
|
||||
- "extensions"
|
||||
resources:
|
||||
|
|
Loading…
Reference in a new issue