Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kurtosis-tech/datastore-army-package

Toy Kurtosis package that starts a bunch of datastore services
https://github.com/kurtosis-tech/datastore-army-package

kurtosis kurtosis-package

Last synced: about 2 months ago
JSON representation

Toy Kurtosis package that starts a bunch of datastore services

Awesome Lists containing this project

README

        

Datastore Army Package
=====================
This repository contains an executable Kurtosis package that starts [example datastore services](https://github.com/kurtosis-tech/example-microservices/tree/develop/datastore). It is principally for demo purposes.

To run it, use:

```
kurtosis run github.com/kurtosis-tech/datastore-army-package '{"num_datastores":2}'
```

Its args is JSON-serialized and should have the following structure:
```
{
"num_datastores": 2 # Replace with the number of datastore services wanted
}
```

The output object returned by the package will be a mapping of `service_id` -> `port_id`.
For example:
```
{
"datastore_1": "grpc",
"datastore_2": "grpc",
}
```