Skip to content
16 min read

Platform engineering — the evolution of DevOps in 2026

What is platform engineering and why is it replacing traditional DevOps? Internal Developer Platform, Backstage, golden paths and Team Topologies in practice.

Author: EITT Team

A new engineer joins a fast-growing fintech company. She has fifteen years of experience and a clear vision for the payments microservice she has been hired to build. On her first day she gets a laptop, access to the Git repository, and a Confluence page titled “Getting Started” that was last updated eleven months ago. She spends two days figuring out which Kubernetes cluster to target. She opens a ticket for database provisioning that sits in a queue for three days. She copies a CI/CD pipeline from another team’s repo, then spends a day debugging why it fails in her namespace. By the end of her second week, she has written zero lines of business logic.

Now imagine a different first day. She opens the company’s developer portal, selects “New Payments Service” from a template gallery, fills in a name and clicks create. Eight minutes later she has a running repository with starter code, a configured CI/CD pipeline, a provisioned staging database, and pre-built Grafana dashboards. She starts writing business logic before lunch.

That gap is what platform engineering closes. In 2026, this is no longer a vision reserved for tech giants. It is the new standard for any organization that takes developer productivity seriously.

Where platform engineering came from

The roots of platform engineering lie in a decade-long struggle to answer a question that sounds simple but proved remarkably difficult: how do you scale DevOps practices across a large organization without drowning every team in operational complexity?

Between 2010 and 2015, DevOps was genuinely revolutionary. It demolished walls between development and operations, introduced automation, Infrastructure as Code, and continuous delivery. Netflix deployed thousands of times per day. Google published the SRE book. Spotify built internal tooling that let autonomous squads operate with startup speed.

The cracks appeared when organizations without thousands of engineers tried to adopt the same practices. In a typical company with 10 to 50 development teams, DevOps translated into an uncomfortable reality: every developer had to understand everything. Kubernetes, Terraform, Helm, ArgoCD, Prometheus, Grafana, Vault, networking, security, compliance — the list grew longer every year.

Gartner identified platform engineering as a top strategic technology trend in 2022, projecting that 80% of software engineering organizations would establish dedicated platform teams by 2026. Here in 2026, that projection has largely materialized — though the path to mature platforms has been longer than many anticipated.

Why DevOps alone is no longer enough

An important distinction first: DevOps is not dead. Platform engineering does not replace DevOps — it extends it and makes it sustainable at scale. But DevOps as practiced over the last decade has run into three structural limitations.

The cognitive overload crisis

“You build it, you run it” sounds empowering in a keynote. In practice, it means a front-end developer must also understand Kubernetes network policies, Ingress configuration, TLS certificates, cloud IAM policies, pipeline configuration, alerting rules, and secret rotation.

Research from Spotify’s developer productivity team (2023) found that developers spent 30-40% of their time on infrastructure tasks unrelated to business logic. The State of DevOps Report 2025 confirmed this: organizations with high developer cognitive load had 40% longer lead times for changes.

Every hour a senior engineer spends debugging a Helm chart is an hour not spent delivering business value. Across dozens of engineers and a full year, the cost is enormous.

Fragmentation across the organization

When every team builds its own solutions, the organization accumulates five deployment strategies, three logging standards, and no consistent security approach. Compliance audits become nightmares. Onboarding requires learning a dozen architectural variations, each with undocumented assumptions and tribal knowledge.

Fragmentation also creates security blind spots. If each team independently configures container images and network policies, the attack surface multiplies and the security team loses its unified view.

Burnout and unsustainable on-call

In its extreme form, “you build it, you run it” means a small team is simultaneously responsible for features, infrastructure, on-call, incident response, and documentation. The Puppet State of DevOps report consistently flags burnout as a top challenge, particularly in smaller teams.

When developers are pulled in too many directions, velocity drops, quality suffers, and the best engineers leave.

Internal Developer Platform — the core concept

Platform engineering answers these challenges with one foundational concept: the Internal Developer Platform (IDP). An IDP is not another tool to install. It is an internal product — built by a dedicated platform team, designed for a single customer: the developers within the organization.

An IDP abstracts infrastructure complexity and provides developers with a unified, self-service interface for creating environments, deploying applications, monitoring services, managing secrets, and provisioning resources.

