Live data from Hacker News

Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

news.ycombinator.com

21–30 of 61 posts

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#21
Having watched and participated in an online call (mentioned in another comment here), there were two big things that were strikingly cool about MassDriver:

* It turns the connections between components owned by different IaC tools/systems into _typed_ JSON. Think patch panels, where the connections are fully typed.

* Kelsey mentioned that you can introspect on the metadata in the live system using absolutely anything you want, down to just bash scripts. So it's _very_ hackable

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#22

Oh boy, I have so many questions... * You want to simplify infrastructure, but there's a new learning curve here. Why did you decide to go with diagramming as a solution? What other methods did you evaluate and discard? * How does an organization with existing infrastructure implement Massdriver? * How do you handle edge cases, custom configurations, complex logic, etc.? For example, workflows that use custom scripts…

I'm here for the questions!

> * You want to simplify infrastructure, but there's a new learning curve here. Why did you decide to go with diagramming as a solution? What other methods did you evaluate and discard?

We try to make it so both teams have to learn as little as possible. For the ops team, we are built on the tools those teams are familiar with terraform, helm, ansible, etc. Our extension model is also ops-oriented. You add add'l provisioners by writing Dockerfiles, you enforce pre-validations with JSON Schema (this is the best we could come up w/, but figured it was a safe bet ops-wise since its a part of OpenAPI). For devs, they dont have to learn the ops teams tools to provision infrastructure, they just diagram. Massdriver was originally a wall of YAML to connect all the pieces, but it felt fumbly (and like everything else).

I wanted to make a VR version like something youd see in a bad hacker movie, but Dave told me not to get ahead of myself. :D

> * How does an organization with existing infrastructure implement Massdriver?

Depends on if they have IaC or not. If they have IaC, they publish the modules. If their IaC has a state backend, its usually just good to go, if they are using localfiles for state, we offer a state server they can push state into.

If teams dont have IaC, we run workshops on "reverse terraforming" or "tofuing" and also offer professional services to codify that stuff for you.

> * How do you handle edge cases, custom configurations, complex logic, etc.? For example, workflows that use custom scripts or some other form of band-aid.

As noted above, its all based off common ops tooling. Lets say you wanted to use a new sec scanning tool for IaC and we don't have it in our base provisioners, you can write a dockerfile, build the image, then you can include that scanning tool in any of your massdriver configs. We also have folks doing day-2 operations with the platform. Things like database migrations and whatnot. The lines in the graph actually carry information and can push that info across different tools, so you can do things like have helm charts get information from a terraform run. You can build a provisioner with say the psql tool or a helm chart running bucardo and use it to set up replication between an old and new postgres instance.

> * The visual approach could make it too easy to piece together infrastructure without understanding the implications. How do you prevent developers from creating poorly architected systems just because you make it simple to connect components?

The lines and connections are actually a type system that you can extend (also based on JSON Schema). That way ops teams can encode common things into the platform once. ie. this is how we authenticate to postgres, its an AWS secret, security gruops and these IAM policies. All of that information flows across the line into the other module. The modules reject invalid types so common misconfigurations _cant_ happen. It also lets you "autocomplete" infrastructure. Lets say I'm a dev and I want to deploy a database. I can drop it on the canvas, since massdriver understands the types, it'll automatically connect it to a subnet that dev has access to.

> * When things go wrong, how do developers debug issues at the infrastructure level? Do they reach out to ops?

They may, we have a lot of stuff built in though to make the system as truly self-service (through day 2) as possible. There are runbooks per module so ops teams that have built out a module around a use case can put in common trouble shooting steps and its all accessible from the same graph. Alarms and metrics also show up there. Ops teams can also publish day-2 modules to the catalog, so developers can drag and drop common one-off tasks for maintenance onto their canvas and perform it.

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#23
post #21

Having watched and participated in an online call (mentioned in another comment here), there were two big things that were strikingly cool about MassDriver: * It turns the connections between components owned by different IaC tools/systems into _typed_ JSON. Think patch panels, where the connections are fully typed. * Kelsey mentioned that you can introspect on the metadata in the live system using absolutely anythin…

Hey! How's it been? I followed you on bsky a few days ago!

Glad you liked it! Yeah, the typed connections are a big part of what makes Massdriver powerful. It makes sure infrastructure components integrate right without devs having to worry about all the low-level details.

We're expanding the graph metadata with a querying system coming out of alpha soon that lets you ask stuff like "Where are all my t3 instances in production?" or "Which services are using a kubernetes version less than 1.25" Makes it way easier to understand what’s running where.

And since it’s all API-first, it’s easy to write quick scripts for reporting or automating changes across environments.

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#24

[flagged]

Hey, we're just trying to accelerate your launch ;) I actually have a boilerplating tool I use to set up projects and it picks a random name from a text file at ~/cool-names.txt ...

