Live data from Hacker News

Ask HN: Serverless Functions Without the AWS/Azure/GOOG Complexity?

news.ycombinator.com

1–9 of 9 posts

Re: Ask HN: Serverless Functions Without the AWS/Azure/GOOG Complexity?

#3
I'm involved with OPS/Nanos which deploy applications as unikernels to AWS && Google Cloud. The deploy and management of them have a very serverless like feel as you can't ssh into them nor can you install random crap on them once they are deployed:

I even called them "Stateful Serverless" in a recent article:

https://dev.to/eyberg/stateful-serverless-with-unikernels-4m...

A few cool things versus something like lambda are that they are very much cloud agnostic and they are stateful by default (although very easy to run them as transient workloads as well).

If you want to check it out - open source/free at:

https://ops.city

Re: Ask HN: Serverless Functions Without the AWS/Azure/GOOG Complexity?

#8
post #2

https://serverless.com/ is a layer of abstraction on top of the big providers

This is the way to go. Follow the guide at https://serverless-stack.com/ and you should be golden.

I’m an awful programmer and even I found serverless stack to be surprisingly easy to follow and understand.