Migrations
# spicedb
t
Copy code
apiVersion: authzed.com/v1alpha1
kind: SpiceDBCluster
metadata:
  name: spicedb-cluster
  namespace: spicedb
spec:
  config:
    image: authzed/spicedb:v1.35.3
    datastoreEngine: postgres
  secretName: spicedb-config
Question to help me understand how the operator works – to migrate this to a higher version of spicedb (1.36.0 today), do I just need to update the
image
key in this k8s yaml? Will the operator just handle that change, or do I need to run a migrate command somewhere?
e
Migrations will run any time the image changes
Don’t have to do anything different
t
Awesome, thanks!