Skip to content

Commit 7471e2d

Browse files
Merge pull request #273887 from v-jaswel/aca/v-jaswel_qdrant_20240430
Change az containerapp service * to az containerapp add-on *
2 parents e00b660 + 96b0038 commit 7471e2d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

articles/container-apps/add-ons-qdrant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Now that you have an existing environment and workload profile, you can create y
121121
1. Create the Qdrant add-on service.
122122
123123
```azurecli
124-
az containerapp service qdrant create \
124+
az containerapp add-on qdrant create \
125125
--environment $ENVIRONMENT \
126126
--resource-group $RESOURCE_GROUP \
127127
--name $SERVICE_NAME

articles/container-apps/connect-services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The sample application manages a set of strings, either in-memory, or in Redis c
109109
Create the Redis dev service and name it `myredis`.
110110
111111
``` azurecli
112-
az containerapp service redis create \
112+
az containerapp add-on redis create \
113113
--name myredis \
114114
--resource-group "$RESOURCE_GROUP" \
115115
--environment "$ENVIRONMENT"
@@ -239,7 +239,7 @@ Run the following commands to delete your container app and the dev service.
239239
240240
``` azurecli
241241
az containerapp delete --name myapp
242-
az containerapp service redis delete --name myredis
242+
az containerapp add-on redis delete --name myredis
243243
```
244244

245245
Alternatively you can delete the resource group to remove the container app and all services.

articles/container-apps/services.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Services available as an add-on include:
3434
You can get most recent list of add-on services by running the following command:
3535

3636
```azurecli
37-
az containerapp service --help
37+
az containerapp add-on --help
3838
```
3939

4040
See the section on how to [manage a service](#manage-a-service) for usage instructions.
@@ -81,10 +81,10 @@ You're responsible for data continuity between development and production enviro
8181

8282
To connect a service to an application, you first need to create the service.
8383

84-
Use the `containerapp service <SERVICE_TYPE> create` command with the service type and name to create a new service.
84+
Use the `az containerapp add-on <SERVICE_TYPE> create` command with the service type and name to create a new service.
8585

8686
``` CLI
87-
az containerapp service redis create \
87+
az containerapp add-on redis create \
8888
--name myredis \
8989
--environment myenv
9090
```

articles/container-apps/tutorial-dev-services-kafka.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ Azure CLI commands and Bicep template fragments are featured in this tutorial. I
379379
# [Bash](#tab/bash)
380380

381381
```bash
382-
az containerapp service kafka create \
382+
az containerapp add-on kafka create \
383383
--name "$KAFKA_SVC" \
384384
--resource-group "$RESOURCE_GROUP" \
385385
--environment "$ENVIRONMENT"

articles/container-apps/tutorial-dev-services-postgresql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Azure CLI commands and Bicep template fragments are featured in this tutorial. I
303303
# [Bash](#tab/bash)
304304

305305
```bash
306-
az containerapp service postgres create \
306+
az containerapp add-on postgres create \
307307
--name "$PG_SVC" \
308308
--resource-group "$RESOURCE_GROUP" \
309309
--environment "$ENVIRONMENT"

0 commit comments

Comments
 (0)