allisaurus

Results 47 comments of allisaurus

thanks @chenrui333 !

Hi @lucasgut - thanks for letting us know about your need for this. The immediate work around is (if possible) to use a compose 2 project, which will support `shm_size`;...

@OneEyedSpaceFish You're right that ECS [supports shm_size for the EC2 launch mode](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_LinuxParameters.html#ECS-Type-LinuxParameters-sharedMemorySize), however the ecs-cli still doesn't support [using this field](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cmd-ecs-cli-compose-parameters.html) with docker compose 3 syntax since it was removed...

@OneEyedSpaceFish , no worries re: previous comment, that's why we're here :) Unfortunately, `shm_size` is not available in Fargate and is unlikely to be added due to its effect on...

Hi @dfuentes77 ! Not yet, but we'll keep this updated as we have more info.

Hi @yury-sannikov - Are you still having this issue? I'm so far unable to reproduce this but am still working on it.

@deverton Thanks so much for giving this change a shot and reporting back! Can you elaborate a little bit on what you specifically did to test (e.g., used the general...

Hi @dbogen , thanks for reporting this! So I think I may know what's going on - this action [_does_ reset the session token](https://github.com/aws-actions/configure-aws-credentials/blob/master/index.js#L123-L125) to account for multiple runs, but...

@0mnius does the guidance [above](https://github.com/aws-actions/configure-aws-credentials/issues/100#issuecomment-665284658) make sense? We recently added an [explicit cleanup step](https://github.com/aws-actions/configure-aws-credentials/pull/101) post-job, but your workflow will still need to be broken up like this to see its...

@0mnius I think your "unset AWS env vars" step will work if you pass in empty strings, vs. null (that's how we're executing the cleanup step). Per Clare's comment, jobs...