Join us

ContentUpdates and recent posts about k3d..
Discovery IconThat's all about @k3d — explore more posts below...
Link
@kala shared a link, 1 day, 2 hours ago
FAUN.dev()

Realtime Prompting Guide

OpenAI shipsgpt-realtimeand declares GA for theRealtime API. It's a speech-to-speech model that tightens instruction-following, steadiestool calling, and lifts voice fidelity. Latency drops. True realtime agents become possible. The release prescribesprompt skeletons,JSON envelopetool outputs,sessio.. read more  

Realtime Prompting Guide
Link
@kala shared a link, 1 day, 2 hours ago
FAUN.dev()

Do you need an MCP to build your native app?

Do you need an MCP to build your native app? Surprisingly, modern agents succeed either way. The real difference is how much time, cost, and context you waste along the way... read more  

Do you need an MCP to build your native app?
Link
@kala shared a link, 1 day, 2 hours ago
FAUN.dev()

The Pentagon is making a mistake by threatening Anthropic

Anthropic's Claude Gov, optimized for national security uses, has fewer restrictions than regular versions. The Pentagon is threatening retaliation if Anthropic does not waive these restrictions by Friday, including invoking the Defense Production Act or declaring Anthropic a supply chain risk. Anth.. read more  

Link
@kala shared a link, 1 day, 2 hours ago
FAUN.dev()

Introducing helm

helm usesTypeScripttypes to registerskillsas typed functions with structured I/O. Permissions follow a clear precedence: exact→wildcard→skill→global. Agents get a keywordsearchtool and a code-execution tool that runs JS inside anSESsandbox. A recursiveproxyforwards calls overIPCto the parent, which .. read more  

Introducing helm
Link
@kaptain shared a link, 1 day, 2 hours ago
FAUN.dev()

Before You Migrate: Five Surprising Ingress-NGINX Behaviors You Need to Know

The K8s blog exposesIngress-NGINXdefaults that clash withGateway API. These include case-insensitive prefix regexes. Host-wide annotation effects. Path rewrites. Slash redirects. URL normalization. Kubernetes retiresIngress-NGINXinMarch 2026.Gateway API 1.5graduatesListenerSetand theHTTPRoute CORS.. read more  

Link
@kaptain shared a link, 1 day, 2 hours ago
FAUN.dev()

From Chaos to Clarity: How We Built a Self-Healing CI/CD Pipeline That Talks to JIRA

Transitioning JIRA tickets to trigger deployments was key for this team struggling with manual deploys, leading to significant savings in time and reduction in errors. The architecture involved a JIRA Controller Pipeline, a Project Deployment Pipeline, and a JIRA Manager Pipeline, all aimed at seaml.. read more  

From Chaos to Clarity: How We Built a Self-Healing CI/CD Pipeline That Talks to JIRA
Link
@kaptain shared a link, 1 day, 2 hours ago
FAUN.dev()

I Built a Production-Grade Kubernetes Platform in 48 Hours.

A dev built a production-grade Kubernetes platform in 48 hours, encountering challenges and solutions along the way. The setup included multiple layers such as infrastructure, cluster, platform, delivery, and observability, each requiring troubleshooting and adjustments. The process involved deployi.. read more  

I Built a Production-Grade Kubernetes Platform in 48 Hours.
Link
@kaptain shared a link, 1 day, 2 hours ago
FAUN.dev()

Spotlight on SIG Architecture: API Governance

Kubernetes SIG Architecture’s API Governance crew is tightening the screws on stability, consistency, and cross-cutting sanity across the whole API surface. Not just REST. They’re eyeing the overlooked stuff too - CLI flags, config formats, anything that shapes how users and tools touch the system. .. read more  

Link
@devopslinks shared a link, 1 day, 2 hours ago
FAUN.dev()

LLMs Are Good at SQL. We Gave Ours Terabytes of CI Logs.

Mendral's agent runs ad‑hocSQLagainst compressedClickHouselogs. It traces flaky tests across months and scans up to 4.3B rows per investigation. They denormalize 48 metadata columns per log line. They compress 5.31 TiB down to ~154 GiB (~21 bytes/line) — a 35:1 ratio. That turns arbitrary filters in.. read more  

LLMs Are Good at SQL. We Gave Ours Terabytes of CI Logs.
Link
@devopslinks shared a link, 1 day, 2 hours ago
FAUN.dev()

Google API Keys Weren't Secrets. But then Gemini Changed the Rules

A report reveals Google Cloud'sAPI keysuse the same format for public IDs and secret auth. That overlap lets public keys reach theGemini API. New keys default toUnrestricted. Existing keys can be retroactively granted Gemini access. Google will add scoped defaults, block leaked keys, and notify affe.. read more  

Google API Keys Weren't Secrets. But then Gemini Changed the Rules
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.