Review feedback: switch to "mini" plan for CosmosDB

This commit is contained in:
bart-vmware 2023-01-19 13:21:31 +01:00
Родитель 7c0a015902
Коммит d38e62564d
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -21,7 +21,7 @@ ASP.NET Core sample app illustrating how to use [Steeltoe CosmosDB Connector](ht
You must first create an instance of the CosmosDB service in an org/space.
1. `cf target -o your-org -s your-space`
1. `cf create-service csb-azure-cosmosdb-sql small myCosmosDbService`
1. `cf create-service csb-azure-cosmosdb-sql mini myCosmosDbService`
## Publish App & Push to CloudFoundry

Просмотреть файл

@ -11,6 +11,6 @@ def setup(context):
cf.delete_app(app)
# create service
service = 'csb-azure-cosmosdb-sql'
plan = 'small'
plan = 'mini'
instance = 'myCosmosDbService'
cf.create_service(service, plan, instance)