▲ | iTokio 4 days ago | |||||||||||||||||||||||||||||||
Isn’t that limited to a single node? How would you configure a cluster? I’m trying to explore lightweight alternatives to kubernetes, such as docker swarm, but I think that the options are limited if you must support clusters with equivalent of pods and services at least. | ||||||||||||||||||||||||||||||||
▲ | mands 4 days ago | parent | next [-] | |||||||||||||||||||||||||||||||
I've found you can get pretty far with a couple of fixed nodes and scaling vertically before bringing in k8s these days. Right now I'm running, - podman, with quadlet to orchestrate both single containers and `pods` using their k8s-compatible yaml definition - systemd for other services - you can control and harden services via systemd pretty well (see https://news.ycombinator.com/item?id=44937550 from the other day). I prefer using systemd directly for Java services over containers, seems to work better imo - Pyinfra (https://pyinfra.com/) to manage and provision the VMs and services - Fedora CoreOS as an immutable base OS with regular automatic updates All seems to be working really well. | ||||||||||||||||||||||||||||||||
▲ | jabl 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
> Isn’t that limited to a single node? Yes. Though unless you have a very dynamic environment maybe statically assigning containers to hosts isn't an insurmountable burden? | ||||||||||||||||||||||||||||||||
▲ | sc68cal 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
> How would you configure a cluster? So, unless you have a service that requires a fixed number of running instances that is not the same count as the number of servers, I would argue that maybe you don't need Kubernetes. For example, I built up a Django web application and a set of Celery workers, and just have the same pod running on 8 servers, and I just use an Ansible playbook that creates the podman pod and runs the containers in the pod. | ||||||||||||||||||||||||||||||||
▲ | gf000 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
In the off chance your search didn't expand to k3s, I can semi-recommend it. My setup is a bit clunky (having a Hetzner cloud instance as controller and a local server as a node throught Tailscale), from which I get an occasional strange error that k3s pods fail to resolve another pod's domain without me having to re-create the DNS resolver system pod, and that I so far failed at getting Velero backups to work with k3s's local storage providers, but otherwise it is pretty decent. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | pianopatrick 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I've been reading and watching videos about how you can use Ansible with Podman as a simpler alternative to Kubernetes. Basically Ansible just SSHs into each server and uses podman to start up the various pods / containers etc. that you specify. I have not tried this yet though so take this idea with a grain of salt. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | MrDrMcCoy 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
HashiCorp Nomad is probably the only real alternative. It's what in using, and I like it better than the overcomplexity of k8s. | ||||||||||||||||||||||||||||||||
▲ | osigurdson 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
>> lightweight alternatives to kubernetes microk8s seems exceedingly simple to setup and use. k3s is easy as well. | ||||||||||||||||||||||||||||||||
▲ | zelphirkalt 4 days ago | parent | prev [-] | |||||||||||||||||||||||||||||||
I once tried Nomad for a very brief moment. Not sure if it fits your bill. | ||||||||||||||||||||||||||||||||
|