ContentPosts from @kylejomo..
Link
@kaptain shared a link, 10 hours ago
FAUN.dev

Bootstrapping Rancher’s RKE2 Kubernetes Cluster on a Podman VM with Cilium CNI and MetalLB LoadBalancer

Running RKE2 with Cilium and MetalLB in a lightweight Podman VM on macOS enables experimentation with Kubernetes. Unique network challenges require SSH port forwarding for service exposure...

Link
@kaptain shared a link, 10 hours ago
FAUN.dev

7 Common Kubernetes Pitfalls (and How I Learned to Avoid Them)

Seven ways folks trip over Kubernetes - each more avoidable than the last. Top offenses: skippingresource requests/limits, forgettinghealth probes, trustingephemeral logsthat vanish when you need them. Reusing configs across dev and prod? Still a bad idea. Pushing off observability until it’s on fir..

Link
@kaptain shared a link, 10 hours ago
FAUN.dev

How to manage EKS Pod Identities at scale using Argo CD and AWS ACK

AWS shows how to wire upArgo CDwithAWS Controllers for Kubernetes (ACK)to automateEKS Pod Identityfor IAM roles - GitOps-style. The catch? The Pod Identity API has a lag. So they bolt on apre-deployment validation jobto wait-and-confirm that the IAM role's actually bound before app pods come online...

Link
@kaptain shared a link, 10 hours ago
FAUN.dev

How We Saved $500,000 Per Year by Rolling Our Own “S3”

Nanit ditched S3’s PutObject-heavy ingest path and built a customRust-based in-memory landing zone (N3). It cut ~$500K/year in storage ops. N3 grabs short-lived video chunks straight into RAM and only spills to S3 when it has to. Ordering stays tight thanks toSQS FIFO, and fallback kicks in clean wh..

How We Saved $500,000 Per Year by Rolling Our Own “S3”
Link
@kaptain shared a link, 10 hours ago
FAUN.dev

Spotlight on Policy Working Group

The Kubernetes Policy Working Group got busy turning good intentions into real specs. They rolled out thePolicy Reports API, dropped best-practice docs worth reading, and helped steerValidatingAdmissionPolicyandMutatingAdmissionPolicytoward GA. Their work pulled inSIG Auth,SIG Security, and anyone e..

Link
@kaptain shared a link, 10 hours ago
FAUN.dev

Replaying massive data in a non-production environment using Pekko Streams and Kubernetes Pekko Cluster

DoubleVerify built a traffic replay tool that actually scales. It runs onPekko StreamsandPekko Cluster, pumping real production-like traffic into non-prod setups. Throttlenails the RPS with precision for functional tests.Distributed datasyncs stressful loads across cluster nodes without breaking a s..

Replaying massive data in a non-production environment using Pekko Streams and Kubernetes Pekko Cluster
Link
@kaptain shared a link, 10 hours ago
FAUN.dev

Exposing Kubernetes Services Without Cloud LoadBalancers: A Practical Guide

Bare-metal Kubernetes just got a cloud-style glow-up. By wiring upMetalLBin layer2 mode with theNGINX ingress controller, the setup exposesLoadBalancer-typeservices—no cloud provider in sight. MetalLB dishes out static, LAN-routable IPs. NGINX funnels external traffic to internalClusterIPservices th..

Exposing Kubernetes Services Without Cloud LoadBalancers: A Practical Guide
Link
@kala shared a link, 10 hours ago
FAUN.dev

I regret building this $3000 Pi AI cluster

A 10-node Raspberry Pi 5 cluster built with16GB CM5 Lite modulestopped out at325 Gflops- then got lapped by an $8K x86 Framework PC cluster running4x faster. On the bright side? The Pi setup edged out in energy efficiency when pushed to thermal limits. It came with160 GB total RAM, but that didn’t h..

I regret building this $3000 Pi AI cluster
Link
@kala shared a link, 10 hours ago
FAUN.dev

Why open source may not survive the rise of generative AI

Generative AI is snapping the attribution chain thatcopyleft licenseslike theGNU GPLrely on. Without clear provenance, license terms get lost. Compliance? Forget it. The give-and-take that powersFOSSstops giving - or taking...

Why open source may not survive the rise of generative AI
Link
@kala shared a link, 10 hours ago
FAUN.dev

Post-Training Generative Recommenders with Advantage-Weighted Supervised Finetuning

Generative recommender systems need more than just observed user behavior to make accurate recommendations. Introducing A-SFT algorithm improves alignment between pre-trained models and reward models for more effective post-training...