-
Book Overview & Buying
-
Table Of Contents
The Platform Engineer's Handbook
By :
On Windows, ensure WSL 2 is enabled and the WSL 2 Linux kernel update package is installed. On macOS, ensure sufficient disk space and that Rosetta 2 is installed for Apple Silicon Macs (softwareupdate ‑‑install‑rosetta).
If pods cannot reach external networks, check your Docker network settings. On Linux, ensure iptables rules allow forwarding. On macOS/Windows, increase Docker Desktop memory allocation to at least 4 GB.
Always run helm repo update before installing charts. If a chart fails due to resource constraints, check that your Kind cluster has sufficient CPU and memory. Consider creating a multi-node Kind cluster for production-like setups.
Use virtual environments to isolate dependencies per chapter. Create one with: python3 ‑m venv .venv && source .venv/bin/activate...