Hi team, Where can I specify requests.cpu & re...
# troubleshooting
u
Hi team, Where can I specify requests.cpu & requests.memory for airbyte.workers (Helm Chart deployment)? Running into this error when attempting to add a new connector: Caused by: io.airbyte.workers.WorkerException: Failure executing: POST at: https://000.000.000/api/... Message: Forbidden!Configured service account doesn't have access. Service account may have been revoked. pods "***************" is forbidden: failed quota: request-quota: must specify requests.cpu,requests.memory.
r
Hi Renzo, do you want to update requests for the workers or for the sync pods?
@Augustin Lafanechere (Airbyte) sync pods
For workers you can set the resources value in
charts/airbyte/values.yaml
> worker > resources
And for the dynamically created pods you need to set , in the same file:
jobs
>
resources
jobs: resources: requests: memory: 256Mi cpu: 250m limits: {}
@Augustin Lafanechere (Airbyte) Hmm I'm already specifying both worker.resources and jobs.resources and running into this issue. Am I missing something?