Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding gRPC samples to docs. #696

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/src/main/paradox/project/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ This sample illustrates how to form a Pekko Cluster with Pekko Bootstrap when ru

This project demonstrates the work pulling pattern using Pekko Cluster.

## gRPC on Kubernetes

@extref[gRPC on Kubernetes example project](samples:pekko-sample-grpc-kubernetes-scala)

This project demonstrates how to build services using gRPC module running on Kubernetes.

## Kafka to Cluster Sharding

@extref[Kafka to Cluster Sharding example project](samples:pekko-sample-kafka-to-sharding-scala)
Expand Down
2 changes: 2 additions & 0 deletions docs/src/main/paradox/typed/guide/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,8 @@ Some of the challenges that HTTP tackles:

This library provides an implementation of gRPC that integrates nicely with the @ref:[HTTP](#http) and @ref:[Streams](#streams) modules. It is capable of generating both client and server-side artifacts from protobuf service definitions, which can then be exposed using Pekko HTTP, and handled using Streams.

A sample using the gRPC module can be found at: @extref[gRPC on Kubernetes example project](samples:pekko-sample-grpc-kubernetes-scala)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It doesn't seem necessary to add it here to maintain a consistent style,and links to samples in example already.


Some of the challenges that Pekko gRPC tackles:

* Exposing services with all the benefits of gRPC & protobuf:
Expand Down
Loading