Prerequisites — Choose Your Path¶
Before deploying a ROSA HCP cluster, determine who owns each infrastructure layer and what egress/API posture you need.
Three questions¶
-
Does one team run the full Terraform lifecycle from this repo?
→ Full-Stack Deployment -
Does another team pre-provision the VPC (or other infrastructure)?
→ Bring Your Own — Overview -
Is this a zero-egress cluster?
→ Apply the zero-egress overlay in Network Requirements (works with full-stack or BYO)
Decision tree¶
flowchart TD
Start[Start deployment planning]
Start --> Account[Layer 0: Account prerequisites]
Account --> Owner{Who runs Terraform?}
Owner -->|One platform team| FullStack[Layer 1: Full-stack]
Owner -->|Network team owns VPC| BYONet[Layer 2a: BYO network]
Owner -->|Network + IAM teams| BYOAll[Layer 2a + 2b: BYO network and IAM]
FullStack --> EgressQ{zero_egress=true?}
BYONet --> EgressQ
BYOAll --> EgressQ
EgressQ -->|Yes| ZeroOverlay[Zero egress: VPC endpoints only, no NAT]
EgressQ -->|No| StandardOverlay[Standard: NAT or user-managed egress]
ZeroOverlay --> Validate[Run validation scripts]
StandardOverlay --> Validate
Validate --> Apply[make cluster.name.apply]
Layers summary¶
| Layer | Scope | Document | Validation |
|---|---|---|---|
| 0 — Account | AWS account, ROSA Marketplace, quotas, operator tools | Account Prerequisites | make cluster.<name>.validate |
| 1 — Full-stack | Terraform creates VPC, IAM, cluster | Full-Stack Deployment | Account validation before init |
| 2a — BYO network | Pre-provisioned VPC, subnets, endpoints | BYO Network | make cluster.<name>.validate-network |
| 2b — BYO IAM/KMS | Separate security team owns roles/keys | BYO IAM and KMS | Manual handoff checklist |
Customer intake¶
For delivery teams collecting requirements from a customer, use the Customer Intake Form.
Related¶
- Enablement Guide — full adoption path
- Cluster Configurations — example tfvars
- Validation Scripts