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
30 changes: 30 additions & 0 deletions docs/azure_jumpstart_localbox/deployment_az/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Azure Bicep is used to deploy LocalBox into your Azure subscription. Read on to
Run the following PowerShell commands to register:

```powershell
Register-AzResourceProvider -ProviderNamespace "Microsoft.Compute"
Register-AzResourceProvider -ProviderNamespace "Microsoft.HybridCompute"
Register-AzResourceProvider -ProviderNamespace "Microsoft.GuestConfiguration"
Register-AzResourceProvider -ProviderNamespace "Microsoft.HybridConnectivity"
Expand All @@ -31,11 +32,22 @@ Azure Bicep is used to deploy LocalBox into your Azure subscription. Read on to
Register-AzResourceProvider -ProviderNamespace "Microsoft.Storage"
Register-AzResourceProvider -ProviderNamespace "Microsoft.Insights"
Register-AzResourceProvider -ProviderNamespace "Microsoft.KeyVault"
Register-AzResourceProvider -ProviderNamespace "Microsoft.Network"

Register-AzProviderFeature -ProviderNamespace "Microsoft.Network" -FeatureName "AllowBringYourOwnPublicIpAddress"

do {
Start-Sleep -Seconds 10
$feature = Get-AzProviderFeature -ProviderNamespace "Microsoft.Network" -FeatureName "AllowBringYourOwnPublicIpAddress"
} until ($feature.RegistrationState -eq "Registered")

Register-AzResourceProvider -ProviderNamespace "Microsoft.Network"
```

Alternatively, you can register these providers using Azure CLI:

```shell
az provider register --namespace Microsoft.Compute
az provider register --namespace Microsoft.HybridCompute
az provider register --namespace Microsoft.GuestConfiguration
az provider register --namespace Microsoft.HybridConnectivity
Expand All @@ -49,8 +61,26 @@ Azure Bicep is used to deploy LocalBox into your Azure subscription. Read on to
az provider register --namespace Microsoft.Storage
az provider register --namespace Microsoft.Insights
az provider register --namespace Microsoft.Keyvault
az provider register --namespace Microsoft.Network

az feature register \
--namespace Microsoft.Network \
--name AllowBringYourOwnPublicIpAddress

az feature show \
--namespace Microsoft.Network \
--name AllowBringYourOwnPublicIpAddress \
--query properties.state \
--output tsv

az provider register \
--namespace Microsoft.Network \
--wait

```

> **Note:** Provider feature registration is asynchronous. Wait until Microsoft.Network/AllowBringYourOwnPublicIpAddress reports Registered, then re-register Microsoft.Network to propagate the feature before deploying LocalBox.

- Clone the Arc Jumpstart GitHub repository

```shell
Expand Down
62 changes: 62 additions & 0 deletions docs/release_notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,68 @@ weight: 6

# Arc Jumpstart release notes

## November 2025

### Release highlights

- Secret Store extension for Azure Arc-enabled Kubernetes clusters reaches General Availability (GA)

### Jumpstart ArcBox

- No updates for this release

### Jumpstart LocalBox

- No updates for this release

### Jumpstart Drops

- [Update: "Using Secret Store extension to fetch secrets in Azure Arc-enabled Kubernetes cluster" is now in GA](https://jumpstart.azure.com/azure_jumpstart_drops?drop=Using%20Secret%20Store%20extension%20to%20fetch%20secrets%20in%20Azure%20Arc-enabled%20Kubernetes%20cluster)

## October 2025

### Release highlights

- Critical fix for ArcBox WinGet bootstrap failures that were causing deployment issues
- LocalBox updated to Azure Local 2509 solution version with enhanced features and stability
- New Jumpstart Drop featuring OPC UA Server integration with Azure IoT Operations

### Jumpstart ArcBox

- [[Bug / Issue]: WinGet bootstrap fails and causes ArcBox deployment to fail #3328](https://github.com/microsoft/azure_arc/issues/3328)

### Jumpstart LocalBox

- [[Feature Request]: Update LocalBox to the 2509 solution version of Azure Local #3319](https://github.com/microsoft/azure_arc/issues/3319)

### Jumpstart Drops

- [New: OPC UA Server connected to AIO](https://jumpstart.azure.com/azure_jumpstart_drops?drop=OPC%20UA%20Server%20connected%20to%20AIO)

## September 2025

### Release highlights

- Resolved critical bootstrap issues affecting Client VM initialization when using Azure Bastion
- Improved network configuration and security posture across ArcBox deployments
- 3 new Jumpstart Drops focusing on Azure Arc SQL optimization, Edge AI capabilities, and video search applications

### Jumpstart ArcBox

- [Bug / Issue: ArcBox - Client VM Bootstrap issues when using Bastion #3312](https://github.com/microsoft/azure_arc/issues/3312)
- [Feature Request: ArcBox - Add support for deployment without public IP #3315](https://github.com/microsoft/azure_arc/issues/3315)
- [Enhancement: Improve ArcBox network configuration and security #3314](https://github.com/microsoft/azure_arc/pull/3314)

### Jumpstart Drops

- [New: Azure Arc SQL LeastPrivilege Activation](https://jumpstart.azure.com/azure_jumpstart_drops?drop=Azure%20Arc%20SQL%20LeastPrivilege%20Activation)
- [New: Edge RAG enabled by Azure Arc](https://jumpstart.azure.com/azure_jumpstart_drops?drop=Edge%20RAG%20enabled%20by%20Azure%20Arc)
- [New: Image-Based Video Search Sample Application](https://jumpstart.azure.com/azure_jumpstart_drops?drop=Image-Based%20Video%20Search%20Sample%20Application)

### Jumpstart SDK

- No updates for this release

## August 2025

### Release highlights
Expand Down