Readit News logoReadit News
Posted by u/travisd 4 years ago
Ask HN: How to deploy VMs from CI/CD in 2021?
Deploying container images is pretty straightforward nowadays (e.g., using Helm with Kubernetes or using fully managed services like lambdas).

How do people deploy VMs? Curious to hear from people of various team sizes (I imagine the way a 100+ person engineering org deploys VMs is different than a 10 person engineering team).

joana035 · 4 years ago
The same way and principles, actually containers mimics the golden image pattern used in physical infrastructure.

You need an image (qcow, raw, etc) of your vm with the things you want installed on it. Then you distribute it across computers that will used it through qemu, libvirt, etc.

It's also interesting to see how pxe works :-)

yuppie_scum · 4 years ago
Hashicorp Terraform.