chore: Drop quota check validation #143
Merged
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.
Purpose
This pull request removes the model deployment quota validation scripts and associated preprovision hooks from the Azure deployment pipeline. The changes simplify the deployment process by eliminating quota checks and related logic for AI model deployments.
Removal of quota validation logic:
azure.yaml
: Deleted preprovision hooks for both POSIX and Windows environments that ran the quota validation scripts during deployment.scripts/validate_model_deployment_quota.ps1
: Removed the PowerShell script responsible for validating model deployment quotas. This script included logic for checking subscription quotas, parsing deployment parameters, and validating AI Foundry configurations.scripts/validate_model_deployment_quota.sh
: Removed the Bash script counterpart for validating model deployment quotas. It performed similar functionality as the PowerShell script but was tailored for POSIX environments.Removal of individual model quota validation scripts:
scripts/validate_model_quota.ps1
: Deleted the PowerShell script for validating individual model quotas, including logic for checking region-specific quotas and updating deployment parameters.scripts/validate_model_quota.sh
: Removed the Bash script for validating individual model quotas, which handled quota checks and fallback logic for regions with insufficient capacity.Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information