Best of Platform EngineeringMarch 2026

  1. 1
    Article
    Avatar of nodelandAdventures in Nodeland·9w

    Software Engineering Splits in Three

    AI-assisted coding is reshaping enterprise software development by shifting the bottleneck from implementation to judgment. The author argues that software engineering is splitting into three tiers: tech companies where AI multiplies senior engineers, large enterprises that need platform guardrails and fractional senior expertise, and small businesses now able to afford custom software via 'software plumbers.' Key implications for enterprise leaders include investing in platform engineering, evolving SRE roles, rethinking the talent pipeline for future senior engineers, and shifting consulting models from body-shopping to fractional senior expertise. The buy-vs-build calculus also changes as custom software becomes cheaper, but judgment remains the scarce resource.

  2. 2
    Article
    Avatar of wundergraphWunderGraph·9w

    Design Like a Monolith, Implement as Microservices

    The monolith vs. microservices debate is framed as a false dichotomy. The real insight is that API design and API implementation are separate concerns that should be handled differently: design top-down as a unified whole (monolith thinking), implement distributed across teams (microservices thinking). Traditional GraphQL Federation merges these concerns, letting each team design and implement their slice, which leads to API fragmentation. WunderGraph's Fission and Hub tools aim to separate these layers — a design phase where the supergraph is treated as a single coherent schema, and an implementation phase where teams independently build their assigned subgraphs. Three trends driving this approach: organizations scaling past coordination thresholds, AI agents needing coherent APIs, and platform engineering demanding golden paths.

  3. 3
    Article
    Avatar of itnextITNEXT·9w

    kubara: An Open Source Kubernetes Platform Framework Built on GitOps

    kubara is an open-source CLI tool written in Go that provides a GitOps-based framework for bootstrapping production-ready Kubernetes platforms. Originally an internal STACKIT project, it is now open source and includes a 'General Distro' — a curated, production-ready baseline that can set up a working multi-cluster Kubernetes platform in under 30 minutes. The framework uses Argo CD as its GitOps engine with a hub-and-spoke multi-cluster architecture, label-based deployments via ApplicationSets, and ships with a curated Helm umbrella chart catalog including Kyverno, Prometheus, Grafana, Loki, Traefik, External Secrets Operator, and OAuth2 Proxy. Security is enforced by default: all ingresses are protected via OAuth2 Proxy, Argo CD RBAC is scoped with projects, and Kyverno policies are applied from the start. The bootstrap process involves three CLI commands (kubara init, kubara generate, kubara bootstrap) and takes 5–10 minutes to get Argo CD running and self-managing the platform.