Join us

ContentUpdates and recent posts about k3d..
Link
@kaptain shared a link, 2 weeks, 3 days ago
FAUN.dev()

Kubernetes Configuration Good Practices

Stripped down and sharp, the blog lays out Kubernetes config best practices: keep YAML manifests in version control, use Deployments (not raw Pods), and label like you mean it - semantically, not just alphabet soup. It digs into sneaky pain points too, like how YAML mangles booleans (yes≠true), and .. read more  

Link
@kaptain shared a link, 2 weeks, 3 days ago
FAUN.dev()

You Want Microservices—But Do You Need Them?

Amazon Prime Video ditched its pricey microservices maze and rebuilt as asingle-process monolith, cutting ops costs by 90%. No big press release. Just results. Same move from Twilio Segment. And Shopify. Both pulled their tangled systems back intomodular monoliths- cleaner, faster, easier to test, a.. read more  

You Want Microservices—But Do You Need Them?
Link
@kaptain shared a link, 2 weeks, 3 days ago
FAUN.dev()

Turning Kubernetes Last Access to Kubernetes Least Access Using KIEMPossible

KIEMPossible is a new open-source tool for Kubernetes entitlement cleanup. It maps out who has access to what - roles, entities, permissions - and shows how those are actually used across your clusters. Think of it as a permission microscope for AKS, EKS, GKE, and even the DIY K8s crowd. It breaks d.. read more  

Turning Kubernetes Last Access to Kubernetes Least Access Using KIEMPossible
Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

How I Built a 100% Offline “Second Brain” for Engineering Docs using Docker & Llama 3 (No OpenAI)

Senior Automation Engineer built an offline RAG system for technical documents using Ollama, Llama 3, and ChromaDB in a Dockerized microservices architecture. The system enables efficient retrieval and generation of information from PDFs with a streamlined UI. The deployment package, including compl.. read more  

Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

How to Evaluate LLMs Without Opening Your Wallet

A new mock-based framework lets QA and automation folks stress-test LLM outputs - no API calls, no surprise charges. It runs entirely local, usingpytest fixtures, structured test flows, and JSON schema checks to keep things tight. Test logic stays modular. Cross-validation’s baked in. And if you nee.. read more  

Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

I tested ChatGPT’s backend API using RENTGEN, and found more issues than expected

A closer look at OpenAI’s API uncovers some shaky ground: misconfiguredCORS headers, missingX-Frame-Options, noinput validation, and borkedHTTP status handling. Large uploads? Boom..crash!CORS preflightrequests? Straight-up denied. So much for smooth browser support... read more  

I tested ChatGPT’s backend API using RENTGEN, and found more issues than expected
Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

Datacenters in space are a terrible, horrible, no good idea.

A former NASA engineer - now a Google Cloud AI infra alum - rips apart the idea of building GPU datacenters in orbit. His verdict: space is a terrible server rack. Power delivery? A nightmare. Heat dissipation? Worse in a vacuum. Radiation? Frying time. Even a 200kW solar rig (think ISS-sized) could.. read more  

Datacenters in space are a terrible, horrible, no good idea.
Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

Writing a good CLAUDE.md

Anthropic’s Claude Code now deprioritizes parts of the root context file it sees as irrelevant. It still reads the file every session, but won’t waste cycles on side quests. The message to devs: stop stuffing it with catch-all instructions. Instead, use modular context that unfolds as needed - think.. read more  

Writing a good CLAUDE.md
Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

Cato CTRL™ Threat Research: HashJack - Novel Indirect Prompt Injection Against AI Browser Assistants

A new attack method -HashJack- shows how AI browsers can be tricked with nothing more than a URL fragment. It works like this: drop malicious instructions after the#in a link, and AI copilots likeComet,Copilot for Edge, andGemini for Chromemight swallow them whole. No need to hack the site. The LLM .. read more  

Link
@kala shared a link, 2 weeks, 3 days ago
FAUN.dev()

1,500+ PRs Later: Spotify’s Journey with Our Background Coding Agent

Spotify just gave its internal Fleet Management tooling a serious brain upgrade. They've wired inAI coding agentsthat now handle source-to-source transformations across repos - automatically. So far? Over 1,500 AI-generated PRs pushed. Not just lint fixes - these include heavy-duty migrations. They'.. read more  

1,500+ PRs Later: Spotify’s Journey with Our Background Coding Agent
k3d is an open-source utility designed to simplify running Kubernetes locally by wrapping K3s (Rancher’s lightweight Kubernetes distribution) inside Docker containers. Instead of creating virtual machines, k3d uses Docker as the execution layer, allowing developers to spin up multi-node Kubernetes clusters in seconds using minimal system resources.

k3d is especially popular for local development, CI pipelines, demos, and testing Kubernetes-native applications. It supports advanced setups such as multi-node clusters, load balancers, custom container registries, port mappings, and volume mounts, while remaining easy to tear down and recreate.

Because it uses K3s, k3d inherits a simplified control plane, bundled components, and reduced memory footprint compared to full Kubernetes distributions. This makes it ideal for developers who want a realistic Kubernetes environment without the overhead of tools like Minikube or full VM-based clusters.

k3d integrates cleanly with common Kubernetes workflows and tools such as kubectl, Helm, Skaffold, and Argo CD. It is frequently used to validate manifests, test Helm charts, and simulate production-like environments locally before deploying to cloud or on-prem clusters.