Best products from r/kubernetes

We found 8 comments on r/kubernetes discussing the most recommended products. We ran sentiment analysis on each of these comments to determine how redditors feel about different products. We found 7 products and ranked them based on the amount of positive reactions they received. Here are the top 20.

Top comments mentioning 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.