f2ef576510
Examples for HTTP based task-group service healthchecks are covered by the `countdash` demo, but gRPC checks currently have no runnable examples. This PR adds a trivial gRPC enabled application that provides a Service implementing the standard gRPC healthcheck interface.
9 lines
140 B
Modula-2
9 lines
140 B
Modula-2
module github.com/hashicorp/nomad/demo/grpc-checks
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.3.5
|
|
google.golang.org/grpc v1.28.1
|
|
)
|