docs: add annotations for nginx ingress to k8s doc (#2726)

pull/2727/head
Patrick Ruckstuhl 2021-12-16 23:11:36 +01:00 committed by GitHub
parent 8c796c11d2
commit 8507195240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -21,6 +21,22 @@ The following areas are actively being worked on for Kubernetes:
Users are welcome to reach out directly by using any of our various [contact options](../about-us.md#contact-options).
### NGINX Ingress Controller
If you use NGINX Ingress Controller you can protect an ingress with the following annotations.
The assumptions are that your public domain where authelia is running would be https://auth.mypublicdomain.com
and there would be a service called authelia with port 80 in the default namespace.
```yaml
annotations:
nginx.ingress.kubernetes.io/auth-response-headers: Remote-User,Remote-Name,Remote-Groups,Remote-Email
nginx.ingress.kubernetes.io/auth-signin: https://auth.mypublicdomain.com
nginx.ingress.kubernetes.io/auth-snippet: |
proxy_set_header X-Forwarded-Method $request_method;
nginx.ingress.kubernetes.io/auth-url: http://authelia.default.svc.cluster.local/api/verify
nginx.ingress.kubernetes.io/configuration-snippet: |
proxy_set_header X-Forwarded-Method $request_method;
```
## FAQ
### RAM usage