Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,13 @@
"description": "Address prefix for the Agent subnet."
}
},
"searchSubnetPrefix": {
"type": "string",
"defaultValue": "10.0.6.0/24",
"metadata": {
"description": "Address prefix for the Search subnet."
}
},
"nodePoolVmSize": {
"type": "string",
"defaultValue": "Standard_D4s_v6",
Expand Down Expand Up @@ -259,6 +266,20 @@
}
]
}
},
{
"name": "searchSubnet",
"properties": {
"addressPrefix": "[parameters('searchSubnetPrefix')]",
"delegations": [
{
"name": "Microsoft.App.environments",
"properties": {
"serviceName": "Microsoft.App/environments"
}
}
]
}
}
]
}
Expand Down Expand Up @@ -377,6 +398,9 @@
"apiVersion": "2026-02-01-preview",
"name": "[parameters('supercomputerName')]",
"location": "[parameters('location')]",
"tags": {
"version": "v2"
},
"properties": {
"subnetId": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('vnetName'), 'aksSubnet')]",
"identities": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
"agentSubnetPrefix": {
"value": "10.0.5.0/24"
},
"searchSubnetPrefix": {
"value": "10.0.6.0/24"
},
"nodePoolVmSize": {
"value": "Standard_D4s_v6"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ param privateEndpointSubnetPrefix string = '10.0.4.0/24'
@description('Address prefix for the Agent subnet.')
param agentSubnetPrefix string = '10.0.5.0/24'

@description('Address prefix for Search Subnet.')
param searchSubnetPrefix string = '10.0.6.0/24'

@description('VM SKU for the Node Pool.')
param nodePoolVmSize string = 'Standard_D4s_v6'

Expand Down Expand Up @@ -153,6 +156,20 @@ resource vnet 'Microsoft.Network/virtualNetworks@2024-05-01' = {
]
}
}
{
name: 'searchSubnet'
properties: {
addressPrefix: searchSubnetPrefix
delegations: [
{
name: 'Microsoft.App.environments'
properties: {
serviceName: 'Microsoft.App/environments'
}
}
]
}
}
]
}
}
Expand Down Expand Up @@ -251,6 +268,9 @@ resource acrPullAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01'
resource supercomputer 'Microsoft.Discovery/supercomputers@2026-02-01-preview' = {
name: supercomputerName
location: location
tags: {
version: 'v2'
}
dependsOn: [
vnet
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
"description": "This template deploys the full Microsoft Discovery stack including a Virtual Network, User-Assigned Managed Identity, Storage Account, role assignments, Supercomputer with a Node Pool, Workspace with a Chat Model Deployment, Storage Container, and Project using the 2026-02-01-preview API.",
"summary": "Deploy the complete Microsoft Discovery stack — networking, identity, storage, supercomputer, workspace, and project.",
"githubUsername": "mukeshdua",
"dateUpdated": "2026-04-15",
"dateUpdated": "2026-05-07",
"validationType": "Manual",
"testResult": "N/A",
"testResult": {
"deployments": {
"templateFileName": "main.bicep",
"correlationId": "55cada89-bff3-4932-bbdd-5941e1f5a032",
"deploymentName": "discovery-deployment"
}
},
"environments": [
"AzureCloud"
]
Expand Down
Loading