You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CustomizingAzdParameters.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,17 +12,16 @@ By default this template will use the environment name as the prefix to prevent
12
12
|`AZURE_LOCATION`| string |`<User selects during deployment>`| Location of the Azure resources. Controls where the infrastructure will be deployed. |
13
13
|`AZURE_ENV_AI_SERVICE_LOCATION`| string |`<User selects during deployment>`| Location of the Azure resources. Controls where the Azure AI Services will be deployed. |
14
14
|`AZURE_ENV_MODEL_DEPLOYMENT_TYPE`| string |`GlobalStandard`| Change the Model Deployment Type (allowed values: Standard, GlobalStandard). |
15
-
|`AZURE_ENV_GPT_MODEL_NAME`| string |`gpt-4o`| Set the Model Name (allowed values: gpt-4o). |
16
-
|`AZURE_ENV_GPT_MODEL_VERSION`| string |`2024-08-06`| Set the Azure model version (allowed values: 2024-08-06) |
15
+
|`AZURE_ENV_GPT_MODEL_NAME`| string |`gpt-5.1`| Set the Model Name (allowed values: gpt-5.1). |
16
+
|`AZURE_ENV_GPT_MODEL_VERSION`| string |`2025-11-13`| Set the Azure model version (allowed values: 2025-11-13) |
17
17
|`AZURE_ENV_GPT_MODEL_CAPACITY`| integer |`150`| Set the Model Capacity (choose a number based on available GPT model capacity in your subscription). |
18
-
|`AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID`| string | Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md)| Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
19
-
|`AZURE_ENV_IMAGE_TAG`| string |`latest`|Set the Image tag Like (allowed values: latest, dev, hotfix)|
18
+
|`AZURE_ENV_EXISTING_LOG_ANALYTICS_WORKSPACE_RID`| string | Guide to get your [Existing Workspace ID](re-use-log-analytics.md)| Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
19
+
|`AZURE_ENV_IMAGE_TAG`| string |`latest`|Tag applied to the backend/frontend images that are built remotely and pushed to the deployment's Azure Container Registry.|
20
20
|`AZURE_ENV_VM_SIZE`| string |`Standard_D2s_v5`| Specifies the size of the Jumpbox Virtual Machine (e.g., `Standard_D2s_v5`, `Standard_D2s_v4`). Set a custom value if `enablePrivateNetworking` is `true`. |
21
21
|`AZURE_ENV_JUMPBOX_ADMIN_USERNAME`| string |`JumpboxAdminUser`| Specifies the administrator username for the Jumpbox Virtual Machine. |
22
22
|`AZURE_ENV_JUMPBOX_ADMIN_PASSWORD`| string |`JumpboxAdminP@ssw0rd1234!`| Specifies the administrator password for the Jumpbox Virtual Machine. |
23
23
|`AZURE_ENV_COSMOS_SECONDARY_LOCATION`| string |*(not set by default)*| Specifies the secondary region for Cosmos DB. Required if `enableRedundancy` is `true`. |
24
24
|`AZURE_EXISTING_AIPROJECT_RESOURCE_ID`| string |*(not set by default)*| Specifies the existing AI Foundry Project Resource ID if it needs to be reused. |
25
-
|`AZURE_ENV_CONTAINER_REGISTRY_ENDPOINT`| string |*(not set by default)*| Specifies the Azure Container Registry endpoint to use for container images. |
Copy file name to clipboardExpand all lines: docs/DeploymentGuide.md
+26-9Lines changed: 26 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -280,42 +280,59 @@ azd config set provision.preflight off
280
280
azd up
281
281
```
282
282
283
+
## Step 5: Build and Push Container Images
284
+
### 5.1 Run Image Build Script
285
+
286
+
1. You can run the ACR build and push script from the project root. Use the appropriate command for your shell:
287
+
288
+
- For Bash (Linux/macOS/WSL):
289
+
290
+
```bash
291
+
bash scripts/build_and_push_images.sh
292
+
```
293
+
294
+
- For PowerShell (Windows):
295
+
296
+
```
297
+
.\scripts\build_and_push_images.ps1
298
+
```
299
+
283
300
**During deployment, you'll be prompted for:**
284
301
1. **Environment name** (e.g., "cmsaapp") - Must be 3-16 characters long, alphanumeric only
285
302
2. **Azure subscription** selection
286
303
3. **Azure region** - Select a region with available GPT model quota
287
304
4. **Resource group** selection (create new or use existing)
288
305
289
-
**Expected Duration:**6-9 minutes for default configuration
306
+
**Expected Duration:**9-14 minutes for default configuration (includes remotely building and pushing the container images)
290
307
291
308
**⚠️ Deployment Issues:** If you encounter errors or timeouts, try a different region as there may be capacity constraints. For detailed error solutions, see our [Troubleshooting Guide](./TroubleShootingSteps.md).
292
309
293
-
### 4.3 Get Application URL
310
+
### 5.2 Get Application URL
294
311
295
312
After successful deployment:
296
313
1. Open [Azure Portal](https://portal.azure.com/)
297
314
2. Navigate to your resource group
298
315
3. Find the Container App with "frontend"in the name
299
316
4. Copy the **Application URI**
300
317
301
-
⚠️ **Important:** Complete [Post-Deployment Steps](#step-5-post-deployment-configuration) before accessing the application.
318
+
⚠️ **Important:** Complete Step 5.1 and Step 6.1 before accessing the application.
302
319
303
-
## Step 5: Post-Deployment Configuration
320
+
## Step 6: Post-Deployment Configuration
304
321
305
-
### 5.1 Configure Authentication (Required)
322
+
### 6.1 Configure Authentication (Required)
306
323
307
324
**This step is mandatory for application access:**
@description('Optional. Image tag applied to the backend/frontend images that are built remotely and pushed to the deployment\'s Azure Container Registry by the post-provision script. Defaults to latest.')
106
+
paramimageTagstring = 'latest'
110
107
111
108
@minLength(1)
112
-
@description('Optional. Version of the GPT model to deploy. Defaults to 2024-08-06.')
113
-
paramgptModelVersionstring = '2024-08-06'
109
+
@description('Optional. Version of the GPT model to deploy. Defaults to 2025-11-13.')
110
+
paramgptModelVersionstring = '2025-11-13'
114
111
115
112
@description('Optional. Use this parameter to use an existing AI project resource ID. Defaults to empty string.')
0 commit comments