fix(azure-aks-multicluster): move Aviatrix gateways off deprecated DSv3 family - #81
Open
cmchenr wants to merge 1 commit into
Open
fix(azure-aks-multicluster): move Aviatrix gateways off deprecated DSv3 family#81cmchenr wants to merge 1 commit into
cmchenr wants to merge 1 commit into
Conversation
…v3 family Azure no longer grants self-service quota increases for Standard DSv3 (request fails with `DeprecatedQuotaType`, even below the current limit). Hardcoding `instance_size = "Standard_D2s_v3"` on the transit, frontend spoke, backend spoke, and DB spoke gateways is therefore a footgun for anyone deploying this blueprint fresh onto a subscription without existing DSv3 headroom — quota requests to fix it are refused outright. Switch all 4 gateways to Standard_D2s_v5 (same 2 vCPU / 8 GB shape, same $0.096/hr on-demand rate in eastus2 at time of writing), which is still eligible for self-service quota increases. Update the README's quota table, fail-fast pre-flight check, resource/cost tables, and family-quota note to match. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The 4 Aviatrix gateways in this blueprint's
networklayer (transit, frontend spoke, backend spoke, DB spoke) hardcodeinstance_size = "Standard_D2s_v3". Azure has deprecated theStandard DSv3family for new self-service quota grants — a quota-increase request againststandardDSv3Familyis rejected outright withDeprecatedQuotaType, even when the subscription hasn't hit its current limit. On a subscription where DSv3 headroom is already consumed by other workloads (e.g. by other resources sharing the same region), this blueprint becomes undeployable with no self-service remediation path.This PR switches all 4 gateways to
Standard_D2s_v5— same 2 vCPU / 8 GB shape, same $0.096/hr on-demand rate in eastus2 (verified via the Azure Retail Prices API at time of writing) — which is still eligible for self-service quota increases. Updated the README's quota table, fail-fast pre-flight check, resource tables, cost tables, and family-quota callout to match.Type of Change
Blueprint Checklist (for new or modified blueprints)
Documentation
Code Quality
terraform fmtpassesterraform validatepassessensitive = true— unaffectedvar.name_prefix— unaffectedTesting
terraform fmt/validateonly (VM size swap, no new resources)Catalog Update
Control Plane Version Tested
terraform validateagainst provider~> 8.2)Cloud Environment
🤖 Generated with Claude Code