If you can devote some time and learn the underpinnings, Kubernetes is great for personal projects. I personally use it for 1 business website, 1 blog, 2 3 tier applications (backs are SQLite though) and 1 3-tier client project. Where kubernetes shines is that that it handles most things in a principled, and self-consistent manner -- once you've made your way up the learning curve, you can think <i>in terms</i> of kubernetes without having many hiccups.<p>I'd argue that a lot of the complexity people find in Kubernetes is <i>essential</i> when you consider what it takes to run an application in any kind of robust manner. Take the simplest example -- reverse proxying to an instance of an application, a process (containerized or not) that's bound to a local port on the machine. If you want to edit your nginx config manually to add new upstreams when you deploy another process, then reload nginx be my guest. If you find and setup tooling that helps you do this by integrating with nginx directly or your app runtime that's even better. Kubernetes solves this problem once and for all consistently for a large amount of cases, regardless of whether you use haproxy, nginx, traefik, or whatever else for your "Ingress Controller". In Kubernetes, you push the state you want your world to be in to the control plane, and it makes it so or tells you why not.<p>Of course, the cases where Kubernetes might not make sense are many:<p>- Still learning/into doing very manual server management (i.e. systemd, process management, user management) -- ansible is the better pick here<p>- Not using containerization (you really kinda should be at this point, if you read past the hype train there's valuable tech/concepts below)<p>- Not interested in packaged solutions for the issues that kubernetes solves in a principled way that you could solve relatively quickly/well adhoc.<p>- Launching/planning on launching a relatively small amount of services<p>- Are running on a relatively small machine (I have a slightly beefy dedicated server, so I'm interested in efficiently running lots of things).<p>A lower-risk/simpler solution for personal projects might be something like Dokku[0], or Flynn[1]. In the containerized route, there's Docker Swarm[2] +/- Compose[3].<p>Here's an example -- I lightly/lazily run <a href="https://techjobs.tokyo" rel="nofollow">https://techjobs.tokyo</a> (which is deployed on my single-node k8s cluster), and this past weekend I put up <a href="https://techjobs.osaka" rel="nofollow">https://techjobs.osaka</a>. The application itself was generically written so all I had to do for the most part was swap out files (for the front page) and environment variables -- this meant that deploying a completely separate 3-tier application (to be fair the backend is SQLite), only consisted of messing with YAML files. This is possible in other setups, but the number of files and things with inconsistent/different/incoherent APIs you need to navigate is large -- systemd, nginx, certbot, docker (instances of the backend/frontend). Kubernetes simplified deploying this additional almost identical application in a robust manner massively for me. After making the resources, bits of kubernetes got around to making sure things could run right, scale if necessary, retrieve TLS certificates, etc -- all of this is possible to set up manually on a server but I'm also in a weird spot where it's something I probably won't do very often (making a whole new region for an existing webapp), so maybe it wouldn't be a good idea to write a super generic ansible script (assuming I was automating the deployment but not with kubernetes).<p>Of course, Kubernetes is not without it's warts -- I have more than once found myself in a corner off the beaten path thoroughly confused about what was happening and sometimes it took days to fix, but that's mostly because of my penchant to use relatively new/young/burgeoning technology (for example kube-router recently instead of canal for routing), and lack of business-value to my projects (if my blog goes down for a day, I don't really mind).<p>[0]: <a href="http://dokku.viewdocs.io/dokku" rel="nofollow">http://dokku.viewdocs.io/dokku</a><p>[1]: <a href="https://github.com/flynn/flynn/" rel="nofollow">https://github.com/flynn/flynn/</a><p>[2]: <a href="https://docs.docker.com/engine/swarm/" rel="nofollow">https://docs.docker.com/engine/swarm/</a><p>[3]: <a href="https://docs.docker.com/compose/" rel="nofollow">https://docs.docker.com/compose/</a>