gRPC Server - Go
A gRPC server written in Go.
This sample can be used to try out gRPC, HTTP/2, and custom port configuration in a knative service.
The container image is built with two binaries: the server and the client. This is done for ease of testing and is not a recommended practice for production containers.
Prerequisites
Install docker.
A Docker Hub account to which you can upload the sample’s container image.
Build and Deploy the sample code
- Download a copy of the code:
git clone -b "{{< branch >}}" https://github.com/knative/docs knative-docs
cd knative-docs/docs/serving/samples/grpc-ping-go
- Use Docker to build a container image for this service and push to Docker Hub.
Replace {username}
with your Docker Hub username then run the commands:
# Build the container on your local machine.
docker build --tag "{username}/grpc-ping-go" .
# Push the container to docker registry.
docker push "{username}/grpc-ping-go"
Update the
service.yaml
file in the project to reference the published image from step 1.Replace
{username}
inservice.yaml
with your Docker Hub user name:
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: grpc-ping
namespace: default
spec:
template:
spec:
containers:
- image: docker.io/{username}/grpc-ping-go
ports:
- name: h2c
containerPort: 8080
- Use
kubectl
to deploy the service.
kubectl apply --filename service.yaml
Response:
service "grpc-ping" created
Exploring
Once deployed, you can inspect the created resources with kubectl
commands:
# This will show the Knative service that we created:
kubectl get ksvc --output yaml
# This will show the Route, created by the service:
kubectl get route --output yaml
# This will show the Configuration, created by the service:
kubectl get configurations --output yaml
# This will show the Revision, created by the Configuration:
kubectl get revisions --output yaml
Testing the service
Testing the gRPC service requires using a gRPC client built from the same protobuf definition used by the server.
The Dockerfile builds the client binary. To run the client you will use the same container image deployed for the server with an override to the entrypoint command to use the client binary instead of the server binary.
Replace {username}
with your Docker Hub user name and run the command:
docker run --rm {username}/grpc-ping-go \
/client \
-server_addr="grpc-ping.default.1.2.3.4.xip.io:80" \
-insecure
The arguments after the container tag {username}/grpc-ping-go
are used instead of the entrypoint command defined in the Dockerfile CMD
statement.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.