Please turn JavaScript on

brtkwr.com

Subscribe to Brtkwr.com’s news feed.

Click on “Follow” and decide if you want to get news from Brtkwr.com via RSS, as email newsletter, via mobile or on your personal news page.

Subscription to Brtkwr.com comes without risk as you can unsubscribe instantly at any time.

You can also filter the feed to your needs via topics and keywords so that you only receive the news from Brtkwr.com which you are really interested in. Click on the blue “Filter” button below to get started.

Title: Brtkwr.com

Publisher:  brtkwr
Message frequency:  0.4 / day

Message History

TLDR: Mutating admission webhooks that inject scheduling rules (nodeSelector, tolerations, affinity) persist on StatefulSet pods even after you clean the StatefulSet template. The webhook re-fires on every pod CREATE and can read stale metadata to re-inject what you removed. The fix is to scale to 0 and back up — rollout restart doesn’t work.

I was de...


Read full story

I use git worktrees heavily for parallel development. One worktree per ticket, across dozens of repositories. They’re especially useful if you work with AI coding agents — each agent gets its own isolated worktree, so it can run tests, install dependencies, and...


Read full story

TL;DR: Feed your entire git log + file lists into a single LLM call to generate a bash hash map of conventional commit messages, then apply it with git filter-branch in seconds. 143 commits rewritten in 6 seconds, one API call, ~$0.05.

Why bother?

Read full story

This is a follow-up to my original post, Installing OpenClaw on a Jetson Nano, where I got things working with Bun on Ubuntu 18.04. That setup ran fine for a few weeks — until I tried to upgrade.

Why upgrade?

Read full story

TLDR: Go doesn’t auto-detect container memory limits. Without GOMEMLIMIT, the GC lets the heap double freely until the OOM killer strikes. Read the cgroup limit at startup and set GOMEMLIMIT to ~85% of it via an entrypoint script so it adapts automatically when VPA adjusts your limits.

I was investigating a pod that had been crashlooping for 25 hours....


Read full story