Ingress
Details on using the Seq Helm chart
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 ensure large auth cookies can be transferred:
helm install -f config.yaml my-seq datalust/seq
# 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 over 3 years ago