Increase memory limit for gmail-agent to prevent OOM kills

This commit is contained in:
Antigravity 2026-06-13 22:30:15 -04:00
parent 05ae58ccb8
commit b24f1a6522
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ spec:
memory: 64Mi memory: 64Mi
limits: limits:
cpu: 200m cpu: 200m
memory: 128Mi memory: 512Mi
volumes: volumes:
- name: app-volume - name: app-volume
emptyDir: {} emptyDir: {}

View File

@ -26,7 +26,7 @@ const client = new Client({
}), }),
puppeteer: { puppeteer: {
headless: true, headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox'], args: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage'],
protocolTimeout: 120000, protocolTimeout: 120000,
timeout: 120000 timeout: 120000
} }