Skip to content

Commit d7134d0

Browse files
committed
fix links and acrolinx
1 parent 6543fac commit d7134d0

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

articles/azure-functions/functions-create-function-linux-custom-image.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ AzureWebJobsStorage=$storageConnectionString
188188

189189
<!-- we should replace this with a CLI or API-based approach, when we get something better than REST -->
190190

191-
The HTTP-triggered function you just created requires a [function key](functions-bindings-http-webhook.md#authorization-keys) when calling the endpoint. At this time, the easiest way to get your function URL, including the key, is from the [Azure portal].
191+
The HTTP-triggered function you created requires a [function key](functions-bindings-http-webhook.md#authorization-keys) when calling the endpoint. At this time, the easiest way to get your function URL, including the key, is from the [Azure portal].
192192

193193
> [!TIP]
194194
> You can also obtain your function keys by using the [Key management APIs](https://github.com/Azure/azure-functions-host/wiki/Key-management-API), which requires you to present a [bearer token for authentication](/cli/azure/account#az-account-get-access-token).
195195
196-
1. To find your function app in the [Azure portal], type your function app name in the **Search** box at the top of the page and select the **App Service** resource.
196+
1. Locate your new function app in the [Azure portal] by typing your function app name in the **Search** box at the top of the page and selecting the **App Service** resource.
197197

198198
1. Select the **MyHttpTrigger** function, select **</> Get function URL** > **default (Function key)** > **Copy**.
199199

@@ -204,7 +204,7 @@ The HTTP-triggered function you just created requires a [function key](functions
204204
> [!NOTE]
205205
> Because your function app is deployed as a container, you can't make changes to your function code in the portal. You must instead update the project in local container and republish it to Azure.
206206
207-
2. Paste the function URL into your browser's address bar. Add the query string value `&name=<yourname>` to the end of this URL and press the `Enter` key on your keyboard to execute the request. You should see the response returned by the function displayed in the browser.
207+
1. Paste the function URL into your browser's address bar. Add the query string value `&name=<yourname>` to the end of this URL and press the `Enter` key on your keyboard to execute the request. You should see the response returned by the function displayed in the browser.
208208

209209
The following example shows the response in the browser:
210210

@@ -214,7 +214,7 @@ The HTTP-triggered function you just created requires a [function key](functions
214214

215215
## Enable continuous deployment
216216

217-
One of the benefits of using containers is being able to automatically deploy updates when containers are updated in the registry. Enable continuous deployment with the [az functionapp deployment container config](/cli/azure/functionapp/deployment/container#az-functionapp-deployment-container-config) command.
217+
One of the benefits of using containers is support for continuous deployment. Functions lets you automatically deploy updates when your container is updated in the registry. Enable continuous deployment with the [az functionapp deployment container config](/cli/azure/functionapp/deployment/container#az-functionapp-deployment-container-config) command.
218218

219219
```azurecli-interactive
220220
az functionapp deployment container config --enable-cd \
@@ -244,17 +244,15 @@ FROM mcr.microsoft.com/azure-functions/node:2.0-appservice
244244

245245
The differences in the two base images enable SSH connections into your container. These differences are detailed in [this App Services tutorial](../app-service/containers/tutorial-custom-docker-image.md#enable-ssh-connections).
246246

247-
### Rebuild the image
247+
### Rebuild and redeploy the image
248248

249249
In the root folder, run the [docker build](https://docs.docker.com/engine/reference/commandline/build/) command again, as before, replace `<docker-id>` with your Docker Hub account ID.
250250

251251
```bash
252252
docker build --tag <docker-id>/mydockerimage:v1.0.0 .
253253
```
254254

255-
### Push the updated image
256-
257-
Push the updated image back to Dockerhub.
255+
Push the updated image back to Docker Hub.
258256

259257
```bash
260258
docker push <docker-id>/mydockerimage:v1.0.0

articles/azure-functions/functions-deployment-technologies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ You can deploy a Linux container image that contains your function app.
127127
>__How to use it:__ Create a Linux function app in the Premium or Dedicated plan and specify which container image to run from. You can do this in two ways:
128128
>
129129
>* Create a Linux function app on an Azure App Service plan in the Azure portal. For **Publish**, select **Docker Image**, and then configure the container. Enter the location where the image is hosted.
130-
>* Create a Linux function app on an App Service plan by using the Azure CLI. To learn how, see [Create a function on Linux by using a custom image](functions-create-function-linux-custom-image.md#create-and-deploy-the-custom-image).
130+
>* Create a Linux function app on an App Service plan by using the Azure CLI. To learn how, see [Create a function on Linux by using a custom image](functions-create-function-linux-custom-image.md#create-a-premium-plan).
131131
>
132132
>To deploy to an existing app by using a custom container, in [Azure Functions Core Tools](functions-run-local.md), use the [`func deploy`](functions-run-local.md#publish) command.
133133

includes/functions-add-output-binding-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 09/23/2019
66
ms.author: glenga
77
---
88

9-
Binding attributes are defined directly in the function.json file. Depending on the binding type, additional properties may be required. The [queue output configuration](functions-bindings-storage-queue.md#output---configuration) describes the fields required for an Azure Storage queue binding. The extension makes it easy to add bindings to the function.json file.
9+
Binding attributes are defined directly in the function.json file. Depending on the binding type, additional properties may be required. The [queue output configuration](../articles/azure-functions/functions-bindings-storage-queue.md#output---configuration) describes the fields required for an Azure Storage queue binding. The extension makes it easy to add bindings to the function.json file.
1010

1111
To create a binding, right-click (Ctrl+click on macOS) the `function.json` file in your HttpTrigger folder and choose **Add binding...**. Follow the prompts to define the following binding properties for the new binding:
1212

0 commit comments

Comments
 (0)