What an IDP is not

  • Not a centralized bottleneck. An IDP accelerates teams, not creates a new ticket queue.
  • Not a rigid mandate. The best platforms offer golden paths covering 80% of use cases while leaving room for deviation.
  • Not an off-the-shelf product. Backstage, Humanitec, and Port are frameworks. The platform must be assembled and evolved to fit the organization’s context.

The product mindset

The most important mental shift: treating the platform as an internal product.

  • The platform team has customers — the development teams
  • The platform has a roadmap — driven by user needs, not technology fascination
  • The platform tracks adoption — if teams are not using it, the platform is the problem
  • The platform has documentation and onboarding — just like an external product
  • The platform collects feedback — surveys, interviews, usage analytics

Organizations that mandate adoption through top-down decree underperform those that build a platform so useful that teams choose it voluntarily.

Key components of a platform

A mature Internal Developer Platform consists of several layers. Organizations do not need to build all of them simultaneously — most begin with one or two components and expand iteratively based on developer feedback and adoption data.

Service catalog

A central repository of information about every service in the organization. Who owns it? What is the SLA? Where is the documentation? What are the dependencies? Backstage, the open-source developer portal from Spotify (now CNCF), has become the standard in this category with over 1,200 plugins and adoption at Netflix, American Airlines, HP, Zalando, IKEA, and Expedia.

A well-maintained service catalog eliminates the most common question in large organizations: “who do I talk to about this service?”

Self-service portals

An interface through which a developer can independently perform standard operations without filing a ticket:

  • Create a new development or staging environment
  • Deploy an application to staging or production
  • Provision a database, message queue, or cache
  • Configure monitoring and alerts
  • Manage secrets and certificates

The key metric: self-service ratio — what percentage of infrastructure operations happen without human intervention from the platform team?

Golden paths

Golden paths are predefined, optimized routes for completing common tasks. Not an enforced standard — a recommendation: “if you are building a typical Java microservice, here is a template with CI/CD, monitoring, logging, and security. A running service in 30 minutes instead of two days.”

Golden paths typically cover:

  • Project templates — repository scaffolds with Dockerfile, Helm chart, CI/CD pipeline, and tests
  • Observability standards — predefined dashboards, alert rules, structured log formats
  • Security policies — dependency scanning, static analysis, container image and network policies
  • Integration patterns — inter-service communication, data management, async workflows

The power of golden paths: making the right thing the easy thing. When the secure, observable approach is also the fastest, adoption happens naturally.

Orchestration layer

Beneath the portal, the IDP needs an orchestration layer translating declarative requests (“I need a PostgreSQL database on staging”) into concrete infrastructure. Crossplane, Terraform, Pulumi, and Humanitec Score enable abstract, cloud-agnostic infrastructure descriptions.

Observability layer

A platform without observability is flying blind. OpenTelemetry has become the standard for telemetry data (traces, metrics, logs), while Grafana, Datadog, and Dynatrace provide visualization. The critical requirement: the platform automatically instruments new services — developers should never configure monitoring manually.

Backstage — the foundation of modern IDPs

Backstage deserves its own section. Created at Spotify in 2016 as an internal tool, open-sourced in 2020 and donated to CNCF, it has become the most widely adopted framework for building developer portals.

Why Backstage won

  • Open source — no vendor lock-in, 1,200+ plugins, thriving community
  • Pluggable architecture — every component replaceable or extensible
  • Software catalog — central knowledge base about services, teams, and relationships
  • Software templates — codified golden paths instantiated with a few clicks
  • TechDocs — documentation-as-code, searchable within the portal
  • Kubernetes plugin — real-time cluster visibility from the same portal
  • Unified search — single search bar across catalogs, docs, APIs, and templates

Backstage in practice

Spotify uses Backstage to manage over 2,000 microservices. A new engineer can create a production-ready service in under 10 minutes. Before Backstage, the same process took over two weeks.

Other public adopters include IKEA (1,500+ developers), Netflix (custom extensions for microservices management), American Airlines (legacy modernization), and Zalando (self-service for 200+ teams).

Team Topologies — the organizational blueprint

Matthew Skelton and Manuel Pais’s “Team Topologies” (2019) provided the vocabulary for platform engineering’s organizational model and explicitly defined the “platform team” as a first-class team type.

Four team types

Team typeRoleExample
Stream-aligned teamDelivers business value in a continuous streamProduct team (“payments,” “search”)
Platform teamBuilds and maintains the internal platformPlatform engineering team delivering the IDP
Enabling teamHelps other teams acquire new capabilitiesSRE team, DevEx team
Complicated-subsystem teamManages a component requiring specialist knowledgeML platform team, database team

