← Stackzilla Blog

Platform Engineer: The Role Building the Tools That Engineers Use to Build Everything Else

Published July 19, 2026 · 11 min read · platform engineering, infrastructure, DevOps, Kubernetes, career, engineering

Platform Engineering is the fastest-growing infrastructure discipline in software — predicted by Gartner to exist in 80% of engineering organisations by 2026. It emerged to solve a real problem: developers asked to own too much infrastructure, and the cognitive load killing their productivity.

Platform Engineering is the newest discipline in this infrastructure series — and the one with the clearest growth trajectory. Gartner included Platform Engineering in its 2023 Hype Cycle for Software Engineering as a practice with near-term maturity, predicting that 80% of software engineering organisations will have established platform engineering teams by 2026. The Cloud Native Computing Foundation (CNCF) established a dedicated Platform Engineering Working Group in 2022. The role is not hypothetical or emerging — it is establishing itself as a distinct infrastructure function at organisations from Spotify and Netflix to financial services firms and enterprise software companies. ## The Problem Platform Engineering Solves To understand Platform Engineering, it helps to understand the problem that preceded it. As DevOps practices matured and cloud adoption accelerated through the 2010s, a pattern emerged at organisations operating at scale: developers were being asked to own increasingly large amounts of infrastructure. The DevOps ideal of "you build it, you run it" — where product engineering teams take full ownership of their services from development through production — created a cognitive load problem. A developer working on a product feature also had to understand Kubernetes deployment configurations, Terraform modules for their infrastructure, observability instrumentation, CI/CD pipeline configuration, cloud IAM policies, secret management, and security scanning setup. The tooling surface area had expanded far beyond what could be absorbed alongside the primary work of building product features. Matthew Skelton and Manuel Pais formalised this observation in their 2019 book Team Topologies, which introduced the concept of "cognitive load" as a design constraint for engineering organisations. Their research found that teams given too much cognitive load — too many concerns to manage simultaneously — produce lower-quality work more slowly and with higher rates of burnout. The prescription was to reduce the cognitive load on product teams by building centralised infrastructure capabilities: internal developer platforms. The team responsible for building those platforms is the Platform Engineering team. ## What an Internal Developer Platform Is An Internal Developer Platform (IDP) is a self-service layer that abstracts infrastructure complexity from application developers. Instead of requiring developers to understand the full stack of tools needed to deploy, monitor, and manage a service, the IDP provides opinionated, pre-configured workflows that handle the infrastructure concerns automatically. A developer using a mature IDP might request a new service through a portal, fill in fields describing what the service needs (programming language, database type, expected traffic), and receive a fully provisioned environment with CI/CD pipelines, monitoring, alerting, secrets management, and Kubernetes configuration — all set up according to the organisation's standards — within minutes. The developer's cognitive load drops from "understand Terraform, Kubernetes, Helm, Prometheus, and IAM" to "describe what you need." This is not about removing engineering agency — it is about removing undifferentiated toil. The Platform Engineering team makes the hard infrastructure decisions once, encodes them into the platform, and lets product developers benefit from those decisions without needing to reproduce the reasoning themselves. ## Backstage: The Platform That Became a Standard Spotify built an internal developer platform called Backstage to manage their rapidly growing microservices architecture. By the mid-2010s, Spotify had hundreds of microservices maintained by dozens of engineering teams, and the cognitive overhead of understanding what existed, how services related to each other, and where documentation lived had become a significant productivity drag. Backstage solved this with a software catalogue — a central registry of every service, its ownership, its dependencies, its API documentation, and its operational status. It also provided a plugin system for integrating the CI/CD pipelines, cloud resources, on-call rotations, and monitoring dashboards that each service used. Spotify open-sourced Backstage in March 2020. The CNCF accepted it as an incubating project in September 2022. By 2023, Backstage was being used by Netflix, American Airlines, Expedia, LinkedIn, HP, and hundreds of other organisations. The project has over 130 contributors from more than 900 companies. Backstage is not the only IDP tooling available — Port, Cortex, and Humanitec are commercial alternatives with different design philosophies — but it has established itself as the reference implementation that the industry benchmarks against. ## What a Platform Engineer Does **Builds and maintains the internal developer platform.** The core output of a Platform Engineering team is software — the platform itself. This involves product thinking (what do developers actually need?), software engineering (building the platform components), and infrastructure engineering (integrating with cloud providers, Kubernetes, CI/CD systems, and observability tools). **Defines golden paths.** Platform Engineering teams establish "golden paths" — opinionated, pre-built workflows for common developer needs. Creating a new service, deploying to production, setting up a database, configuring alerting — each of these has a golden path that encodes organisational best practices. Developers can deviate from the golden path when they need to, but the path of least resistance leads to the right place. **Manages Kubernetes infrastructure at scale.** Platform Engineers are typically responsible for the Kubernetes clusters that host an organisation's services. This includes cluster provisioning, upgrade management, multi-tenancy (ensuring teams' workloads are isolated from each other), resource quota management, and the Kubernetes operators and custom resources that extend the platform's capabilities. **Maintains the developer experience.** Unlike traditional infrastructure teams that are measured by uptime and cost, Platform Engineering teams are measured on developer experience — the speed and ease with which product engineers can get from idea to deployed service. This requires regular engagement with the teams using the platform, treating internal developers as customers whose satisfaction drives the platform's roadmap. ## The Job Market for Platform Engineers Glassdoor's 2024 data shows Platform Engineers earning a median of approximately $130,000-$145,000 in the United States. The role is newer than DevOps and SRE, which means the career path is less standardised — many Platform Engineers arrived from DevOps, cloud engineering, or software engineering backgrounds. Stack Overflow's 2023 Developer Survey identified Platform Engineer as one of the fastest-growing job titles in technology. LinkedIn job postings for Platform Engineering roles grew approximately 40% between 2022 and 2023, from a base that was already substantial. The Gartner 2026 projection — 80% of software engineering organisations with platform teams — implies continued strong hiring growth as organisations that have not yet built platform functions establish them. Early-stage platform engineering roles (building from scratch at a company without an existing IDP) command premium compensation and offer high visibility, because the work directly determines the productivity of every other engineering team in the organisation.

Read the full article on Stackzilla →