Ingress
Details on using the Seq Helm chart
Seq doesn't need an ingress to accept logs from applications within the cluster, but it does if you want to access Seq externally.
nginx and Azure Active Directory
If you're using nginx as your ingress controller and AAD as your auth provider, you may need to add some additional annotations to the ingress
section of your Helm chart configuration to ensure large auth cookies can be transferred:
# config.yaml
ingress:
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-buffering: "on"
nginx.ingress.kubernetes.io/proxy-buffer-size: "128k"
nginx.ingress.kubernetes.io/proxy-buffers-number: "4"
Updated 11 months ago