Skip to content

Commit daca71a

Browse files
Merge pull request #216369 from alexbuckgit/alexbuckgit/docutune-autopr-20221028-180334-8074875
[BULK] Fix Azure CLI issues
2 parents 61d582e + 14935b0 commit daca71a

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

articles/app-service/includes/tutorial-python-postgresql-app/migrate-app-database-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.custom: devx-track-python
1111
---
1212

1313

14-
Run `az webpp ssh` to open an SSH session for the web app in the browser:
14+
Run `az webapp ssh` to open an SSH session for the web app in the browser:
1515

1616
#### [bash](#tab/terminal-bash)
1717

articles/app-service/tutorial-custom-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ To deploy a container to Azure App Service, you first create a web app on App Se
411411
412412
An App Service plan corresponds to the virtual machine that hosts the web app. By default, the previous command uses an inexpensive [B1 pricing tier](https://azure.microsoft.com/pricing/details/app-service/linux/) that is free for the first month. You can control the tier with the `--sku` parameter.
413413
414-
1. Create the web app with the [`az webpp create`](/cli/azure/webapp#az-webapp-create) command:
414+
1. Create the web app with the [`az webapp create`](/cli/azure/webapp#az-webapp-create) command:
415415
416416
```azurecli-interactive
417417
az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app-name> --deployment-container-image-name <registry-name>.azurecr.io/appsvc-tutorial-custom-image:latest

articles/application-gateway/ingress-controller-install-new.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ This step will add the following components to your subscription:
7979
wget https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/master/deploy/azuredeploy.json -O template.json
8080
```
8181
82-
1. Deploy the Azure Resource Manager template using `az cli`. The deployment might take up to 5 minutes.
82+
1. Deploy the Azure Resource Manager template using the Azure CLI. The deployment might take up to 5 minutes.
83+
8384
```azurecli
8485
resourceGroupName="MyResourceGroup"
8586
location="westus2"

articles/azure-arc/kubernetes/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ az extension add --name k8s-configuration
247247
> [!NOTE]
248248
> Eventually Azure will stop supporting GitOps with Flux v1, so begin using [Flux v2](./tutorial-use-gitops-flux2.md) as soon as possible.
249249
250-
To help troubleshoot issues with `sourceControlConfigurations` resource (Flux v1), run these az commands with `--debug` parameter specified:
250+
To help troubleshoot issues with `sourceControlConfigurations` resource (Flux v1), run these Azure CLI commands with `--debug` parameter specified:
251251

252252
```azurecli
253253
az provider show -n Microsoft.KubernetesConfiguration --debug
@@ -304,7 +304,7 @@ metadata:
304304

305305
### Flux v2 - General
306306

307-
To help troubleshoot issues with `fluxConfigurations` resource (Flux v2), run these az commands with `--debug` parameter specified:
307+
To help troubleshoot issues with `fluxConfigurations` resource (Flux v2), run these Azure CLI commands with the `--debug` parameter specified:
308308

309309
```azurecli
310310
az provider show -n Microsoft.KubernetesConfiguration --debug

articles/backup/tutorial-restore-disk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ If the backed-up VM has managed disks and if the intent is to restore managed di
8686
```
8787
8888
> [!WARNING]
89-
> If **target-resource-group** isn't provided, then the managed disks will be restored as unmanaged disks to the given storage account. This will have significant consequences to the restore time since the time taken to restore the disks entirely depends on the given storage account. You'll get the benefit of instant restore only when the target-resource-group parameter is given. If the intention is to restore managed disks as unmanaged then don't provide the **target-resource-group** parameter and instead provide the parameter **restore-as-unmanaged-disk** parameter as shown below. This parameter is available from az 3.4.0 onwards.
89+
> If **target-resource-group** isn't provided, then the managed disks will be restored as unmanaged disks to the given storage account. This will have significant consequences to the restore time since the time taken to restore the disks entirely depends on the given storage account. You'll get the benefit of instant restore only when the target-resource-group parameter is given. If the intention is to restore managed disks as unmanaged then don't provide the **target-resource-group** parameter and instead provide the **restore-as-unmanaged-disk** parameter as shown below. This parameter is available from Azure CLI 3.4.0 onwards.
9090
9191
```azurecli-interactive
9292
az backup restore restore-disks \

articles/service-connector/tutorial-django-webapp-postgres-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Having issues? Refer first to the [Troubleshooting guide](../app-service/configu
355355

356356
Django database migrations ensure that the schema in the PostgreSQL on Azure database matches with your code.
357357

358-
1. Run `az webpp ssh` to open an SSH session for the web app in the browser:
358+
1. Run `az webapp ssh` to open an SSH session for the web app in the browser:
359359

360360
```azurecli
361361
az webapp ssh

0 commit comments

Comments
 (0)