Update custom headers annotation documentation (#12318)
Signed-off-by: Satyam Zode <satyamz@users.noreply.github.com> Co-authored-by: Satyam Zode <satyamz@users.noreply.github.com>
This commit is contained in:
parent
63624b8320
commit
554d970b68
1 changed files with 8 additions and 1 deletions
|
@ -335,7 +335,13 @@ nginx.ingress.kubernetes.io/custom-http-errors: "404,415"
|
|||
```
|
||||
|
||||
### Custom Headers
|
||||
This annotation is of the form `nginx.ingress.kubernetes.io/custom-headers: custom-headers-configmap` to specify a configmap name that contains custom headers. This annotation uses `more_set_headers` nginx directive.
|
||||
This annotation is of the form `nginx.ingress.kubernetes.io/custom-headers: <namespace>/<custom headers configmap>` to specify a namespace and configmap name that contains custom headers. This annotation uses `more_set_headers` nginx directive.
|
||||
|
||||
Example annotation for following example configmap:
|
||||
|
||||
```yaml
|
||||
nginx.ingress.kubernetes.io/custom-headers: default/custom-headers-configmap
|
||||
```
|
||||
|
||||
Example configmap:
|
||||
```yaml
|
||||
|
@ -345,6 +351,7 @@ data:
|
|||
kind: ConfigMap
|
||||
metadata:
|
||||
name: custom-headers-configmap
|
||||
namespace: default
|
||||
```
|
||||
|
||||
!!! attention
|
||||
|
|
Loading…
Reference in a new issue