https://authzed.com logo
Title
r

rajrh

02/15/2023, 6:58 PM
[SpiceDB operator in Openshift] Following the Github instructions , i am getting the following error
error: Message: Error validating config with secret hash "somehash": [couldn't find channel for datastore "memory": no channel found for datastore "memory", no update found in channel]
After creating my first cluster
j

Joey

02/15/2023, 7:04 PM
@ecordell ^
r

rajrh

02/15/2023, 7:21 PM
from the ReadMe below: Datastore Channels postgres stable cockroachdb stable mysql stable spanner stable memory (none) it looks like there is no update channel for "memory"
makes sense, but i assume for Memory shouldnt the check for channels be skipped or should I specify a "random" channel there?
j

Joey

02/15/2023, 7:31 PM
currently, it does
we're prepping a change to add a channel for in memory
it should be noted that running using in-memory is not a production-ready cluster
e

ecordell

02/15/2023, 7:33 PM
there's a channel for memory in head now, and the plan is to release v1.2.0 today that will include it
In the meantime you can specify the spicedb image and it will use that:
spec:
  config:
    image: ghcr.io/authzed/spicedb:v1.16.2
r

rajrh

02/15/2023, 7:35 PM
🙂 not planing to use it for production, I am just playing around with operator to understand it better 🙂 - Raj from red hat
@ecordell thanks! i was able to write and read schmea now
thanks for the quick action!
In summary, in an openshift cluster, I was able to deploy the operator, create a example spiceDB cluster with DBEngine as "Memory" and i can play around with the schema
d

dguhr-rh

02/15/2023, 8:20 PM
@ecordell out of curiosity: any experiences running the operator namespaced instead?
e

ecordell

02/15/2023, 8:24 PM
it doesn't support it right now. I'm generally not a fan of running operators namespaced, because it opens up the door to running multiple copies in different namespaces, which introduces a host of compatibility problems with the APIs (which will be shared between all instances) not totally against it as an option if you'd like to make a GH issue to gauge interest?
d

dguhr-rh

02/15/2023, 8:36 PM
thx for the info