Site icon Digital Thought Disruption

VCF 9.0 GA Mental Model Part 4: Fleet Topologies and SSO Boundaries (Single Site, Dual Site, Multi-Region)

TL;DR

Architecture Diagram

Table of Contents

Scope and Code Levels

This article is written against VCF 9.0 GA terminology and design guidance.

Version Compatibility Matrix

Use this as your “shared truth” when people ask “what exactly are we talking about?”

ComponentVersionBuild
VMware Cloud Foundation9.024755599
VCF Installer9.0.1.024962180
ESX9.0.0.024755229
vCenter9.0.0.024755230
NSX9.0.0.024733065
SDDC Manager9.0.0.024703748
VCF Operations9.0.0.024695812
VCF Automation9.0.0.024701403
VCF Identity Broker9.0.0.024695128

Assumptions

Scenario

You are trying to align:

Your success metric is simple: everyone uses the same vocabulary and can answer:

Core Concepts Refresher

Keep these boundaries straight, or your operating model will drift.

A practical rule:

Decision Criteria

Use these criteria to avoid arguing in circles.

Design-time decisions you should treat as “hard to change”

Day-2 decisions you can iterate on

Challenge: Pick Your Topology

You are choosing how you scale and isolate your platform. This is about latency, failure domains, and operational boundaries.

Solutions

Option A: Single site (one fleet, one instance)

What it is

When it fits

Day-0 decisions

Day-1 posture

Day-2 posture

Failure domain notes

Option B: Two sites in one region (one fleet, one instance, stretched clusters)

What it is

When it fits

Day-0 decisions

Day-1 posture

Day-2 posture

Failure domain notes

Option C: Multi-region (one fleet, multiple instances)

What it is

When it fits

Day-0 decisions

Day-1 posture

Day-2 posture

Failure domain notes

Challenge: Pick Your SSO and Identity Boundaries

In VCF 9.0, identity is not a minor checkbox. It drives operator experience, automation integration, and incident response.

There are two layers you must reason about:

Solutions

Option A: Single VCF Instance Single Sign-On (small blast radius, higher overhead)

What it is

Why you choose it

Operational reality

Option B: Cross VCF Instance Single Sign-On (balanced)

What it is

Why you choose it

Operational reality

Option C: VCF Fleet-Wide Single Sign-On (lowest footprint, largest blast radius)

What it is

Why you choose it

Operational reality

Embedded vs appliance identity broker

This is about availability and maintenance coupling.

Tenant multi-tenancy identity patterns in VCF Automation

This is where “separate IdP” usually matters first.

Architecture Tradeoff Matrix

Use this matrix in design reviews to avoid subjective debates.

Decision pointOptionStrengthsTradeoffs
Physical topologySingle siteFastest to deploy, lowest complexityNo site-level resilience by default
Two sites in one regionSite resilience with one instanceRequires stretched network/storage design discipline
Multi-regionRegion isolation, scalable org modelHigher footprint, more coordination, DR becomes explicit
Fleet countOne fleetCentralized governance and consistencyShared governance dependencies, shared change windows
Multiple fleetsStronger governance isolation, separate identity boundaries possibleDuplicate fleet services, more ops overhead
Platform SSO modelFleet-wideLowest footprint, best UXLargest login blast radius
Cross-instanceBalanced footprint and blast radiusMore moving parts than fleet-wide
Per-instanceSmallest login blast radiusHighest footprint and operational overhead
Identity broker modeEmbeddedLowest footprintCoupled to vCenter maintenance, simpler availability story
ApplianceHA and scale, decoupled from vCenter maintenanceMore resources and lifecycle tasks

Failure Domain Analysis

Treat these as distinct failure domains with different operational responses.

Fleet service failure domains

Instance failure domains

Who Owns What

Use this chart to stop escalations from bouncing between teams.

Capability / taskPlatform teamVI adminApp/platform teams
Choose fleet count and topology blueprint
Define instance-per-site/region strategy
Deploy first instance and management domain
Deploy fleet services (VCF Operations + VCF Automation)
Create workload domains
Define SSO model and identity broker mode
Configure VCF Single Sign-On and component registration
Provider identity in VCF Automation
Tenant identity in VCF Automation (enterprise vs service provider model)
Day-n operations in a region (multi-region)✅ (workload level)
Certificate lifecycle standard and tooling
Backup and restore strategy for management components
Workload onboarding, catalogs, templates, guardrails

Operational Runbook Snapshot

Keep your runbook short and repeatable. This is a starting point.

Daily

Weekly

Monthly

Incident workflow

Change Management Considerations

These are the changes that most often turn into “why is this so hard?”

Identity resets are a major change event

Changing any of the following typically requires a reset and reconfiguration:

Treat this as:

Lifecycle sequencing matters

VCF 9.x formalizes separation between:

Even if you are on 9.0 GA today, your day-2 operating model should assume this separation so upgrades do not surprise you later.

Anti-patterns

These are common failure modes that look fine in diagrams but hurt in production.

Validation

Validate code levels quickly (vCenter example)

Use this PowerShell snippet to verify vCenter version and build, and spot drift from your declared GA baseline.

# PowerCLI example: validate vCenter version/build
$vc = "vcsa.example.com"
Connect-VIServer $vc | Out-Null

$about = (Get-View ServiceInstance).Content.About
$about | Select-Object Name, Version, Build, FullName

Validate SSO configuration paths (operator check)

In VCF Operations:

Summary and Takeaways

Conclusion

You get operational clarity in VCF 9.0 when you design topology and identity as first-class boundaries:

Sources

VMware Cloud Foundation 9.0 and later documentation (includes VCF 9.0 Release Notes, Bill of Materials, Design Blueprints, and VCF Single Sign-On models): https://techdocs.broadcom.com/us/en/vmware-cis/vcf/vcf-9-0-and-later/9-0.html

Exit mobile version