I would like to have a mechanism to set up a server automagically…
Similarly I would like to set up my user account settings (Tmux plugins, .zshrc and vim settings, etc) that I can replicate in multiple machines via a script (I have a custom script for this but I want a more solid alternative)
Thoughts on what infra-as-code solution would work best? Any similar experiences or use cases with one Thanks!
Cc @selfhost@lemmy.ml @selfhosted@lemmy.world
“I want to automatically build VMs, networks, and other infra in the cloud using repeatable specifications.”
Terraform
“I want to host my own cloud (either by paying for bare metal hosting, or providing my own) that I can deploy those VMs on.”
Openstack or Openshift
“I want to automatically configure servers after deployment.”
Ansible
“I want to deploy services to those servers in a simple, repeatable fashion.”
Docker, Podman, or Kubernetes.
deleted by creator
I would like to have a mechanism to set up a server automagically…
NixOS.
Similarly I would like to set up my user account settings
Home-manager.
You’re probably looking for some sort of configuration management tool like chef, ansible, saltstack, or puppet. If you’re not already familiar with one, ansible is pretty easy to get started with.
If you’re also wanting something that can create the server itself, terraform is great and supports most cloud providers and supervisors.
If it’s because you set new servers very frequently: Ansible
If it’s because moving stuff once every two years to a new server is an hassle: everything in custom docker images
I think you’re looking for Ansible. Have fun!
The difference between an Anible playbook and a script, is Ansible has a ‘check’, ‘change’, ‘verify’ pattern, and is declarative (meaning that once the playbook is made, it tends to keep working on future versions of Ansible.)
Ehhh… as someone who does devops, you should dive into ansible core changelogs on github sometime ;)
I assume you mean to check on his often they’re is the breaking changes? :)
Declarative style isn’t perfect, but it’s a massive improvement from straight bash scripting.
💯
We’re an ansible shop and yeah it’s better than bash scripting (where it makes sense) but ansible… man it does have some peculiarities :/
Isn’t that Docker?
Containers have to run somewhere too…