Three interaction modes

  • Collaboration — two teams work closely for a limited time (e.g., co-designing a golden path)
  • X-as-a-Service — the platform team provides a service, the product team consumes it (the target model)
  • Facilitating — an enabling team coaches another team on new practices

The guiding principle: a platform team should strive toward X-as-a-Service. If product teams constantly need direct help for routine operations, the platform is not fulfilling its purpose.

Cognitive load as an organizational metric

Team Topologies distinguishes three types of cognitive load:

  • Intrinsic — complexity inherent to the business domain (unavoidable)
  • Extraneous — complexity from tools and infrastructure (to be minimized)
  • Germane — complexity from learning new domain knowledge (desirable)

Platform engineering targets reducing extraneous cognitive load so teams can focus on business problems and domain learning.

A maturity model for platform engineering

Not every organization needs a Spotify-level platform. Understanding where you stand prevents overengineering.

Level 1 — Ad hoc

  • No formal platform team; shared scripts maintained by “that one DevOps person”
  • Documentation scattered and outdated
  • New projects: copy-paste from existing repos

Level 2 — Standardization

  • Designated team (1-2 people) responsible for standards
  • Project templates and common CI/CD pipelines
  • Basic golden path documentation

Level 3 — Self-service

  • Dedicated platform team (3-5 people)
  • Self-service portal, service catalog (Backstage)
  • Automated provisioning with guardrails
  • Adoption metrics tracked regularly

Level 4 — Optimization

  • Platform team as internal product organization with a product manager
  • Automated compliance through policy-as-code
  • Developer experience surveys driving improvement
  • Internal component marketplace

Level 5 — Strategic

  • Platform as strategic asset with executive sponsorship
  • FinOps integration, AI-assisted operations
  • Platform supports the entire product lifecycle
  • Open source contributions

Most organizations in 2026 fall between levels 1 and 3. Reaching levels 4-5 requires years of sustained investment.

Metrics and measuring success

Platform engineering without metrics is faith, not engineering. Two frameworks dominate the conversation.

DORA metrics

The DORA program (Google Cloud) defined four key software delivery performance metrics:

MetricWhat it measuresElite team target
Deployment frequencyHow often the team deploys to productionOn demand (multiple times per day)
Lead time for changesTime from code commit to running in productionLess than 1 hour
Change failure ratePercentage of deployments causing a production failure0-15%
Time to restoreTime to recover service after a production failureLess than 1 hour

The DORA 2025 report: organizations with mature platforms achieved 3.5x higher deployment frequency and 4x shorter lead times, with substantially lower burnout rates.

The SPACE framework

Developed by Microsoft Research, GitHub, and University of Victoria, SPACE measures developer productivity holistically:

  • S — Satisfaction and well-being (tool satisfaction, work-life balance)
  • P — Performance (business impact, service reliability)
  • A — Activity (deployments, code reviews, documentation)
  • CCommunication and collaboration (documentation quality, knowledge sharing)
  • E — Efficiency and flow (time in “flow state,” context switching frequency)

A well-built platform impacts all five dimensions, with the largest gains in Satisfaction and Efficiency.

Platform-specific metrics

Platform teams should also track product-specific metrics:

  • Time-to-first-deployment — onboarding effectiveness for new developers
  • Adoption rate — percentage of teams actively using the platform
  • Self-service ratio — operations completed without support tickets
  • Ticket volume trend — should decline as the platform matures
  • Platform NPS — would teams recommend it to colleagues?
  • Golden path adherence — percentage of new projects starting from templates

Getting started — a practical adoption path

Step 1: Understand the landscape

Before writing platform code, answer: How many teams? What stacks? What wastes the most developer time? What tools cause frustration? Are there informal standards to formalize?

Tool: DX survey (10-15 questions, anonymous, quarterly) plus interviews with 5-8 developers across teams.

Step 2: Start with one golden path

Pick the most common use case (e.g., “new Node.js microservice with PostgreSQL”) and build a complete golden path:

  • Repository template with starter code, tests, and docs
  • Dockerfile and Kubernetes manifests (Helm/Kustomize)
  • CI/CD pipeline with testing, security scanning, and deployment
  • Out-of-the-box monitoring with dashboards and alerting
  • Documentation: “from zero to production in 30 minutes”

