Site Reliability Engineer Interview Experience at VMware (Broadcom) – 2026
VMware (Broadcom)
AI-Reconstructed Composite
Reconstructed from candidate-reported Broadcom/VMware interview structure post-acquisition (recruiter screen, hiring manager screen, technical phone screen 60-90 min, onsite/virtual loop of 4-6 rounds, track-specific content varying by division) and separately reported VMware SRE-specific round content (synchronization, concurrent data structures, systems-level debugging) sourced from public candidate reports and interview guides. Composite account grounded in Broadcom's real documented post-acquisition process and VMware's Tanzu Kubernetes product line rather than a single verified transcript.
Application Story
SRE roles on the Tanzu Kubernetes platform team are one of the more active hiring areas within VMware's engineering org since its 2023 acquisition by Broadcom. The process follows Broadcom's now-standardized loop for the VMware track — a recruiter screen, a hiring manager screen, a technical phone screen, and a virtual onsite of three rounds — which reportedly moves faster than the semiconductor-division track.
Preparation Journey
Preparation should focus on Kubernetes control-plane internals and virtualization fundamentals specifically, since the team works on Tanzu's Kubernetes distribution rather than generic cloud-native tooling. Reviewing how VMware's product portfolio has been restructured post-acquisition is also worthwhile, so candidates can speak knowledgeably about which product lines are actively growing versus being sunset.
Why Selected / Rejected
The technical phone screen and first onsite round on synchronization and concurrent data structures reward genuine strength from prior systems-level work. What matters most is being able to speak concretely about the difference between debugging a VM-level issue and a container-orchestration-level issue — since Tanzu sits at the intersection of both, and candidates coming from a pure Kubernetes background without underlying virtualization context tend to fall short here.
Resume Tips
If interviewing for an SRE role on VMware's Tanzu line specifically, don't treat it as a pure Kubernetes interview — have real depth on the virtualization layer underneath, since that's what differentiates VMware's infrastructure from a standard cloud-native stack, and it's a common gap other candidates reportedly have.
Telephonic
The recruiter screen covers background and specifically clarifies that the role sits on the Tanzu Kubernetes platform team rather than legacy VMware virtualization infrastructure, since the two tracks reportedly get confused often by candidates applying broadly to 'VMware' roles post-acquisition.
Managerial
The hiring manager asks about on-call experience specifically, including how large a service the candidate carried a pager for and what the worst production incident was, using the answer to gauge whether the candidate had genuine ownership experience versus only having supported someone else's on-call rotation.
Technical
This round opens with a synchronization question — explaining how a mutex is internally implemented and the tradeoffs of a spinlock versus a blocking lock under high contention — then moves into a live coding problem to implement a thread-safe bounded queue supporting concurrent producers and consumers. A condition variable pair (not-full and not-empty) rather than a single condition variable is the expected approach, avoiding unnecessary wakeups. A common follow-up asks candidates to reason through what happens under spurious wakeup, handled by re-checking the queue state in a while loop rather than an if check.
System Design
Candidates are asked to design a health-check and auto-remediation system for a fleet of Tanzu-managed Kubernetes clusters spanning multiple customer environments. A hierarchical check model — node-level, cluster-control-plane-level, and cross-cluster fleet-level — is a strong direction, since collapsing all checks into a single dashboard makes it hard to tell whether an issue is isolated or systemic. A common follow-up probes false-positive risk for auto-remediation specifically (e.g. auto-restarting a control-plane component that's actually fine but briefly unresponsive under load) — requiring two consecutive failed checks across a minimum interval before triggering any automated remediation action, with a manual override always available, addresses this well.
HR Round
This closing behavioral round covers working through Broadcom's post-acquisition changes to team structure and priorities, asking how candidates would handle ambiguity if their team's product roadmap shifted significantly with little notice. Staying focused on the underlying reliability goals of the role rather than getting anchored to a specific tool or project that might change is the strong answer.
Questions Asked at VMware (Broadcom) in the Site Reliability Engineer Interview
Telephonic Round
The recruiter screen covers background and specifically clarifies that the role sits on the Tanzu Kubernetes platform team rather than legacy VMware virtualization infrastructure, since the two tracks reportedly get confused often by candidates applying broadly to 'VMware' roles …
Managerial Round
The hiring manager asks about on-call experience specifically, including how large a service the candidate carried a pager for and what the worst production incident was, using the answer to gauge whether the candidate had genuine ownership experience versus only having supported …
Technical Round
This round opens with a synchronization question — explaining how a mutex is internally implemented and the tradeoffs of a spinlock versus a blocking lock under high contention — then moves into a live coding problem to implement a thread-safe bounded queue supporting concurrent …
System Design Round
Candidates are asked to design a health-check and auto-remediation system for a fleet of Tanzu-managed Kubernetes clusters spanning multiple customer environments. A hierarchical check model — node-level, cluster-control-plane-level, and cross-cluster fleet-level — is a strong di …
HR Round Round
This closing behavioral round covers working through Broadcom's post-acquisition changes to team structure and priorities, asking how candidates would handle ambiguity if their team's product roadmap shifted significantly with little notice. Staying focused on the underlying reli …
Prepare for this Role
At a Glance
Concepts To Revise
Control Plane
The central management component of a service mesh that distributes configuration to all sidecar proxies. In Istio, the control plane is called istiod. It manages certificate issuance, routing rule distribution, and service discovery - but never handles actual service traffic.
etcd
A distributed key-value store that serves as Kubernetes' primary backing store for all cluster state and configuration data, making it the single source of truth for the entire control plane including nodes, pods, secrets, and configs.
Site Reliability Engineer at Other Companies
Have your own story?
Share it and help the next candidate prepare.
Comments
Loading comments...