Top products from r/kubernetes

We found 8 product mentions on r/kubernetes. We ranked the 7 resulting products by number of redditors who mentioned them. Here are the top 20.

Next page

Top comments that mention products on r/kubernetes:

u/warpigg · 8 pointsr/kubernetes
u/takenoteswhatnottodo · 2 pointsr/kubernetes

Reading Programming Kubernetes, which provides a detailed look at some of the internals of Kubernetes, as well as guides you through the process of creating your own controllers and custom API servers. Hoping to eventually apply that knowledge by contributing to one of the K8s-related projects like Knative or Istio.

u/moduspwnens14 · 2 pointsr/kubernetes

I just have a single node k8s cluster running on one of these small, fanless PCs. It runs various things for me, like a radius server, Cloudflare's DNS-over-HTTPS resolver, an OpenVPN server, an Airplay receiver, and the Java-based web app controller for my Unifi equipment.

It gives me a place to run arbitrary things in a generic way where they won't tromp over each other, and through using PVCs I can ensure all of their persistent data is stored in the same high level directory for easy backups.

It's not highly available, but to me it's better than just installing those things and then having to maintain the server as a "pet". Besides, almost all of the difficulty in running Kubernetes goes away if you don't have to worry about multi-node networking, persistent volumes, or load balancing.