Measure time-to-production before and after. A reduction from two days to 30 minutes is a compelling story for further investment.

Step 3: Deploy a service catalog

Backstage is the natural starting point (basic installation in hours):

  • Import existing services via catalog-info.yaml files
  • Add ownership, documentation links, and SLA data
  • Configure integrations with GitHub/GitLab, CI/CD, and monitoring
  • Create a software template for the golden path from step 2

Step 4: Iterate based on feedback

Each quarter: collect feedback, analyze adoption metrics, add the next golden path or self-service capability, remove what is not working.

Step 5: Scale the team

Typical ratio: 1 platform engineer per 10-15 developers. At 50 developers, you need 3-5 platform engineers. At 200, the team grows to 12-15 people with sub-teams (core platform, developer experience, security platform).

The skills that matter

Platform engineering demands a unique blend of technical depth and product thinking.

Technical skills

  • Kubernetes and containerization — administration, troubleshooting, capacity planning
  • Infrastructure as Code — Terraform, Pulumi, Crossplane; designing reusable modules
  • CI/CD — GitHub Actions, GitLab CI, ArgoCD; pipelines as reusable components
  • Observability — OpenTelemetry, Prometheus, Grafana; organization-wide strategy
  • Security — supply chain security (SLSA, Sigstore), policy-as-code (OPA, Kyverno), secrets management
  • API design — a platform is a collection of APIs; intuitive, versioned interfaces are fundamental

Product and organizational skills

  • Product management — roadmap, prioritization, user-research-driven backlog
  • User research — developer interviews, distinguishing real pain points from perceived ones
  • Technical writing — documentation, tutorials, ADRs, runbooks
  • Communication — stakeholder presentations, demos, internal evangelization
  • Change management — guiding transformation, building coalitions of early adopters

Career path

Transitioning from DevOps Engineer or SRE to Platform Engineer requires a perspective shift: from “I solve technical problems” to “I build a product that enables others to solve problems independently.”

A DevOps engineer optimizes a pipeline to run 30% faster. A platform engineer asks: “Why does the team need to understand this pipeline at all? Can I abstract it into a golden path where deployment is a single command?”

The technology landscape in 2026

The tooling ecosystem evolves rapidly. A snapshot of commonly adopted components in 2026:

LayerTools
Developer portalBackstage (CNCF), Port, Cortex, OpsLevel
Infrastructure orchestrationTerraform, Pulumi, Crossplane, OpenTofu
GitOps and deploymentArgoCD, Flux (CNCF), Humanitec
ObservabilityPrometheus + Grafana, OpenTelemetry, Grafana Loki
Security and complianceOPA/Gatekeeper, Kyverno, Trivy, Vault
Secret managementHashiCorp Vault, AWS Secrets Manager, External Secrets Operator
  • AI-powered platforms — AI assistants integrated into the IDP for configuration generation, troubleshooting, and code review
  • Platform as Code — declarative definitions of entire platforms, enabling reproducible environments
  • FinOps integration — real-time cost visibility at team and service level
  • Green software — carbon emission metrics embedded in the platform
  • Compliance automation — NIS2 and DORA regulations require governance that platforms can automate through policy-as-code

Conclusion

Platform engineering is not a trend and not a rebranding of DevOps. It is the natural response to the growing complexity of modern software systems. When an organization crosses the threshold of multiple teams, solving every infrastructure problem individually becomes more expensive than building a shared platform.

Key takeaways for 2026:

  • DevOps delivered the culture — platform engineering delivers the scalable tools and structures that sustain it.
  • An IDP is a product, not a project — it requires a product owner, roadmap, adoption metrics, and continuous iteration.
  • Golden paths over gatekeeping — the best platforms make the right thing the easy thing.
  • Team Topologies provides the organizational blueprint — structure and communication patterns matter as much as tooling.
  • Metrics drive decisions — DORA, SPACE, and platform-specific metrics enable evidence-based roadmaps.

Whether your organization is beginning its DevOps journey or searching for a way to scale mature practices, understanding platform engineering is one of the most valuable competency investments for technical teams in 2026.

Ready to build your platform engineering capabilities? Explore EITT’s platform engineering training programs — practical workshops led by trainers with real-world experience building Internal Developer Platforms. We work with participants who are transforming their organizations, and we know that the best platform is one that developers actually want to use.

Request a quote

Develop Your Competencies

Check out our training and workshop offerings.

Request Training
Call us +48 22 487 84 90