Memory
Details on using the Seq Helm chart
For Seq to accurately measure available memory, depending on the hosting infrastructure, it's often necessary to specify memory limits for the deployment.
In Kubernetes, memory limits can be specified in the resources
section of the configuration during deployment:
helm install -f config.yaml my-seq stable/seq
# config.yaml
resources:
limits:
memory: 4Gi
requests:
memory: 4Gi
Updated about 4 years ago