Skip to content

Commit b54047a

Browse files
committed
fix links
1 parent c0ec243 commit b54047a

File tree

14 files changed

+56
-75
lines changed

14 files changed

+56
-75
lines changed

articles/azure-resource-manager/management/relocation/relocation-container-registry.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To understand the possible downtimes involved, see [Cloud Adoption Framework for
5858
5959
### Export template
6060
61-
To get started, export a Resource Manager template. This template contains settings that describe your Container Registry. For more information on how to use exported templates, see [Use exported template from the Azure portal](../template-tutorial-export-template.md) and the [template reference](/azure/templates/microsoft.containerregistry/registries).
61+
To get started, export a Resource Manager template. This template contains settings that describe your Container Registry. For more information on how to use exported templates, see [Use exported template from the Azure portal](../../templates/template-tutorial-export-template.md) and the [template reference](/azure/templates/microsoft.containerregistry/registries).
6262
6363
1. In the [Azure portal](https://portal.azure.com), navigate to your source registry.
6464
1. In the menu, under **Automation**, select **Export template** > **Download**.
@@ -128,9 +128,7 @@ az deployment group create --resource-group myResourceGroup \
128128
After creating the registry in the target region:
129129

130130
1. Use the [az acr import](/cli/azure/acr#az-acr-import) command, or the equivalent PowerShell command `Import-AzContainerImage`, to import images and other artifacts you want to preserve from the source registry to the target registry. For command examples, see [Import container images to a container registry](/azure/container-registry/container-registry-import-images).
131-
132131
1. Use the Azure CLI commands [az acr repository list](/cli/azure/acr/repository#az-acr-repository-list) and [az acr repository show-tags](/cli/azure/acr/repository#az-acr-repository-show-tags), or Azure PowerShell equivalents, to help enumerate the contents of your source registry.
133-
134132
1. Run the import command for individual artifacts, or script it to run over a list of artifacts.
135133

136134
The following sample Azure CLI script enumerates the source repositories and tags and then imports the artifacts to a target registry in the same Azure subscription. Modify as needed to import specific repositories or tags. To import from a registry in a different subscription or tenant, see examples in [Import container images to a container registry](/azure/container-registry/container-registry-import-images).
@@ -156,19 +154,14 @@ done
156154
```
157155

158156
1. Associate the dependent resources to the target Azure Container Registry such as log analytics workspace in Diagnostic settings.
159-
160157
1. Configure Azure Container Registry integration with both type of AKS clusters, provisioned or yet to be provisioned by running the following command:
161158

162159
```azurecli
163-
164160
Set-AzAksCluster -Name myAKSCluster -ResourceGroupName myResourceGroup -AcrNameToAttach <acr-name>
165-
166161
```
167162

168163
1. Make the necessary changes to the Kubernetes manifest file to integrate same with relocated Azure Container Registry (ACR).
169-
170164
1. Update development and deployment systems to use the target registry instead of the source registry.
171-
172165
1. Update any client firewall rules to allow access to the target registry.
173166

174167
## Verify

articles/azure-resource-manager/management/relocation/relocation-event-hub.md

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Modify the template by changing the Event Hubs namespace name and region.
240240
},
241241
```
242242

243-
2. Edit the **location** property in the **template.json** file to the target region. This example sets the target region to `centralus`.
243+
1. Edit the **location** property in the **template.json** file to the target region. This example sets the target region to `centralus`.
244244

245245
```json
246246
"resources": [
@@ -323,38 +323,38 @@ Modify the template by changing the Event Hubs namespace name and region.
323323
Get-AzLocation | format-table
324324
```
325325

326-
3. Remove resources of typ private endpoint in the template.
326+
1. Remove resources of typ private endpoint in the template.
327327

328328
```json
329329
{
330330
"type": "Microsoft.EventHub/namespaces/privateEndpointConnections",
331331
}
332332
```
333333

334-
4. If you configured a service endpoint in your Event Hubs, in the `networkrulesets` section, under `virtualNetworkRules`, add the rule for the target subnet. Ensure that the `ignoreMissingVnetServiceEndpoint` flag is set to False, so that the IaC fails to deploy the Event Hubs in case the service endpoint isn’t configured in the target region.
334+
1. If you configured a service endpoint in your Event Hubs, in the `networkrulesets` section, under `virtualNetworkRules`, add the rule for the target subnet. Ensure that the `ignoreMissingVnetServiceEndpoint` flag is set to False, so that the IaC fails to deploy the Event Hubs in case the service endpoint isn’t configured in the target region.
335335

336-
**parameter.json**
336+
**parameter.json**
337337

338-
```json
339-
{
340-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
341-
"contentVersion": "1.0.0.0",
342-
"parameters": {
343-
...
344-
"target_vnet_externalid": {
345-
"value": "virtualnetwork-externalid"
346-
},
347-
"target_subnet_name": {
348-
"value": "subnet-name"
349-
}
350-
}
351-
}
352-
```
338+
```json
339+
{
340+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
341+
"contentVersion": "1.0.0.0",
342+
"parameters": {
343+
...
344+
"target_vnet_externalid": {
345+
"value": "virtualnetwork-externalid"
346+
},
347+
"target_subnet_name": {
348+
"value": "subnet-name"
349+
}
350+
}
351+
}
352+
```
353353

354-
**_template.json**
354+
**_template.json**
355355

356-
```json
357-
{
356+
```json
357+
{
358358
"type": "Microsoft.EventHub/namespaces/networkrulesets",
359359
"apiVersion": "2023-01-01-preview",
360360
"name": "[concat(parameters('namespaces_name'), '/default')]",
@@ -376,10 +376,11 @@ Modify the template by changing the Event Hubs namespace name and region.
376376
"ipRules": [],
377377
"trustedServiceAccessEnabled": false
378378
}
379-
}
380-
```
379+
}
380+
```
381381

382382
1. Select **Save** to save the template.
383+
383384
---
384385

385386
## Redeploy

articles/azure-resource-manager/management/relocation/relocation-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ Then you can package and redeploy the actual application source code or containe
9999

100100
There are several ways to create a function app and related resources in Azure at the target region:
101101

102-
- **Deployment templates**: If you originally deployed your function app using infrastructure-as-code (IaC) files (Bicep, ARM templates, or Terraform), you can update those previous deployments to target the new region and use them to recreate resources in the new region. If you no longer have these deployment files, you can always [download an ARM template for your existing resource group from the Azure portal](../export-template-portal.md).
103-
- **Azure CLI/PowerShell scripts**: If you originally deployed your function app using Azure CLI or Azure PowerShell scripts, you can update these scripts to instead target the new region and run them again. If you no longer have these scripts, then you can also [download an ARM template for your existing resource group from the Azure portal](../export-template-portal.md).
102+
- **Deployment templates**: If you originally deployed your function app using infrastructure-as-code (IaC) files (Bicep, ARM templates, or Terraform), you can update those previous deployments to target the new region and use them to recreate resources in the new region. If you no longer have these deployment files, you can always [download an ARM template for your existing resource group from the Azure portal](../../templates/export-template-portal.md).
103+
- **Azure CLI/PowerShell scripts**: If you originally deployed your function app using Azure CLI or Azure PowerShell scripts, you can update these scripts to instead target the new region and run them again. If you no longer have these scripts, then you can also [download an ARM template for your existing resource group from the Azure portal](../../templates/export-template-portal.md).
104104
- **Azure portal**: If you created your function app in the portal originally or don't feel comfortable using scripts or IaC files, you can just recreate everything in the portal. Make sure to use the same [hosting plan](../../../azure-functions/functions-scale.md#overview-of-plans), [language runtime](../../../azure-functions/supported-languages.md), and language version as your original app.
105105

106106
### Review configured resources

articles/azure-resource-manager/management/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
- name: Move encrypted Azure VMs to another region
103103
href: ../../resource-mover/tutorial-move-region-encrypted-virtual-machines.md?toc=/azure/azure-resource-manager/management/toc.json
104104
- name: Virtual Machine Scale Sets
105-
href: ./relocation-virtual-machine-scale-sets.md
105+
href: ./relocation/relocation-virtual-machine-scale-sets.md
106106
- name: Containers
107107
items:
108108
- name: Azure Container Registry

articles/backup/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
- name: Delete
310310
href: backup-azure-delete-vault.md
311311
- name: Relocate
312-
href: ../operational-excellence/relocation-backup.md?toc=/azure/backup/toc.json
312+
href: ../azure-resource-manager/management/relocation/relocation-backup.md?toc=/azure/backup/toc.json
313313
- name: Manage
314314
href: backup-azure-manage-windows-server.md
315315
- name: Backup vault

articles/event-grid/toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -619,11 +619,11 @@ items:
619619
- name: Relocate
620620
items:
621621
- name: Relocate system topics across regions
622-
href: ../operational-excellence/relocation-event-grid-system-topics.md?toc=/azure/event-grid/toc.json
622+
href: ../azure-resource-manager/management/relocation/relocation-event-grid-system-topics.md?toc=/azure/event-grid/toc.json
623623
- name: Relocate custom topics across regions
624-
href: ../operational-excellence/relocation-event-grid-custom-topics.md?toc=/azure/event-grid/toc.json
624+
href: ../azure-resource-manager/management/relocation/relocation-event-grid-custom-topics.md?toc=/azure/event-grid/toc.json
625625
- name: Relocate domains across regions
626-
href: ../operational-excellence/relocation-event-grid-domains.md?toc=/azure/event-grid/toc.json
626+
href: ../azure-resource-manager/management/relocation/relocation-event-grid-domains.md?toc=/azure/event-grid/toc.json
627627
- name: Secure
628628
items:
629629
- name: Publish events securely over a private link

articles/event-hubs/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@
368368
- name: Move
369369
items:
370370
- name: Move a namespace to another region
371-
href: ../operational-excellence/relocation-event-hub.md?toc=/azure/event-hubs/TOC.json
371+
href: ../azure-resource-manager/management/relocation/relocation-event-hub.md?toc=/azure/event-hubs/TOC.json
372372
- name: Move a dedicated cluster to another region
373-
href: ../operational-excellence/relocation-event-hub-cluster.md?toc=/azure/event-hubs/TOC.json
373+
href: ../azure-resource-manager/management/relocation/relocation-event-hub-cluster.md?toc=/azure/event-hubs/TOC.json
374374
- name: Reference
375375
items:
376376
- name: Monitor data reference

articles/firewall/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ items:
210210
- name: Best practices for performance
211211
href: firewall-best-practices.md
212212
- name: Relocate to another region
213-
href: ../operational-excellence/relocation-firewall.md?toc=/azure/firewall/toc.json&bc=/azure/firewall/breadcrumb/toc.json
213+
href: ../azure-resource-manager/management/relocation/relocation-firewall.md?toc=/azure/firewall/toc.json&bc=/azure/firewall/breadcrumb/toc.json
214214
- name: Remote work support
215215
href: remote-work-support.md
216216
- name: Reference

articles/private-link/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
- name: Manage private endpoints
102102
href: manage-private-endpoint.md
103103
- name: Relocate Private Link Service to another region
104-
href: ../operational-excellence/relocation-private-link.md?toc=/azure/private-link/toc.json
104+
href: ../azure-resource-manager/management/relocation/relocation-private-link.md?toc=/azure/private-link/toc.json
105105
- name: Azure Security blog
106106
href: https://techcommunity.microsoft.com/category/azure-network-security/blog/azurenetworksecurityblog
107107
- name: Network security perimeter

articles/reliability/migrate-monitor-log-analytics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The new cluster isn’t billed during its first day to avoid double billing duri
5555

5656
Learn more about:
5757

58-
- [Relocate Log Analytics workspaces to another region](../operational-excellence/relocation-log-analytics.md)
58+
- [Relocate Log Analytics workspaces to another region](../azure-resource-manager/management/relocation/relocation-log-analytics.md)
5959

6060
- [Azure Monitor Logs Dedicated Clusters](/azure/azure-monitor/logs/logs-dedicated-clusters)
6161

0 commit comments

Comments
 (0)