Skip to content

Commit 98a2f11

Browse files
Merge pull request #308868 from deepganguly/functioncli
Updating the show functions command
2 parents ada3a34 + 9e5bdb1 commit 98a2f11

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

articles/container-apps/functions-container-apps.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,17 @@ At this point, your functions are running in a Container Apps environment, with
168168
>[!TIP]
169169
> When you make subsequent changes to your function code, you need to rebuild the container, republish the image to the registry, and update the function app with the new image version.
170170
171-
(../azure-functions/updatefunctions-how-to-custom-container.md#update-an-image-in-the-registry)
172171
173-
[!INCLUDE [functions-container-verify-azure](../../includes/functions-container-verify-azure.md)]
172+
## Verify your functions on Azure
173+
With the image deployed to your function app in Azure, you can now invoke the function through HTTP requests.Get detailed information about a specific function:
174+
175+
```azurecli
176+
az containerapp function show \
177+
--resource-group AzureFunctionsContainers-rg \
178+
--name <APP_NAME> \
179+
--function-name HttpExample
180+
```
181+
Replace <APP_NAME> with the name of your function app.Use the URL you just obtained to call the HttpExample function endpoint, appending the query string ?name=Functions.
174182

175183
The request URL should look something like this:
176184

0 commit comments

Comments
 (0)