Documentation
DocumentationDiscussions
These docs are for v2021.3. Click to read the latest docs for v2024.2.

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"