Skip to content

Commit 93f6e6f

Browse files
authored
Merge pull request #78625 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 57c89de + 10d3306 commit 93f6e6f

14 files changed

+19
-16
lines changed

articles/app-service/containers/tutorial-javascript-vscode-create-registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You need a container registry to push your app image to once the image is built.
1414

1515
## Using Azure Container Registry
1616

17-
[Azure Container Registry](https://azure.microsoft.com/en-us/services/container-registry/) (ACR) is a private, secure, hosted registry for your images. ACR is used in this tutorial, but the steps are the same for other registry services.
17+
[Azure Container Registry](https://azure.microsoft.com/services/container-registry/) (ACR) is a private, secure, hosted registry for your images. ACR is used in this tutorial, but the steps are the same for other registry services.
1818

1919
Create an Azure Container Registry by signing in to the [Azure portal](https://portal.azure.com) then selecting **Create a resource** > **Containers** > **Container Registry**.
2020

articles/app-service/containers/tutorial-javascript-vscode-deploy-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.devlang: javascript
1010
---
1111
# Deploy the image to Azure App Service
1212

13-
Now that you have your app image built and pushed to a registry, you can deploy to [Azure App Service](https://azure.microsoft.com/en-us/services/app-service/) directly from the Docker extension explorer.
13+
Now that you have your app image built and pushed to a registry, you can deploy to [Azure App Service](https://azure.microsoft.com/services/app-service/) directly from the Docker extension explorer.
1414

1515
## Deploy the image
1616

articles/app-service/containers/tutorial-javascript-vscode-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ ms.devlang: javascript
1010
---
1111
# Deploy to Azure using Docker
1212

13-
This quickstart shows you how to containerize an existing Node.js application using [Docker](https://www.docker.com/), then use Visual Studio Code to push the app image to a Docker registry and deploy it to [Azure Web App for Containers](https://azure.microsoft.com/en-us/services/app-service/containers/).
13+
This quickstart shows you how to containerize an existing Node.js application using [Docker](https://www.docker.com/), then use Visual Studio Code to push the app image to a Docker registry and deploy it to [Azure Web App for Containers](https://azure.microsoft.com/services/app-service/containers/).
1414

1515
## Prerequisites
1616

17-
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/en-us/free/?utm_source=campaign&utm_campaign=vscode-tutorial-docker-extension&mktingSource=vscode-tutorial-docker-extension) for a free account with $200 in Azure credits to try out any combination of services.
17+
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/free/?utm_source=campaign&utm_campaign=vscode-tutorial-docker-extension&mktingSource=vscode-tutorial-docker-extension) for a free account with $200 in Azure credits to try out any combination of services.
1818

1919
You need [Visual Studio Code](https://code.visualstudio.com/) installed along with [Node.js and npm](https://nodejs.org/en/download) and [Docker](https://www.docker.com/community-edition).
2020

articles/app-service/tutorial-javascript-vscode-deploy-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In the **AZURE APP SERVICE** explorer, click the blue up arrow icon to deploy yo
2525

2626
2. Type a globally unique name for your Web App and press ENTER. Valid characters for an app name are 'a-z', '0-9', and '-'.
2727

28-
3. Choose a location in a [region](https://azure.microsoft.com/en-us/regions/) near you or near other services you may need to access.
28+
3. Choose a location in a [region](https://azure.microsoft.com/regions/) near you or near other services you may need to access.
2929

3030
4. Choose your **Node.js version**, LTS is recommended.
3131

articles/app-service/tutorial-javascript-vscode-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This tutorial walks you through deploying a Node.js application to Azure using t
1414

1515
## Prerequisites
1616

17-
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/en-us/free/?utm_source=campaign&utm_campaign=vscode-tutorial-app-service-extension&mktingSource=vscode-tutorial-app-service-extension) for a free account with $200 in Azure credits to try out any combination of services.
17+
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/free/?utm_source=campaign&utm_campaign=vscode-tutorial-app-service-extension&mktingSource=vscode-tutorial-app-service-extension) for a free account with $200 in Azure credits to try out any combination of services.
1818

1919
You need [Visual Studio Code](https://code.visualstudio.com/) installed along with [Node.js and npm](https://nodejs.org/en/download), the Node.js package manager.
2020

articles/azure-functions/tutorial-javascript-vscode-create-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When prompted, choose HTTP trigger, enter `HttpTriggerJS` as the name, and choos
2626

2727
![Choose Authentication](./media/tutorial-javascript-vscode/create-function-anonymous-auth.png)
2828

29-
Upon completion, a new directory is created within your Function app named `HttpTriggerJS` that includes `index.js`and `functions.json` files. The `index.js` file contains the source code that responds to the HTTP request and `functions.json` contains the [binding configuration](https://docs.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings) for the HTTP trigger.
29+
Upon completion, a new directory is created within your Function app named `HttpTriggerJS` that includes `index.js`and `functions.json` files. The `index.js` file contains the source code that responds to the HTTP request and `functions.json` contains the [binding configuration](https://docs.microsoft.com/azure/azure-functions/functions-triggers-bindings) for the HTTP trigger.
3030

3131
![Completed Project](./media/tutorial-javascript-vscode/functions-vscode-intro.png)
3232

articles/azure-functions/tutorial-javascript-vscode-deploy-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.devlang: javascript
1010
---
1111
# Deploy your App using Azure Functions
1212

13-
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/en-us/free/serverless?utm_source=campaign&utm_campaign=vscode-tutorial-functions-extension&mktingSource=vscode-tutorial-functions-extension) for a free account with $200 in Azure credits to try out any combination of services.
13+
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/free/serverless?utm_source=campaign&utm_campaign=vscode-tutorial-functions-extension&mktingSource=vscode-tutorial-functions-extension) for a free account with $200 in Azure credits to try out any combination of services.
1414

1515
Once created, sign in to your Azure account - in the Activity Bar, click on the Azure logo to show the **Azure Functions** explorer. Click **Sign in to Azure...** and choose your account in the browser.
1616

@@ -29,7 +29,7 @@ From here, follow the prompts. Choose the directory that you currently have open
2929

3030
2. Choose **Create New Resource Group**, type a Resource Group name, like 'myResourceGroup' and press ENTER.
3131

32-
3. Choose a location in a [region](https://azure.microsoft.com/en-us/regions/) near you or near other services you may need to access.
32+
3. Choose a location in a [region](https://azure.microsoft.com/regions/) near you or near other services you may need to access.
3333

3434
4. Choose **Create New Storage Account**, type a globally unique name of the new storage account used by your function app and press Enter. Storage account names must be between 3 and 24 characters in length and may contain numbers and lowercase letters only.
3535

articles/azure-functions/tutorial-javascript-vscode-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This tutorial walks you through creating and deploying a JavaScript Azure Functi
1414

1515
## Prerequisites
1616

17-
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/en-us/free/?utm_source=campaign&utm_campaign=vscode-tutorial-docker-extension&mktingSource=vscode-tutorial-docker-extension) for a free account with $200 in Azure credits to try out any combination of services.
17+
If you don't have an Azure account, [sign up today](https://azure.microsoft.com/free/?utm_source=campaign&utm_campaign=vscode-tutorial-docker-extension&mktingSource=vscode-tutorial-docker-extension) for a free account with $200 in Azure credits to try out any combination of services.
1818

1919
You need [Visual Studio Code](https://code.visualstudio.com/) installed along with [Node.js and npm](https://nodejs.org/en/download), the Node.js package manager.
2020

articles/azure-functions/tutorial-javascript-vscode-run-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The default HTTP template parses a `name` query parameter to customize the respo
2020

2121
![Hello Matt](./media/tutorial-javascript-vscode/functions-test-local-browser.png)
2222

23-
Now that your Function is running locally, make some changes and set a breakpoint to see how Functions works. Learn more about the bindings that are available on [docs](https://docs.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings#supported-bindings). Keep in mind that all available bindings will run within the Azure Functions extension. This includes triggers from other services such as Azure Storage, as seen below.
23+
Now that your Function is running locally, make some changes and set a breakpoint to see how Functions works. Learn more about the bindings that are available on [docs](https://docs.microsoft.com/azure/azure-functions/functions-triggers-bindings#supported-bindings). Keep in mind that all available bindings will run within the Azure Functions extension. This includes triggers from other services such as Azure Storage, as seen below.
2424

2525
![Functions Debugging](./media/tutorial-javascript-vscode/function-debugging.png)
2626

articles/azure-monitor/platform/monitoring-classic-retirement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Azure Monitor has now become a unified full stack monitoring service, which now
1616
With the new Azure monitoring and alerting platform in place, we will be retiring the "classic" monitoring and alerting platform - hosted within *view classic alerts* section of Azure alerts, **will be deprecated by August 2019 in Azure public clouds**. [Azure Government cloud](../../azure-government/documentation-government-welcome.md) will not be affected.
1717

1818
> [!NOTE]
19-
> Due to delay in roll-out of migration tool, the retirement date for classic alerts migration has been [extended to August 31st, 2019](https://azure.microsoft.com/updates/azure-monitor-classic-alerts-retirement-date-extended-to-august-31st-2019/) from the originally announced date of August 30th, 2019.
19+
> Due to delay in roll-out of migration tool, the retirement date for classic alerts migration has been [extended to August 31st, 2019](https://azure.microsoft.com/updates/azure-monitor-classic-alerts-retirement-date-extended-to-august-31st-2019/) from the originally announced date of June 30th, 2019.
2020
2121
![Classic alert in Azure portal](media/monitoring-classic-retirement/monitor-alert-screen2.png) 
2222

0 commit comments

Comments
 (0)