Hey folks! Do you know if it's possible
# spicedb
p
Hey folks! Do you know if it's possible to mount a volume in the SpiceDB deployment using the spicedb-operator? we use certificates to authenticate against CockroachDB and would need to mount the certs volume so that SpiceDB has access to it.
d
The
Spec
of the
SpiceDBCluster
CRD has a
patches
field for modifying the generated objects:
Copy code
patches:
  - kind: Deployment
    patch:
      spec:
        template:
          spec:
p
Aha, that's great, thanks!
👋 hello again, do you know if it's possible to patch both the Job for migrations and the Deployment?
d
It should be, yeah. The
kind
would just be
Job
instead of
Deployment
-- you can actually also specify
*
for
kind
to apply a patch to all resources.
p
that's amazing, thanks again @das.broetchen