Skip to content

Commit 5ee8015

Browse files
committed
Rehide the CLI update commands
1 parent 4c72488 commit 5ee8015

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

articles/reliability/reliability-functions.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ Zone-redundant Premium plans are available in these regions:
9696
::: zone pivot="flex-consumption-plan"
9797
Availability zone support is a property of the Flex Consumption plan. Here are current considerations for using availability zones:
9898
99-
- You can enable availability zones in the plan during app creation.
100-
- You can enable or disable this plan feature in an existing app using the Azure CLI.
99+
- You can [enable availability zones in the plan during app creation](#create-a-function-app-in-a-zone-redundant-plan).
100+
- You can [enable or disable availability zones](#update-a-flex-consumption-plan-to-be-zone-redundant) by updating plan resource settings.
101101
- You must use a [zone redundant storage account (ZRS)](../storage/common/storage-redundancy.md#zone-redundant-storage) for your function app's [default host storage account](../azure-functions/storage-considerations.md#storage-account-requirements). If you use a different type of storage account, your app might behave unexpectedly during a zonal outage.
102102
- Must be hosted on a [Flex Consumption](../azure-functions/flex-consumption-plan.md) plan.
103103
::: zone-end
@@ -232,7 +232,7 @@ Before updating your Flex Consumption plan to be zone-redundant, you should upda
232232
Use these steps to prepare your storage accounts for the change:
233233

234234
1. Review [Storage Considerations](../azure-functions/storage-considerations.md).
235-
1. Create or identify a zone-redundant storage account to associate with the app.
235+
1. Create or identify a zone-redundant storage account to be the default host storage account for the app.
236236
1. Update the storage related application settings of the app, like `AzureWebJobsStorage`, to reference the zone redundant storage account. See [Work with application settings](../azure-functions/functions-how-to-use-azure-function-app-settings.md#use-application-settings).
237237
1. Update the deployment storage account for the app, which can be the same or different as the storage account associated with the app. See [Configure deployment settings](../azure-functions/flex-consumption-how-to.md#configure-deployment-settings).
238238

@@ -244,6 +244,8 @@ Not currently supported.
244244

245245
#### [Azure CLI](#tab/azure-cli)
246246

247+
Not currently supported.
248+
<!--- unhide this after we get the required CLI fix implemented
247249
Update the Flex Consumption app by using the [az functionapp plan update](/cli/azure/functionapp#az-functionapp-plan-update) command and setting the `--zone-redundant true` parameter:
248250
249251
```azurecli
@@ -252,7 +254,7 @@ PLAN_RESOURCE_ID=$(az functionapp show --resource-group <RESOURCE_GROUP> --name
252254
az functionapp plan update --ids $PLAN_RESOURCE_ID --set zoneRedundant=true
253255
```
254256
255-
In this example, replace `<RESOURCE_GROUP>` and `<APP_NAME>` with the names of your resource group and app, respectively.
257+
In this example, replace `<RESOURCE_GROUP>` and `<APP_NAME>` with the names of your resource group and app, respectively. -->
256258

257259
#### [Bicep template](#tab/bicep)
258260

@@ -450,7 +452,7 @@ You can't currently change the availability zone support of an Elastic Premium p
450452
::: zone-end
451453
### Zone down experience
452454
::: zone pivot="flex-consumption-plan"
453-
All available function app instances of zone-redundant Flex Consumption plan apps are enabled and processing events. Flex Consumption apps continue to run even when other zones in the same region suffer an outage. However, it's possible that nonruntime behaviors might be impacted as a result of an outage in other availability zones. Standard function app behaviors that can impact availability include:
455+
All available function app instances of zone-redundant Flex Consumption plan apps are enabled and processing events. Flex Consumption apps continue to run even when other zones in the same region suffer an outage. However, it's possible that nonruntime behaviors might be impacted as a result of an outage in other availability zones. Standard function app behaviors that can affect availability include:
454456

455457
+ Scaling
456458
+ App creation
@@ -472,7 +474,7 @@ When Functions allocates instances to a zone redundant Premium plan, it uses bes
472474

473475
[!INCLUDE [introduction to disaster recovery](includes/reliability-disaster-recovery-description-include.md)]
474476

475-
This section explains some of the strategies that you can use to deploy Functions to allow for disaster recovery.
477+
This section explains some of the strategies that you can use to deploy a function app to allow for disaster recovery.
476478

477479
For disaster recovery for Durable Functions, see [Disaster recovery and geo-distribution in Azure Durable Functions](../azure-functions/durable/durable-functions-disaster-recovery-geo-distribution.md).
478480

0 commit comments

Comments
 (0)