Service Extensions Samples (Go)
This repository contains samples for service extensions using gRPC external processing in Go. It demonstrates how to set up and run different examples dynamically using Docker and Docker Compose.
Copyrights and Licenses
Files using Copyright 2024 Google LLC & Apache License Version 2.0:
Requirements
- Go 1.22+
- Docker
- Docker Compose
Quick Start
The minimal operation of this Go-based ext_proc server requires Go and Docker.
Running Without Docker
You can run the examples directly with Go without using Docker.
Install Dependencies
Make sure you have Go installed and then download the dependencies:
go mod download
Set Environment Variable
Set the EXAMPLE_TYPE environment variable to the example you want to run (e.g redirect
).
For Linux/macOS:
export EXAMPLE_TYPE=redirect
For Windows (Command Prompt):
set EXAMPLE_TYPE=redirect
For Windows (PowerShell):
$env:EXAMPLE_TYPE="redirect"
Run the Application:
Run the main Go file:
go run ./extproc/cmd/example/main.go
Building and Running the Examples with Docker
You can run different examples by setting the EXAMPLE_TYPE environment variable and using Docker Compose.
Building Redirect Example
Running from the ./extproc/config/
EXAMPLE_TYPE=redirect docker-compose build
Running Redirect Example
Running from the ./extproc/config/
EXAMPLE_TYPE=redirect docker-compose up
Running Tests
To run the unit tests, use the following command from the project root:
go test ./...
Developing Callouts
This repository provides the following files to be extended to fit the needs of the user:
CalloutServer: Baseline service callout server.
CalloutTools: Common functions used in many callout server code paths.
Making a New Server
Create a new Go file server.go and import the CalloutServer
class from extproc/internal/server/callout_server.go:
import (
"service-extensions-samples/extproc/internal/server"
)
Extend the CalloutServer:
Create a custom class extending CalloutServer
:
type CustomCalloutServer struct {
server.GRPCCalloutService
}
Add the handler you are going to override for your custom processing (e.g: Request Headers):
func NewExampleCalloutService() *CustomCalloutServer {
service := &CustomCalloutServer{}
service.Handlers.RequestHeadersHandler = service.HandleRequestHeaders
return service
}
Override the callback methods:
Override the callback methods in CalloutServer
to process headers and bodies:
func (s *CustomCalloutServer) HandleRequestHeaders(headers *extproc.HttpHeaders) (*extproc.ProcessingResponse, error) {
// Custom processing logic
return &extproc.ProcessingResponse{}, nil
}
Run the Server:
Create an instance of your custom server and call the run method:
func main() {
server := &CustomCalloutServer{}
calloutServer := service.NewCalloutServer(config)
go calloutServer.StartGRPC(server)
go calloutServer.StartInsecureGRPC(server)
go calloutServer.StartHealthCheck()
select {}
}
Additional Details
The CalloutServer
class has many options to customize the security information as well as port settings. The default CalloutServer listens on port 8443 for gRPC traffic, 8000 for health checks, and 8181 for insecure traffic.
Using the Proto Files
The Go classes can be imported using the relative envoy/api path:
import (
"github.com/envoyproxy/go-control-plane/envoy/service/ext_proc/v3"
)