are folks seeing memory allocations for tasks bein...
# flyte-deployment
j
are folks seeing memory allocations for tasks being squashed when working on the sandbox?
asking for 3Gi, but getting 1Gi.
ah there is a memory limit set somewhere in the platform config
false alert 🙂
😆 1
fixed by increasing the task resources in admin config:
Copy code
task_resources:
  defaults:
    cpu: 1
    memory: 256Mi
    storage: 100Mi
  limits:
    memory: "4Gi"
    cpu: "2"
k
🙂
172 Views