Results 32 comments of Mark Fickett

RBAC might push us to use Prefect instead of Dagster, even though I really like Dagster's engineering. Basic auth to protect the UI is a must (and easier if we...

I'm occasionally seeing a hang similar to this. My app seems to hang indefinitely (> 1h), which doesn't match up with the 64s timeout described above. The app is using...

I ran into these symptoms too: PiCameraRuntimeError: Timed out waiting for capture to end after a while. I'm also using PWM, and in my case this was the fix: http://raspberrypi.stackexchange.com/questions/40126/can-the-gpio-interfere-with-the-picamera-and-cause-an-error...

I also found the initial error very confusing, and like MrSimonEmms' suggestion. Setting a custom arbitrary namespace is an OK workaround for me. ```yaml config: td:some_value: foobar ``` Set via:...

Linking to this ticket or stating the workaround in the [docs for the Cluster.provider](https://www.pulumi.com/registry/packages/eks/api-docs/cluster/) attribute (and ideally the Namespace too) would be a great help, as long as this issue...

Thanks for the response @sfc-gh-sfan . (I don't have any experience with SqlAlchemy/Alembic internals so I probably won't make a PR.) I was surprised to see that Alembic ops like...

I'm also still getting the `sqlalchemy.orm.exc.FlushError: Instance has a NULL identity key.` error described in #124 . I tried some variations of the ORM delaration looking at discussion on [this...

I get this error when setting `Cluster(version='1.24')` but not `1.22` or `1.23`. I'm using: ``` $ pulumi about CLI Version 3.46.1 Go Version go1.19.2 Go Compiler gc Plugins NAME VERSION...

I ran into this again working on another new cluster w/ up-to-date versions of everything, here's the `pyproject.toml`: ``` dependencies = [ "pulumi==3.55.0", "pulumi-aws==5.30.0", # node v19.4.0 and awscli 2.10.3...

I was able to get a `ManagedNodeGroup` working with a custom `LaunchTemplate` in Python. Below is what's working for me. It takes AWS about 15 minutes to update the node...