Trying to get the HTTP mode enabled in spiceDB. I ...
# spicedb
r
Trying to get the HTTP mode enabled in spiceDB. I dont think this flag name is correct: https://github.com/authzed/examples/blob/c69fe1664c9e70d281210fb95cde8abd59c93a0a/kubernetes/example.yaml#L101 what is the correct one?
v
you are right, these are the flags (which you can check by running
spicedb serve --help
Copy code
--http-addr string                                         address to listen on to serve gateway (default ":8443")
      --http-enabled                                             enable http gateway server
      --http-tls-cert-path string                                local path to the TLS certificate used to serve gateway
      --http-tls-key-path string                                 local path to the TLS key used to serve gateway
`
on a side note we recommend the spicedb operator instead of managing your own deployment
r
thanks!