I wrote a blog post detailing my homelab setup throughout 2023. It includes the hardware I use, as well as the applications I selfhosted. I also detailed how I automate my home Kubernetes cluster and how I back up my data.

  • fl42v@lemmy.ml
    link
    fedilink
    English
    arrow-up
    9
    ·
    8 months ago

    ResizedImage_2024-01-31_00-06-56_6577

    makes me wander, what ai/prompt did you use to generate the pic. Looks neat!

    • mudkip@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      I use DALL·E via ChatGPT Plus. The prompt is the first two paragraph in this post plus “Draw a picture for this article titled My 2023 Homelab Setup”.

      I retried several times and picked my favorite one :)

  • 1984@lemmy.today
    link
    fedilink
    English
    arrow-up
    7
    ·
    8 months ago

    I really like self hosting too but Kubernetes is overkill in complexity. I use nomad. :)

    • diminou@lemmy.zip
      link
      fedilink
      English
      arrow-up
      1
      ·
      8 months ago

      In a cluster? I’m actually thinking about using Nomad between my three sff pc that I use as servers, but I have no clue as to how to sync storage between them (container side I mean, with nextcloud data for example)?

      • johntash@eviltoast.org
        link
        fedilink
        English
        arrow-up
        1
        ·
        8 months ago

        Storage is hard to do right :(

        If you can get away with it, use a separate NAS that exposes NFS to your other machines. Iscsi with a csi might be an option too.

        For databases, it’s usually better to not put their data on shared storage and instead use the databases built in replication (and take backups!).

        But if you want to go down the rabbit hole, check out ceph, glusterfs, moosefs, seaweedfs, juicefs, and garagehq.

        Most shared file systems aren’t fully posix compliant so things like file locking may not work. This affects databases and sqlite a lot. Glusterfs and moosefs seen to behave the best imo with sqlite db files. Seaweedfs should as well, but I’m still working on testing it.

  • walden@sub.wetshaving.social
    link
    fedilink
    English
    arrow-up
    2
    ·
    8 months ago

    Nice, gave me a couple of ideas about some other software I might be interested in hosting for myself.

    I couldn’t get the top-level navigation shortcuts to work in your blog, just FYI.

  • alienscience@programming.dev
    link
    fedilink
    English
    arrow-up
    2
    ·
    8 months ago

    The manifest of my Kubernetes cluster is managed in a Git repository and is automatically deployed via a GitOps tool named Flux CD. When I push changes to the repository, such as adding a new application or upgrading Docker images, the deployment occurs within a few minutes.

    This is the way.

    Although I use Flux ImageUpdateAutomation instead of Renovate Bot. Did you consider using Flux to do auto updates? Are there any downsides that made you choose Renovate Bot instead?