few-carpenter-12885
12/12/2022, 2:51 PMrefresh
call works fine, but I'm getting one of 2 errors each time an inline application 'up' is attempted:
• `aws:ecs:Cluster error: connection error: desc = "transport: Error while dialing dial tcp 127.0.0.1:32825: connect: connection refused`` I've received this on resources other than ECS within the stack as well.
• Or a generic: Command was killed with SIGKILL (Forced termination): pulumi up --yes --skip-preview --client=127.0.0.1:36833 --exec-kind auto.inline --stack dev --non-interactive\n
Initially, I thought it had to do with the Pulumi not being able to write to the workDir. I'm mounting a /tmp
volume to the container and passing the workDir accordingly into the createOrSelectStack
call.
Any ideas what either of these could mean? Searching slack for the connection refused
doesn't turn up any specific solutions - seems to be different for each case.lemon-agent-27707
12/12/2022, 5:31 PMfew-carpenter-12885
12/12/2022, 5:35 PM/home/node/app/node_modules/@grpc/grpc-js/src/call.ts:81
return Object.assign(new Error(message), status);
^
Error: Resource monitor is terminating
at Object.callErrorFromStatus (/home/node/app/node_modules/@grpc/grpc-js/src/call.ts:81:24)
at Object.onReceiveStatus (/home/node/app/node_modules/@grpc/grpc-js/src/client.ts:338:36)
at Object.onReceiveStatus (/home/node/app/node_modules/@grpc/grpc-js/src/client-interceptors.ts:426:34)
at Object.onReceiveStatus (/home/node/app/node_modules/@grpc/grpc-js/src/client-interceptors.ts:389:48)
at /home/node/app/node_modules/@grpc/grpc-js/src/call-stream.ts:276:24
at processTicksAndRejections (node:internal/process/task_queues:77:11)
I'll bump the specs to see if that makes a difference. Not sure where this would leave me if traffic is open and specs don't work though.lemon-agent-27707
12/12/2022, 5:50 PMThis typically indicates resource exhaustion in my experience. Glad to hear you're unblocked 😛artypus-8bit:Resource monitor is terminating
orange-policeman-59119
12/12/2022, 6:40 PMfew-carpenter-12885
12/12/2022, 6:42 PM