Skip to content

Commit 24d2c0a

Browse files
authored
Clarifications
1 parent d86f5e9 commit 24d2c0a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Use the following commands to create these items.
6464
```azurecli
6565
az containerapp env create --name MyContainerappEnvironment --enable-workload-profiles --resource-group AzureFunctionsContainers-rg --location eastus
6666
```
67+
This command can take up to 10 minutes to complete.
6768
6869
1. Create a general-purpose storage account in your resource group and region.
6970
@@ -75,6 +76,12 @@ Use the following commands to create these items.
7576
7677
In the previous example, replace `<STORAGE_NAME>` with a name that is appropriate to you and unique in Azure Storage. Storage names must contain 3 to 24 characters numbers and lowercase letters only. `Standard_LRS` specifies a general-purpose account [supported by Functions](storage-considerations.md#storage-account-requirements).
7778
79+
1. Before you proceed, use this command to verify that your environment is ready.
80+
81+
```azurecli
82+
az containerapp env show -n MyContainerappEnvironment -g AzureFunctionsContainers-rg
83+
```
84+
7885
## Create and configure a function app on Azure with the image
7986

8087
A function app on Azure manages the execution of your functions in your Azure Container Apps environment. In this section, you use the Azure resources from the previous section to create a function app from an image in a container registry in a Container Apps environment. You also configure the new environment with a connection string to the required Azure Storage account.
@@ -154,7 +161,7 @@ In the [`az functionapp create`](/cli/azure/functionapp#az-functionapp-create) c
154161

155162
---
156163

157-
When you first create the function app, it pulls the initial image from your registry.
164+
Specifying `--workload-profile-name "Consumption"` creates your app in an environment using the default `Consumption` workload profile, which costs the same as running in a Container Apps Consumption plan. When you first create the function app, it pulls the initial image from your registry.
158165

159166
<!--- CI/CD isn't yet supported:
160167
You can also [Enable continuous deployment](./functions-how-to-custom-container.md#enable-continuous-deployment-to-azure) to Azure from Docker Hub.-->

0 commit comments

Comments
 (0)