Skip to content

Commit

Permalink
Merge pull request #2778 from ldabas-msft/main
Browse files Browse the repository at this point in the history
Modifying Pindown + Stability Changes
  • Loading branch information
ldabas-msft authored Oct 21, 2024
2 parents 122ea00 + f51c2a0 commit 86bd83c
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ az account set --subscription $Env:subscriptionId
az config set extension.use_dynamic_install=yes_without_prompt
Write-Host "`n"
Write-Host "Installing Azure CLI extensions"
az extension add --name connectedk8s --version 1.9.3
az extension add --name connectedk8s --version 1.3.17
az extension add --name k8s-extension
Write-Host "`n"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
}
},
"variables": {
"templateBaseUrl": "[concat('https://raw.githubusercontent.com/', parameters('githubAccount'), '/azure_arc/', parameters('githubBranch'), '/azure_edge_iot_ops_jumpstart/acsa_fault_detection/')]",
"templateBaseUrl": "[concat('https://raw.githubusercontent.com/', parameters('githubAccount'), '/azure_arc/refs/heads/', parameters('githubBranch'), '/azure_edge_iot_ops_jumpstart/acsa_fault_detection/')]",
"vmName": "[concat(parameters('vmName'))]",
"publicIpAddressName": "[concat(parameters('vmName'), '-PIP' )]",
"networkInterfaceName": "[concat(parameters('vmName'),'-NIC')]",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vmSize": {
"value": "Standard_D8s_v3"
},
"vmName": {
"value": "ACSA-Win-Demo"
},
"kubernetesDistribution": {
"value": "k3s"
},
"windowsNode": {
"value": false
},
"adminUsername": {
"value": "arcdemo"
},
"adminPassword": {
"value": "ArcPassword123!!"
},
"appId": {
"value": "XXXXXXXXX"
},
"password": {
"value": "XXXXXXXXXX"
},
"tenantId": {
"value": "XXXXXXXXX"
},
"subscriptionId": {
"value": "XXXXXXXXXX"
},
"location": {
"value": "XXXXXXXX"
},
"deployBastion": {
"value": true
},
"bastionHostName": {
"value": "Arc-Win-Demo-Bastion"
},
"storageAccountName": {
"value": "XXXXXXX"
},
"storageContainer": {
"value": "fault-detection"
}
}
}

0 comments on commit 86bd83c

Please sign in to comment.