https://authzed.com logo
Title
r

rajrh

03/06/2023, 7:15 PM
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

vroldanbet

03/06/2023, 7:40 PM
you are right, these are the flags (which you can check by running
spicedb serve --help
--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

rajrh

03/06/2023, 11:06 PM
thanks!