Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 680 Bytes

resources.md

File metadata and controls

22 lines (17 loc) · 680 Bytes

Setting resources for a Helm sidecar

The sidecar deployment is composed of a single container, which can have resource requirements and limits attached to it.

Setting default requests and limits to the sidecar container

To set the default resources for the sidecar container, add the following lines to your values.yaml file.

resources:
  limits:
    cpu: 2
    memory: 8096Mi
  requests:
    cpu: 1
    memory: 4096Mi

NOTE: The above are the recommended settings for the sidecar. We advise that you adjust the limits based on your workload and the available resources.