Skip to content

Commit 0b60e5b

Browse files
Reduce GPT minimum capacity to 5 in deployment workflows
1 parent 7e6903d commit 0b60e5b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy-waf.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
2222
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
2323
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
24-
export GPT_MIN_CAPACITY="140"
24+
export GPT_MIN_CAPACITY="5"
2525
export AZURE_REGIONS="${{ vars.AZURE_REGIONS }}"
2626
2727
chmod +x infra/scripts/checkquota.sh
@@ -104,6 +104,7 @@ jobs:
104104
--parameters \
105105
useWafAlignedArchitecture=true \
106106
aiDeploymentsLocation='${{ env.AZURE_LOCATION }}' \
107+
gptModelCapacity=5 \
107108
virtualMachineConfiguration='{"adminUsername": "adminuser", "adminPassword": "P@ssw0rd1234"}' \
108109
logAnalyticsWorkspaceConfiguration='{"existingWorkspaceResourceId": ""}'
109110

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
2222
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
2323
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
24-
export GPT_MIN_CAPACITY="140"
24+
export GPT_MIN_CAPACITY="5"
2525
export AZURE_REGIONS="${{ vars.AZURE_REGIONS }}"
2626
2727
chmod +x infra/scripts/checkquota.sh
@@ -104,6 +104,7 @@ jobs:
104104
--parameters \
105105
useWafAlignedArchitecture=false \
106106
aiDeploymentsLocation='${{ env.AZURE_LOCATION }}' \
107+
gptModelCapacity=5 \
107108
logAnalyticsWorkspaceConfiguration='{"dataRetentionInDays": 30, "existingWorkspaceResourceId": ""}' \
108109
applicationInsightsConfiguration='{"retentionInDays": 30}' \
109110
virtualNetworkConfiguration='{"enabled": false}' \

0 commit comments

Comments
 (0)