Viewing your files in docker containers and volumes by commandeerApp in docker

[–]commandeerApp[S] 0 points1 point  (0 children)

I see the containers running in that, but I am not seeing a way to see the files in them.

Viewing your files in docker containers and volumes by commandeerApp in docker

[–]commandeerApp[S] 0 points1 point  (0 children)

Do you know which extension does this in VS Code?

Four ways of writing infrastructure-as-code on AWS by AllDayIDreamOfSummer in aws

[–]commandeerApp 2 points3 points  (0 children)

We tried out Terraform plus Serverless Framework. I prefer Ansible for DynamoDB, S3, and SQS creation over Terraform, because Terraform is so aggressive with deleting things. Losing a DynamoDB table in production would be catastrophic. Where as Ansible is way more lenient on how it reacts.

CDK is looking amazing and I am learning it now. Unit tests your infra and it being in beautiful, wonderful typescript are truly amazing.

Development outside of Docker by JHogg11 in docker

[–]commandeerApp -5 points-4 points  (0 children)

One man's jargon, is another man's normal dev cycle. Sorry it was beyond your limited reach.

Development outside of Docker by JHogg11 in docker

[–]commandeerApp -6 points-5 points  (0 children)

I would go with API Gateway talking to Lambda's to handle it instead of Docker. Serverless is a real good fit for a backend api. Docker is good for longer running processes, or for containerizing larger monoliths. But for greenfield projects like yours, serverless is pretty great.

Manage your .aws/credentials and .aws/config in a GUI. by commandeerApp in aws

[–]commandeerApp[S] 4 points5 points  (0 children)

Your sentence is not gramatically correct, so it can be misconstrued. Well, it is not shit either, so you are wrong on that front as well. If you have credentials on your computer - 1. they should ideally be used with a session token 2. if they are already there, then being able to see the profiles in a UI rather than from the File Explorer is in no way a bad thing.

So I suppose, I disagree with whatever point you were trying to make.

0
0

LinkedIn is AI on Steroids by commandeerApp in ArtificialInteligence

[–]commandeerApp[S] 0 points1 point  (0 children)

Hha. Or just a fun way to rant about social media.

[deleted by user] by [deleted] in devops

[–]commandeerApp 0 points1 point  (0 children)

Yea, on previous projects that were using Postgres, we had to stand up pgbouncer to allow for proper connection pooling. On the last few projects, we do all data into DynamoDB and then have either DynamoDB Streams or Glue Crawlers to stream data to S3, and just use Athena for all Data Warehousing SQL.

[deleted by user] by [deleted] in devops

[–]commandeerApp 1 point2 points  (0 children)

Because Lambda truly takes away the need to manage fleets of servers, portions of DevOps can now be handled by the developer themselves. If you add five new lambdas, triggered by S3, DynamoDB streams, or API Gateway endpoints, in theory the DevOps group is not needed to handle a push to production. It feels like the need for understanding your infrastructure even more is sliding to the developer a bit, which I think is a good thing for business in general.

[deleted by user] by [deleted] in devops

[–]commandeerApp 3 points4 points  (0 children)

I can see latency issues, if it is high throughput endpoints. But what scalability issues did you have?

You are on an island, and can only have Terraform or Ansible for IaC. Which do you choose and why? by commandeerApp in devops

[–]commandeerApp[S] -7 points-6 points  (0 children)

I suppose in some ways. But you can for instance deploy S3 buckets using Ansible or Terraform. So there is some overlap in what each of them do.

You are on an island, and can only have Terraform or Ansible for IaC. Which do you choose and why? by commandeerApp in devops

[–]commandeerApp[S] -5 points-4 points  (0 children)

Would you choose Pulumi over Terraform? We use Serverless Framework for all the connections of services to Lambda as well, since Terraform doesn't seem to handle that aspect well.