Michael Bridgen

Results 288 comments of Michael Bridgen

Confirmed, with this program: ```javascript "use strict"; const pulumi = require("@pulumi/pulumi"); const aws = require("@pulumi/aws"); const awsx = require("@pulumi/awsx"); const example = new aws.apigatewayv2.Api("example", { protocolType: "HTTP", }); const apiStage...

I would try building the `Input` with `Apply` (and [`All` or `Tuple`](https://www.pulumi.com/docs/intro/concepts/inputs-outputs/#all)); something like ```csharp var labels = Output.All(output1, output2) .Apply(t => new Dictionary() { { "foo", t[0] }, {...

One thing is that the operator exec's processes, and is PID 1, but doesn't reap defunct processes. So you end up with ``` $ ps PID TTY TIME CMD 1...

@phillipedwards Nice one! Each one of the ticks on the X axis is three hours, looks like, so I read this as: memory use roughly doubles from 5% to just...

> Any ideas of how I can help triage this issue to get it going in the right direction? I think a pprof endpoint would be a good start. I...

> This behavior does not occur when setting the annotation to `false`. Do we have evidence to support this? I would expect leaks to be more obvious when `ContinueResyncOnCommitMatch` is...

While a leak is a concern and I'd like to track this down: in practice, setting a resource request for a generous amount of RAM (8GB, something like that) will...

Rewriting as a (controller-runtime) controller with a manager will solve this by default (see #722 for discussion).