this post was submitted on 16 Mar 2025
610 points (99.0% liked)

Technology

66584 readers
4177 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] cley_faye@lemmy.world 64 points 11 hours ago (3 children)

Just checked the part about self-hosting. While it's probably possible to handle things with a less heavy approach, their only "easy to use" example right now is to have a full-blown kubernetes cluster at hand or run locally in the source directory. That's a bit much.

[–] nekusoul@lemmy.nekusoul.de 8 points 2 hours ago* (last edited 2 hours ago)

In the README there's also instructions for Docker Compose, although it's quite the compose file, with SIXTEEN containers defined. Not something I'd want to self-host.

[–] Tramort@programming.dev 1 points 1 hour ago

Please develop this self hosted version using sandstorm

It makes hosting a breeze with one click installation

[–] Lodra@programming.dev 12 points 9 hours ago (2 children)

Honestly, k8s is super easy and very lightweight to run locally if you know the rights tools. There are a few good options but I prefer k3d. I can install Docker/k3d and also build a local cluster running in maybe 2 minutes. It’s excellent for local dev. Even good for production in some niche scenarios

[–] cley_faye@lemmy.world 2 points 1 hour ago

I don't like the approach of piling more things on top of even more things to achieve the same goal as the base, frankly speaking. A "local" kubernetes cluster serve no purpose other than incredible complexity for little to no gain over a mere docker-compose. And a small cluster would work equally well with docker swarm.

A service, even made of multiple parts, should always be described that way. It's easy to move "up" the stack of complexity, if you so desire. Having "have a k8s cluster with helm" working as the base requirement sounds insane to me.

[–] Metju@lemmy.world 1 points 1 hour ago

Seconding k3d (and, by extension, k3s). If you're in a market for sth suitable for more upstream-compliant clustering solution (k3s uses SQLite instead of etcd, iirc), RKE2 is also a great choice