Skip Navigation
Jump
How do you guys DNS?
  • CoreDNS as my central DNS manager in my home(lab).

    Currently two nodes are running CoreDNS with the same config for resilence. I really hate long DNS chains, because if something breaks in between, DNS is out ... wife and children scream ... me unhappy.

    Current setup with five zones:

    - .fritz.box - resolved to the provider-supplied router which also manages my network printer

    - .home - forwarded to my UDM which runs DHCP in my home

    - .lab.home - zone file which define s a wildcard to resolve all requests to my Traefik reverse proxy

    - .consul - forwarded to Consul service catalog for service discovery

    - . - everything else (internet) is either forwarded to AdGuard Home (and then to Cloudflare DNS) if the AdGuard service is running. If not, forward directly to the UDM. Nomad + Consul are amazing for this kind of templating and dynamic re-configuration.

    Works quite well for me :-)

    1
  • Jump
    Orchestration software for very small server setup, like very very small one? (k8s, nomad, etc)
  • Same here, had a deeper look at MicroK8s and decided to go the Nomad route...

    Unfortunately, I'm just running a homelab setup. With two publicly exposed services, but noting enterprise like.

    Does that count as "in producion"? If yes, what are your questions?

    1
  • Jump
    Orchestration software for very small server setup, like very very small one? (k8s, nomad, etc)
  • Nomad is totally fine to run on low-spec machines. On my homelab, I have the following running Nomad + Consul:

    • VM with 1GB as arbiter
    • 2 MFF PCs with 16GB and i5-6500T

    Totally fine to run client and server on the same machine in a non-enterprise setup.

    One stand-alone machine should also work, you just lose the failover capabilities.

    1
  • Jump
    Ways to backup your docker volumes ?
  • IMHO not really.

    There is the slight chance that DBs get inconsistent with backing up hot DB files, but in a homelab with minimal load this is usually not an issue. Same for NFS.

    Just make sure you have older backups, too. Just in case the last backup was not good.

    1
  • Jump
    What Are Your Favorite Alternatives to Gmail or Outlook?
  • Agree with Proton Mail, awesome service.

    Was thinking about self-hosting my email server, but Proton is just €40/year for me. Even if I value my time at only €20/hour, that means I have just two hours per year to fix issues with my email to break even.

    Sure, this is /r/selfhosted, but issues with email are usually not some config changes on my side, which can be easily resolved by rolling back my latest changes from git.

    Most of the issues arise from some asshat at email provider X deciding that I'm no longer trusted and blacklisting me. Resolving that issue is more like office politics than tinkering with my setup. Pretty happy if I can live my non-work life without any additional office politics.

    Thanks, but no thanks.

    1
  • Jump
    Container managements
  • Just have a look at Nomad.

    Had a single docker machine before, and wanted to upgrade to a more distributed setup. Works like a charm now 😀

    IMHO Nomad is in the sweet spot between Docker and K8s: more capable than docker, but still not the mess of disparate moving parts that is K8s.

    1