Specify resources limits/requests for job pods
Hello, in values.yaml we can specify the Resources Limits/Requests, e.g.
resources:
limits:
memory: 256Mi
cpu: 200m
requests:
memory: 128Mi
cpu: 100m
These values are considered to the Runner pod only? I have tried to run some jobs via this runner and everytime they exceeds the requests, up to 2000m CPU and 3Gi of RAM, which quickly saturates the resources of my cluster without being OOMkilled.
Is this wanted? Is there a way to specify the Resources limits/requests for the "job" pods?