hello, I'm getting this error now when updating my...
# ask-community
y
hello, I'm getting this error now when updating my code location
Copy code
Exception: Timed out waiting for deployment lipper-prod-1e7c8e
all I did was add resources settings in the location
Copy code
resources:
          limits:
            cpu: 2000m
            memory: 2000Mi
          requests:
            cpu: 1000m
            memory: 1000Mi
oh I guess it's bc of resource settings errors, but I thought I had enough resources in the settings for nodes. message from gke
Copy code
Can't scale up because node auto-provisioning can't provision a node pool for the Pod if it would exceed resource limits.
c
Hi Yang, is this on Dagster cloud?
y
yes it is
it worked after I lowered the limits
Copy code
resources:
          limits:
            cpu: 900m
            memory: 2000Mi
          requests:
            cpu: 500m
            memory: 1000Mi
c
Thanks Yang for sharing. Would you mind actually posting this question in #dagster-cloud or your team-specific channel? This channel is generally for open source queries and you'll probably get a faster response in the other channels
y
oh ok thanks
🌈 1