Kinda reminds me of Canonical MAAS? This seems to operate at a different level though.

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#25
What we've developed that is similar is a meta-layer above terraform to take high-level intent and use that to generate terraform which is then committed to git and auto-actuated.

This is nice because it's still all using git and you can continuously merge in updates as the 'best practice' definitions in the intent get updated. It allows teams to maintain their own customizations and eventually promote them to up to the intent level to capture them as a best practice so other teams can benefit from them.

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#26

Earlier quoted context omitted.

Hey, we're just trying to accelerate your launch ;) I actually have a boilerplating tool I use to set up projects and it picks a random name from a text file at ~/cool-names.txt ...

Kinda reminds me of Canonical MAAS? This seems to operate at a different level though.

I've never seen this. Very cool!

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#27

What we've developed that is similar is a meta-layer above terraform to take high-level intent and use that to generate terraform which is then committed to git and auto-actuated. This is nice because it's still all using git and you can continuously merge in updates as the 'best practice' definitions in the intent get updated. It allows teams to maintain their own customizations and eventually promote them to up to…

I love the idea of high-level intents and abstractions. They’re tough to get right, but when they click, they make dev teams move way faster.

Cloud APIs mix operational and developer concerns, which is part of the problem. A single API call for something like a database forces you to think about instance types, failover strategies, and security settings when all a developer really cares about is, "I need a database that can handle X traffic and supports Y extensions."

I’m actually working on a write-up about abstractions for a CNCF infra white paper and would love to get your thoughts. A lot of teams struggle with the balance between standardization and flexibility, and it sounds like you’ve thought a lot about this too. Let me know if you’d be up for a chat.

Also, here’s a post I wrote about it recently:

https://www.massdriver.cloud/blogs/the-case-for-abstractions...

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#28

Congrats on the launch! I'm not a seasoned DevOps professional but I'm usually the one who ends up provisioning or setting up VMs, serverless stuff and DBs. I just don't understand the product. You make reusable TF modules that have security and policies baked in. Engineers use a UI to hookup those modules and Massdriver does the deployment work for you. Sounds like a godsend for big teams but I don't see pre-funded…

Thanks! And ... you're right! Massdriver isn’t aimed at pre-funded startups. Early-stage teams are often better off with a PaaS or setting things up manually until ops challenges become a bottleneck. Our pricing (5-seat minimum) is intentional to dissuade smaller teams. The real value kicks in when teams need self-service. Ops teams build the modules (not us), and Massdriver acts as the interface. Developers diagram…

So does mass driver become a single source of truth for all information about my companies entire cloud or does it only maintain a track of what's been deployed through it.

I have a friend whos a manager at a large e-commerce company who's teams entire responsibility is to oversee all matters regarding their private and public cloud usage. They also manage and maintain services for internal use.

I would love to recommend you guys to them because managing deployments from over a dozen teams located around the world is hell for them. However they have an extensive private cloud setup, would your solution be as applicable to them as it is to companies running on public clouds?

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#29

Earlier quoted context omitted.

Thanks! And ... you're right! Massdriver isn’t aimed at pre-funded startups. Early-stage teams are often better off with a PaaS or setting things up manually until ops challenges become a bottleneck. Our pricing (5-seat minimum) is intentional to dissuade smaller teams. The real value kicks in when teams need self-service. Ops teams build the modules (not us), and Massdriver acts as the interface. Developers diagram…

So does mass driver become a single source of truth for all information about my companies entire cloud or does it only maintain a track of what's been deployed through it. I have a friend whos a manager at a large e-commerce company who's teams entire responsibility is to oversee all matters regarding their private and public cloud usage. They also manage and maintain services for internal use. I would love to recom…

It is a single source of truth, but only what is managed through the platform.

Private cloud isn't the best experience right now, its possible, but it requires our platform being able to 'get inside' so we either need a control plane exposed to us or a VPN connection in.

Self-hosted is our #1 requested feature, so we are cranking away at it. Its in alpha, and we're looking for testers/feedback. Would love an intro!

Re: Launch HN: Massdriver (YC W22) – Self-serve cloud infra without the red tape

#30

Oh boy, I have so many questions... * You want to simplify infrastructure, but there's a new learning curve here. Why did you decide to go with diagramming as a solution? What other methods did you evaluate and discard? * How does an organization with existing infrastructure implement Massdriver? * How do you handle edge cases, custom configurations, complex logic, etc.? For example, workflows that use custom scripts…

I'm here for the questions! > * You want to simplify infrastructure, but there's a new learning curve here. Why did you decide to go with diagramming as a solution? What other methods did you evaluate and discard? We try to make it so both teams have to learn as little as possible. For the ops team, we are built on the tools those teams are familiar with terraform, helm, ansible, etc. Our extension model is also ops-…

> You add add'l provisioners by writing Dockerfiles, you enforce pre-validations with JSON Schema

That's really neat! Thank you for answering my questions and all the best with your launch!

Post reply on HN