Add configmaps right to Ingress NGINX RBAC

This commit is contained in:
Kevin Pollet
2026-01-15 18:58:07 +01:00
committed by GitHub
parent 97158ac770
commit 77af7e4dea
2 changed files with 23 additions and 0 deletions
+22
View File
@@ -576,3 +576,25 @@ Here is the list of the encoded characters that are rejected by default, along w
| `%23` | `#` (hash) | `entryPoints.<name>.`<br/>`.http.encodedCharacters`<br/>`.allowEncodedHash` |
Please check out the entrypoint [encodedCharacters option](../reference/install-configuration/entrypoints.md#opt-http-encodedCharacters) documentation for more details.
## v3.7.0
### Ingress NGINX Provider
Starting with `v3.7.0`, the Ingress NGINX provider now supports the `nginx.ingress.kubernetes.io/custom-headers` annotation to add custom headers to the response forwarded to the client.
Therefore, in the corresponding RBACs (see [KubernetesIngressNGINX](../reference/dynamic-configuration/kubernetes-ingress-nginx-rbac.yml) provider RBACs) the `configmaps` right has been added.
**Required RBAC Updates:**
```yaml
...
- apiGroups:
- ""
resources:
- configmaps
verbs:
- list
- watch
...
```
@@ -8,6 +8,7 @@ rules:
resources:
- services
- secrets
- configmaps
verbs:
- list
- watch