Update Load test readme

This commit is contained in:
Ramón Tomás 2017-11-08 16:50:09 +01:00
parent 493e12dc98
commit 9183a45756

View File

@ -8,7 +8,7 @@ This folder contains files needed to run load tests locally or on a Kubernetes /
## Set a local environment ## Set a local environment
Modify the **app.config** file and set the following service urls. Modify the **app.config** file in the LoadTest project directory and set the following service urls.
``` ```
<Servers> <Servers>
@ -29,7 +29,7 @@ USE_LOADTEST=True
``` ```
## Set a Service Fabric environment ## Set a Service Fabric environment
Modify the **app.config** file and set the following service urls. Modify the **app.config** file in the LoadTest project directory and set the following service urls.
``` ```
<Servers> <Servers>
@ -53,17 +53,17 @@ Deploy the SF services. **PLEASE** Read our [SF deployment guide for Linux](./..
## Set a Kubernetes environment ## Set a Kubernetes environment
Modify the **app.config** file and set the following service urls. Modify the **app.config** file in the LoadTest project directory and set the following service urls.
``` ```
<Servers> <Servers>
<MvcWebServer url="http://<target_k8s_dns>:5100" /> <MvcWebServer url="http://<public_ip_k8s>/webmvc" />
<CatalogApiServer url="http://<target_k8s_dns>:5101" /> <CatalogApiServer url="http://<public_ip_k8s>/catalog-api" />
<OrderingApiServer url="http://<target_k8s_dns>:5102" /> <OrderingApiServer url="http://<public_ip_k8s>/ordering-api" />
<BasketApiServer url="http://<target_k8s_dns>:5103" /> <BasketApiServer url="http://<public_ip_k8s>/basket-api" />
<IdentityApiServer url="http://<target_k8s_dns>:5105" /> <IdentityApiServer url="http://<public_ip_k8s>/identity" />
<LocationsApiServer url="http://<target_k8s_dns>:5109" /> <LocationsApiServer url="http://<public_ip_k8s>/locations-api" />
<MarketingApiServer url="http://<target_k8s_dns>:5110" /> <MarketingApiServer url="http://<public_ip_k8s>/marketing-api" />
</Servers> </Servers>
``` ```