When you build a golden-path template for scaffolding new services, you're pushing every team toward one way of doing things. What do you gain from that, and what do you have to give up?
A golden path buys consistency, faster onboarding, and cheaper platform support at the cost of teams whose problem genuinely doesn't fit the template; the design answer is an escape hatch that costs something small, not a wall.
What the interviewer is scoring
- Can the candidate name the specific costs a golden path imposes, not just the benefits it advertises
- Do they distinguish a template that is a starting point from one that is enforced as a permanent constraint
- Whether they propose a concrete mechanism for legitimate deviation rather than asserting flexibility as a value
- Do they recognise that a golden path enforced too rigidly gets bypassed rather than followed
- Can they explain how the platform team finds out a template is wrong for a given case before that team routes around it silently
Answer
Short answer
A golden path buys consistency, faster onboarding, and cheaper platform support at the cost of teams whose problem genuinely doesn't fit the template; the design answer is an escape hatch that costs something small, not a wall.
Use backstage as the thread through the golden path scaffolding vs flexibility explanation: name the signal, then say what changes when it moves.
What a golden path is actually buying
A golden path is a scaffolded template that produces a new service with the organisation's standard choices already made: the CI pipeline, the logging library, the base Dockerfile, the health-check endpoint, the on-call registration. A team runs one command and has something deployable within the hour instead of within a week of copying fragments from other services and guessing which parts are still current.
The value compounds beyond the first hour. Every service generated from the same template is legible to everyone else, because a platform engineer or an on-call responder from a different team already knows where the health endpoint lives and how the pipeline is structured. Security and compliance work that would otherwise mean visiting forty repositories individually becomes a change to one template, propagated forward. This is the actual argument for a golden path: not that it saves the first team time, but that it keeps the cost of supporting many services roughly flat as the number of services grows.
What it costs the team that doesn't fit
The cost is specific and it is not "some rigidity." A golden path encodes assumptions about the typical service: a particular language, a particular deployment shape, a particular scale of traffic. The team building something genuinely unusual — a service with an unusual latency budget, a batch job with no HTTP interface at all, a team using a language the template doesn't support — either forces their problem into a template that doesn't fit, producing a service that technically complies and behaves badly, or works around the template entirely and loses everything the template would have given them for free.
A rigid golden path also has a failure mode that is easy to miss from the platform team's side: teams stop reporting that the template doesn't fit and instead quietly fork it, or abandon it after generating the initial scaffold and diverge from that point onward. The platform team's dashboard still shows every service as "on the golden path" at generation time, while the population has actually drifted, and nobody finds out until an organisation-wide change to the template needs to reach services that no longer resemble it.
What the platform team believes What is actually true six months later
------------------------------------ ---------------------------------------
40 services, all from template v3 40 services generated from template v3
Rolling out a security patch reaches 12 have since diverged in ways the
all 40 automatically patch's mechanical migration can't reach
Designing the escape hatch deliberately
The design move that resolves this is making deviation a supported, visible path rather than either forbidding it or ignoring it. Two things have to be true simultaneously: leaving the golden path must be possible without a fight, because forbidding it just produces the silent fork above, and leaving it must be visible to the platform team, because an invisible deviation is the thing that actually causes damage later.
A workable version treats the template as a starting point with a small number of explicit, named deviation points rather than an unbroken enforced surface. A team can opt out of the standard CI stage, but doing so writes a machine-readable annotation to the service's catalog entry recording that they did and why, which the platform team can query across the whole fleet.
# The deviation is explicit, attributed, and queryable — not a silent fork.
metadata:
name: batch-reconciliation-job
annotations:
platform.internal/golden-path: "deviated"
platform.internal/deviation-reason: "no HTTP surface; template assumes a service"
platform.internal/deviation-owner: "data-platform-team"
This costs the deviating team a small amount of friction — they have to state a reason, and that reason is visible to the platform team, who can push back or simply note it. It costs the platform team nothing beyond building the annotation convention once, and it converts an invisible drift problem into a queryable list they can review periodically and use to decide whether the template itself needs to change.
Reading deviation as a signal, not a violation
The stronger platform teams treat a cluster of deviations for the same reason as evidence the template is wrong for a whole category of service, not evidence that a category of team needs correcting. If five teams independently opt out of the same CI stage for the same stated reason, the answer is very rarely "enforce it harder" — it is usually to split the template into two golden paths, or to make that stage conditional on a property the template can already detect, such as the presence of an HTTP listener.
A golden path survives contact with reality only if leaving it is cheaper than silently forking it, and the platform team can see who left and why.
© 2026 Preptima. Originally published at preptima.com.
Likely follow-ups
- How would you tell whether a team deviating from the golden path is a sign the path is wrong, or a sign that team needs support?
- What would make you deprecate a golden-path template rather than keep patching it?
- How do you handle a template that was right two years ago but the underlying infrastructure it generates has since been superseded?
- What's different about golden-pathing a new service versus golden-pathing an existing one being migrated onto the platform?
Related questions
- Six months after launching an internal developer portal, weekly active usage has plateaued at around forty percent of engineering. How would you go about figuring out why, and what would you actually do about it?hardAlso on backstage and developer-experience4 min
- You've built a service catalog with an owner field on every entry. A year later, half the owners listed are people who left the company. How would you design the catalog so that doesn't happen?hardAlso on backstage and platform-engineering4 min
- Your advocacy team can either build things - an SDK, sample apps, better reference docs - or publish things: posts, talks, videos. Both compete with the product roadmap for the same engineering time. How do you decide the split?hardAlso on developer-experience5 min
- How do you get a design system adopted by product teams moving at different speeds, and what do you do about the team that forked your component?hardAlso on platform-engineering5 min