Hacker News new | ask | show | jobs
by Gigablah 3994 days ago
I'll take a stab at this.

Atlas is an application that glues together four different projects by Hashicorp: Packer, Vagrant, Terraform and Consul.

Packer creates virtual machine images (also has Docker support). Vagrant will create, provision and run them for you (so a bit of overlap with Packer there). Terraform is basically a platform agnostic version of Amazon CloudFormation (create and manage infrastructure via configuration). Consul is a service discovery solution.

All of these tools used in conjunction can help you set up a machine, or a cluster of machines, on any supported provider, that will run your application images, all from a set of configuration files. More importantly, changes to your infrastructure and application environment are now a matter of editing configuration.

Atlas places a UI in front of these tools and allows you to execute commands and monitor their status.

2 comments

So like, this is Hashicorp's answer to Kubernetes.

It's a sweeping ambitious suite of tools that I'd use to essentially create my own Heroku out of raw machine instances, of my own or from commodity providers.

And Atlas is to those suite of tools like how GitHub is to git, kinda.
That makes more sense, especially the one line description: Atlas places a UI in front of these tools and allows you to execute commands and monitor their status.

Companies are willing to pay for better user interfaces and better monitoring.

But, have we forgotten about hello world?

What this really needs is a barebones absolute minimum-step demo page showing "how to reliably deploy todo list webapp" for immediate benefit. Then maybe add failover and HA and other more useful minimum-step demos building on top of prior examples. (Maybe it exists? One didn't jump out at me and I didn't click around much to discover further.)

Show, don't tell.