VOOZH about

URL: https://thenewstack.io/build-your-idp-at-light-speed-with-a-platform-reference-architecture/

⇱ Build Your IDP at Light Speed with a Platform Reference Architecture - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2023-08-18 10:39:55
Build Your IDP at Light Speed with a Platform Reference Architecture
sponsor-humanitec,sponsored-post-contributed,
DevOps / Platform Engineering

Build Your IDP at Light Speed with a Platform Reference Architecture

Now organizations have a standard, proven, scalable, and repeatable pattern for internal developer platforms that’s applicable to any tooling choice.
Aug 18th, 2023 10:39am by Aeris Ransom
👁 Featued image for: Build Your IDP at Light Speed with a Platform Reference Architecture
Image from Gargantiopa on Shutterstock.
Humanitec sponsored this post.

Platform engineering is gaining traction among top-performing software engineering organizations, and for good reason. Internal developer platforms (IDPs) can boost developer productivity, remove Ops bottlenecks, minimize developer cognitive load and enforce standardization by design. But the best news? There’s now a much simpler way to build an effective enterprise-grade IDP that’s creating a major stir in the platform engineering community.

While every platform looks different, common patterns emerge among effective setups. During their PlatformCon 2023 talk, Stephan Schneider, digital expert associate partner, and senior DevOps engineer Mike Gatto from McKinsey shared how they’d synthesized real-world platform designs of hundreds of organizations into standard patterns.

These patterns have formed the basis of the reference architecture for enterprise-grade platforms. Now organizations have a standard, proven, scalable, and repeatable pattern to follow, one that’s applicable to any tooling choice. And one that enables you to create IDPs fast that shorten time to market (TTM), improve software supply chain best practices, drive revenue growth and keep you ahead of the competition. So how exactly does it work?

According to McKinsey, there are five main planes that make up different areas of the platform architecture that cluster certain functionalities.

Note: The components and tools referenced below apply to an AWS-based setup, but all are interchangeable. Similar reference architectures can be implemented for GCP, Azure, OpenShift or any hybrid setup. Use this reference as a starting point, but prioritize incorporating whatever components your setup already has in place.

👁 Internal developer portal on AWS

  • The Developer Control Plane level contains the primary “interfaces” developers can choose to use when using the platform. Following the golden paths design principle, it’s best to leave interface changes to the developer on a workload-by-workload basis. And to keep existing developer workflows intact where possible by defaulting to code.
  • The Integration And Delivery Plane level contains the tools that build, store, configure and deploy requests coming from the developer control plane.
  • The Resource Plane level contains all resource components necessary to run the app. The resources can be configured as code using tools like Terraform.
  • The Monitoring And Logging Plane provides real-time metrics and logs for apps and infrastructure. Developers can use this plane for observability, monitoring and making data-driven decisions.
  • The Security Plane manages secrets and identity to protect sensitive information, such as storing, managing, and security retrieving API keys and passwords.

Platform teams are responsible for binding the individual components of the planes to each other, as well as one plane to the other. They should also test and refine the end-to-end flow of the architecture to ensure a smooth developer experience (DevEx).

Humanitec empowers platform engineers to build the perfect Internal Developer Platform for the enterprise. Our products enable platform teams to reduce cognitive load, drive standardization and slash time to market.
Learn More
The latest from Humanitec

Zooming in on Golden Paths

To understand how the planes and components of this architecture work together, it’s helpful to follow a deployment from the initial git-push to the running application. A “golden path” refers to the tools and workflows that the platform team binds together to standardize and accelerate software delivery. Golden paths should be defined in a way that improves DevEx and maintains developers’ freedom to go off-road where necessary. This is where the Humanitec Platform Orchestrator comes into play. Platform engineering teams use the Platform Orchestrator to design golden paths and define clear conventions for their organization. Developers simply describe what resources their workloads need to run using the open source workload specification Score (or the UI, CLI, API).

Let’s see how this all works.

Golden Path 1: Deploying to Dev

Let’s say a developer wants to deploy the changes made on a workload to dev.

The golden path would look something like this:

👁 Image

  1. Developer modifies a workload and git-pushes the code.
  2. The CI pipeline picks up the code and runs it.
  3. The image is built and stored in the image registry.
  4. The Platform Orchestrator is notified. It generates the necessary app and infrastructure configs and prepares all components for the deployment by running an RMCD (read, match, create, and deploy) execution pattern.
  • Read phase: The Orchestrator interprets the workload spec.
  • Match phase: The Orchestrator removes the context ( CI tag or metadata) and identifies the correct resources to wire the workload to.
  • Create phase: The Orchestrator generates app configs by applying the workload spec to the workload profile.
  • Deploy phase: The Orchestrator either orchestrates the resources and performs the deployment or hands them over to the dedicated CD systems.

Golden Path 2: Creating a New Resource

Let’s say a developer needs an ArangoDB, but this isn’t yet known to the setup. Dynamic configuration management (DCM) enables developers to extend or customize the available resources simply by adding a resource definition to the general baselines of the organization. As with the deployment to dev, the Platform Orchestrator takes care of the rest.

👁 Image

Golden Path 3: Updating a Resource

This is an area where platform engineers can use the platform to maintain a high degree of standardization across the organization. Let’s say a platform engineer wants to update all of the Postgres resources, across the workloads that depend on them, to the latest Postgres version. To achieve this, the platform engineer would:

  1. Update the resource definition of dev Postgres resources. If the Postgres is configured in Terraform, this will involve simply updating the Terraform module. If not, the driver would be adopted.
  2. If inputs and outputs should be changed, update the resource definition in the Terraform provider of the Orchestrator.
  3. Find which workloads currently depend on the resource definition of “dev Postgres” in the Platform Orchestrator. This can be done by pinging the Orchestrator API or looking at the user interface.
  4. Auto-enforce a deployment across all workloads that depend on the resource type “Postgres dev.”

Just like that, the new version is rolled out across all workloads and applications.

Start Your Platform Journey the Right Way

So there you have it. No matter your setup, the IDP reference architecture as discussed by McKinsey is a complete game changer for organizations starting their platform engineering journey. It not only enables platform teams to learn proven IDP design principles, it shows how architectural components fit together and how to design great interaction patterns for engineers and developers.

With the ability to zoom in on building golden paths for greater developer self-service, platform teams can streamline the way developers work and reduce the need for manual work and ticket ops, allowing Ops teams to focus more on making improvements vs. ad hoc requests. By following these proven design patterns, you can ensure their IDP meets the needs of your developers and overall business objectives.

My team at Humanitec created several white papers inspired by McKinsey’s talk, not only for AWS, but also GCP and Azure. They illustrate how to integrate the planes and components, showcase how developers, ops and platform teams can use the platform, and provide more examples of golden paths. You can explore all three platform reference architectures by heading here.

Humanitec empowers platform engineers to build the perfect Internal Developer Platform for the enterprise. Our products enable platform teams to reduce cognitive load, drive standardization and slash time to market.
Learn More
The latest from Humanitec
TRENDING STORIES
Aeris Ransom is a platform engineering enthusiast and community builder. They previously managed community outreach and engagement at PlatformEngineering.org.
Read more from Aeris Ransom
Humanitec sponsored this post.
SHARE THIS STORY
TRENDING STORIES
AWS and Red Hat are sponsors of The New Stack.
TNS owner Insight Partners is an investor in: Pragma, Golden.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.