Replies: 1 comment 5 replies
-
@theronic as a workaround, if you enable the HTTP Gateway, you should get the REST HTTP endpoint at Also the official SpiceDB container has |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is anyone running SpiceDB using Hashicorp's Nomad? I can get it running on my local machine using
nomad agent -dev
&nomad job run spicedb.nomad
, but I'm having some trouble getting the gRPC health check to work. Here is myspicedb.nomad
job file:I've commented out the gRPC health check because it won't come up otherwise. I then tried running
nomad agent -dev-consul
&nomad job run spicedb.nomad
because it seems only the Consul integration supports gRPC health checks. However, then it does not come up at all (even with health check disabled).Alternatively, I assume I'd need to install
grpc-health-check
in a derived Docker image to conduct a health check, or is there a gRPC "service class" I can point it to? (Nomad supports a grpc_service parameter on gRPC health checks even without the health check).Beta Was this translation helpful? Give feedback.
All reactions