Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lpabon/rpcscout
rpcscout is a program to test gRPC and REST connections across nodes and service meshes in a Kubernetes environment. It is both the client and the server to itself and support N-to-N connections.
https://github.com/lpabon/rpcscout
grpc kubernetes mesh rest rpc
Last synced: 28 days ago
JSON representation
rpcscout is a program to test gRPC and REST connections across nodes and service meshes in a Kubernetes environment. It is both the client and the server to itself and support N-to-N connections.
- Host: GitHub
- URL: https://github.com/lpabon/rpcscout
- Owner: lpabon
- License: apache-2.0
- Created: 2022-12-22T15:42:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-23T02:29:19.000Z (over 1 year ago)
- Last Synced: 2024-11-13T12:37:48.394Z (3 months ago)
- Topics: grpc, kubernetes, mesh, rest, rpc
- Language: Go
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rpcscout
`rpcscout` is a program to test gRPC and REST connections across nodes and
service meshes in a Kubernetes environment. It is both the client and the
server to itself and support N-to-N connections. For example it can support:## Deployments
### Simple client server
```
[rpcscout] --[grpc/REST]--> [rpcscout]
```Execute the following to deploy this setup:
```
kubectl create -f https://raw.githubusercontent.com/lpabon/rpcscout/main/deploy/simple.yml
```### Example of a more complicated setup
```
[rpcscout x10] ===[grpc/REST]==> [rpcscout x3] ===[grpc/REST]==> [rpcscout x1]
Emulate clients Emulate API servers Emulate a DB
```Execute the following to deploy this setup:
```
kubectl create -f https://raw.githubusercontent.com/lpabon/rpcscout/main/deploy/app-demo.yml
```