GitHub - authzed/spicedb-operator: Kuber...
# spicedb
t
What's the difference between these two operator commands? - From the spicedb operator github:
kubectl apply --server-side -f https://github.com/authzed/spicedb-operator/releases/latest/download/bundle.yaml
- https://github.com/authzed/spicedb-operator?tab=readme-ov-file#getting-started - From the docs:
kubectl apply --server-side -k github.com/authzed/spicedb-operator/config
- https://authzed.com/docs/spicedb/concepts/operator#updating-the-operator I ran the second one without seeing the first one, and it seemed to do the same thing
v
@ecordell can correct me, but my guess it's they are mostly the same thing. With the former you are using a specific version of the bundle, and with the latter you are using what's in
main
and using kustomize (
-k
) , and it's also using the
latest
operator image. For stability you probably want to use the bundle from a release.
t
Ah that makes sense, thanks! I'll go with the current release then. For anyone else reading, that's this:
kubectl apply --server-side -f https://github.com/authzed/spicedb-operator/releases/download/v1.15.0/bundle.yaml