You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> The following command installs a custom Container Apps extension that can't be used with the public cloud service. You need to uninstall the extension if you switch back to the Azure public cloud.
35
35
36
-
```azurecli-interactive
36
+
```azurecli
37
37
az extension add --upgrade --yes --name customlocation
38
38
az extension add --name containerapp --upgrade --yes
Create a resource group for the services created in this tutorial.
44
44
45
-
```azurecli-interactive
45
+
```azurecli
46
46
GROUP_NAME="my-container-apps-resource-group"
47
47
az group create --name $GROUP_NAME --location eastus
48
48
```
@@ -51,17 +51,17 @@ az group create --name $GROUP_NAME --location eastus
51
51
52
52
Get the following location group, name, and ID from your cluster administrator. See [Create a custom location](azure-arc-enable-cluster.md) for details.
@@ -75,7 +75,7 @@ Now that you have the custom location ID, you can query for the connected enviro
75
75
76
76
A connected environment is largely the same as a standard Container Apps environment, but the underlying Arc-enabled Kubernetes cluster controls the network restrictions.
77
77
78
-
```azure-interactive
78
+
```azurecli
79
79
CONTAINER_APP_NAME="my-container-app"
80
80
CONNECTED_ENVIRONMENT_ID=$(az containerapp connected-env list --custom-location $CUSTOM_LOCATION_ID -o tsv --query '[].id')
81
81
```
@@ -84,7 +84,7 @@ CONNECTED_ENVIRONMENT_ID=$(az containerapp connected-env list --custom-location
0 commit comments