@OnlyXuanwo: Kubernetes developers simply don't understand how to deploy services. This kind of thing — separate process and configuration management — services should never run in a Pod. Just start each service in its own tmux session. When a restart is needed, write a while true loop; if it crashes, it automatically restarts. Performance...

X AI KOLs Timeline News

Summary

A developer criticizes Kubernetes' deployment method as too complex, advocating for using tmux sessions and while true loops to simply manage service processes, believing this approach has sufficient performance and is easy to maintain.

Kubernetes developers simply don't understand how to deploy services. This kind of thing — separate process and configuration management — services should never run in a Pod. Just start each service in its own tmux session. When a restart is needed, write a while true loop; if it crashes, it automatically restarts. The performance fully meets requirements. How many services can a company have? Even if you launch ten new services a day, that's only 3650 processes in a year. Just run top and see which one crashed, that's it.
Original Article

Similar Articles

@LuBtc888: Seriously, I barely touch tmux for multi-terminal management anymore. With http://herdr.dev and http://muxy.app, these two tools kick tmux's cumbersome configuration out of the game. No need to memorize complex shortcuts, no need to fiddle with config files—ready to use out of the box, a blessing for the lazy. Productivity tools...

X AI KOLs Timeline

Introduces two terminal multi-window management tools, Herdr and Muxy. Herdr is a Rust-based native terminal proxy runtime that supports persistence, mouse operations, and proxy state management, serving as a tmux alternative.

@GitHub_Daily: Use tmux to manage terminal sessions, opening multiple windows in the terminal that can keep running in the background even after closing. But now, with multiple Agents running at the same time, automating terminal tasks with tmux requires writing a bunch of scripts, which is cumbersome. So a developer built rmux from scratch in Rust, designed specifically for Ag…

X AI KOLs Timeline

Introducing rmux, a modern terminal multiplexer written in Rust, designed for AI Agent and automation scenarios. It coordinates multiple Agents running simultaneously, is compatible with over 90 tmux commands, and offers a Python SDK and browser-based session sharing.

@nash_su: Last night I was chatting with @i5ting about how a sandbox is an indispensable part of any agent, and today Tencent open-sourced Cube Sandbox: 1. Blazing-fast boot (<60 ms) thanks to snapshot cloning and warm resource pools 2. Hardware-grade security via KVM micro-VMs + eBPF network isolation, battle-tested on Tencent Cloud 3. Ultra-high density—runs in <5 MB RAM, thousands per node 4. E2B-compatible

X AI KOLs Timeline

Tencent open-sources Cube Sandbox, a KVM-based micro-VM for agents that boots in <60 ms, runs in <5 MB RAM, and is E2B-compatible.