Steven B

Results 11 comments of Steven B

You can see this stuff, although you have to use cloudwatch insights to pull data logged by container insights. Here's an example query to summarize a cluster/container's cpu and memory...

I had the same issue and the fix [in this issue](https://github.com/jupyterhub/jupyterhub/issues/774#issuecomment-249420931) fixed it. I just ran the below command as root ``` setcap 'cap_net_bind_service=+ep' `which node` ``` This was my...

This would be nice. My workaround is to run this step before the render task def step: ``` - name: Get current task definition run: > aws ecs describe-task-definition --task-definition...

If there a good generic how-to for creating a database connector? Or would you just look at how the others are written? Anyone can answer. Thank 😸

This is the error ``` $ sls deploy --region us-east-1 --target-region us-east-2 Environment: darwin, node 14.20.0, framework 3.12.0, plugin 6.2.1, SDK 4.3.2 Docs: docs.serverless.com Support: forum.serverless.com Bugs: github.com/serverless/serverless/issues Error: Detected...

You might be right, I'm having trouble reproducing this locally. I have a few lambdas using this library and that error has been an intermittent problem. I'm using library version...

have you double-checked that the instance profile is there? terraform is pretty convinced that > The provided instance profile does not exist.

This sounds like a race condition. I'm not the only one who has found that [IAM can take a few minutes to update](https://stackoverflow.com/a/57431673/5568528) Have you tried just waiting a few...

This is [where the instance profile gets passed to cloudformation](https://github.com/rhythmictech/terraform-aws-imagebuilder-pipeline/blob/61f376687aa340beeb7abb359588ad81412bd134/cloudformation.yml.tpl#L43) but the "i" in `InstanceProfile` is capitalized. I thought this was the line throwing the error, when it tried to...

Instance profiles are basically roles that get assigned to EC2s, so the assume role having `ec2.amazonaws.com` is correct. This is confusing, though, everything looks right. Could you try running it...