This message was deleted.
# fleet
a
This message was deleted.
b
Hey, that is a known bug in 0.4.0. We have an in-official release https://github.com/rancher/fleet/releases/tag/v0.4.1 which should fix it, but it’s untested. The fix will be in the next Rancher version (with Fleet 0.4.x). Also Rancher 2.7 is not affected.
s
Thank you. So we wait till 2.6.10+ . How do we upgrade to 0.41 on fleet?
b
Rancher 2.6.10 will update Fleet automatically. If you want to test this, for example on a test cluster you could just upgrade fleet via helm. We don’t have well tested instructions on how to do that, but it basically would work like this:
Copy code
url_crd="<https://github.com/rancher/fleet/releases/download/v0.4.1/fleet-crd-0.4.1.tgz>"
helm upgrade fleet-crd "$url_crd" --wait -n cattle-fleet-system

url="<https://github.com/rancher/fleet/releases/download/v0.4.1/fleet-0.4.1.tgz>"
version="v0.4.1"
helm upgrade fleet "$url" \
  --wait -n cattle-fleet-system \
  --set image.tag="$version" \
  --set agentImage.tag="$version" \
  --reuse-values