architecture

javahippie 2020-09-23T06:55:38.000800Z

Yes, you are right about that. DO is not as “comfortable” when it comes to deployment.

javahippie 2020-09-23T06:56:56.001900Z

I did not know about render, looks interesting!

pithyless 2020-09-23T07:10:57.003Z

DO + managed DBs + dokku is also an option, if looking for a heroku-like experience

😎 1
lukasz 2020-09-23T14:03:38.003300Z

IIRC, dokku is not distributed right?

lukasz 2020-09-23T14:03:44.003500Z

just runs on a single box

pithyless 2020-09-23T14:19:07.006100Z

True, they've got some kind of nomad or k8s scheduler - but if you're going down that route, probably easier to go for private services. http://render.com looks like they have some pretty competitive pricing!

pithyless 2020-09-23T14:21:42.006800Z

(probably the devil is in the details... ram / cpu / ssd / network - it all adds up :))

lukasz 2020-09-23T14:25:50.007200Z

Oh definitely. Deploying things is such a rabbit hole

emccue 2020-09-23T17:50:12.007500Z

Very much already AWS locked in, so thats not an issue

2020-09-23T18:26:17.009500Z

I think to some degree a lot of the ops(automation, containers, etc) stuff you see is driven by the needs and trade offs of very large shops. Large shops can do things like tasking an engineer (or teams of engineers) to work on automation can free up other engineers to do other things

2020-09-23T18:27:10.010400Z

but the constant factors (that don't scale with org size) are going to be a real headache trying to pursue that stuff if you are a small shop

2020-09-23T18:31:05.012300Z

so maybe the best advice for someone at a small shop is to examine any solution from a large shop with a very critical eye before adopting it.

2020-09-23T18:39:35.013700Z

I would also lean hard into traditional unix sys admin stuff. Write shell scripts, write expect scripts. Bash combined with the awscli and jq can move mountains

lukasz 2020-09-23T19:37:40.013900Z

indeed

lukasz 2020-09-23T19:38:02.014400Z

my 4 people team is running on ECS, it's all glued with a bit of terrafrom, bash and jq

lukasz 2020-09-23T19:38:19.014700Z

oh, and some babashka here and there