How to update a Kubernetes deployment / image

I installed Dragonfly 1.14.1 using Helm.

  1. What is the simplest way to manually update the deployment, e.g. to the latest version or a specific version like 1.14.3?
  2. Can the operator automatically keep the deployment updated?

Hey @charismatic-tasmania You can set the image value using https://github.com/dragonflydb/dragonfly/blob/main/contrib/charts/dragonfly/values.yaml#L8 in Helm and get the version of DF you want!

The operator wouldn’t do it automatically (that would be too much automation) but it also has the .image field to be able to set/update.

Great, thank you