ContentPosts from @thibaultlengagne..
Link
@varbear shared a link, 2 days, 1 hour ago
FAUN.dev

Measuring Engineering Productivity

A former engineering leader lays out a no-nonsense framework for tracking team output without turning into Big Brother. Think:daily Slack updates,weekly GitHub changelogs,tight 1:1s,demo-fueled All-Hands, andauto-verified deploys. It leans onpublic artifacts, not peeking over shoulders - and puts th..

Measuring Engineering Productivity
Link
@varbear shared a link, 2 days, 1 hour ago
FAUN.dev

You already have a git server

A plain-oldgit repo on an SSH-accessible servercan double as a lean deployment rig. Drop in somegit hooks- like apost-receive- and every push can kick off static site builds or publish code on the spot. No extra tools. Just Git doing Git things. Turns basic Git infra into a no-frills CI/CD pipeline...

Link
@varbear shared a link, 2 days, 1 hour ago
FAUN.dev

State of AI Report 2025

The 2025 State of AI Report just landed—China’s catching up fast on reasoning and coding. Models like DeepSeek, Qwen, and Kimi are starting to nip at OpenAI’s heels. AI is thinking longer-term now. Reinforced reasoning and rubric-style feedback are pushing models into deeper, more deliberate plannin..

State of AI Report 2025
Link
@kaptain shared a link, 2 days, 2 hours ago
FAUN.dev

Debugging container image creation with a Dockerfile

Docker just made debugging Dockerfiles inVS Codefeel like real development. With the latest Docker extension and Docker Desktop update, you can now set breakpoints, step through builds with F10/F11, poke at variables, and mess with the container’s file system mid-build...

Debugging container image creation with a Dockerfile
Link
@kaptain shared a link, 2 days, 2 hours ago
FAUN.dev

Kubernetes Gateway API in action

The Kubernetes Gateway API leveled up - unifying North-South, East-West, and egress traffic with standard CRDs likeGRPCRoute,HTTPRoute, andReferenceGrant. In a Linkerd world, that means clean, declarative canary releases, granular egress control to outside APIs (say, Mistral AI), and clearer lines b..

Kubernetes Gateway API in action
Link
@kaptain shared a link, 2 days, 2 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, 2 days, 2 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, 2 days, 2 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, 2 days, 2 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, 2 days, 2 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..