You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the role of the ConfigMap update-graph in the operator? I noticed it is referenced but couldn't find any detailed description in the documentation. Could you provide more insight into its purpose and functionality?
Additionally, there is an imageName field in the ConfigMap, but the operand (SpicedbCluster) also provides a way to configure the image. What is the difference between these two configurations, and which one should be used to set the image?
The update describes a path between SpiceDB versions that are known to be fully compatible with each other. The idea is that as the operator upgrades a set of SpiceDB nodes, it will walk the graph between the version you're on and the desired version.
A concrete example of this: we introduced a new implementation of LookupResources in one version of SpiceDB and deprecated the old implementation in a subsequent version. SpiceDB dispatches LookupResources subproblems between nodes. If you were to upgrade directly from a earlier version to the version where the old LR was deprecated, you would potentially have request failures on LookupResources, because dispatches between new nodes and old nodes would fail. Walking the update graph avoids this by doing intermediate upgrades.
What is the role of the ConfigMap
update-graph
in the operator? I noticed it is referenced but couldn't find any detailed description in the documentation. Could you provide more insight into its purpose and functionality?Additionally, there is an
imageName
field in the ConfigMap, but the operand (SpicedbCluster
) also provides a way to configure the image. What is the difference between these two configurations, and which one should be used to set the image?reference: https://github.com/authzed/spicedb-operator/blob/main/config/update-graph.yaml, #327
The text was updated successfully, but these errors were encountered: