How was the cluster created?
k3d cluster create myclusterWhat did you do afterwards?
According to the source code it should pull the latest k3s version which is currently 1.19 but it doesnt. It always gets the hardcoded 1.18 version from the version.go file. I also try preloading rancher/k3s:latest and the 1.19 tag and still didnt work.
k3dHi @gabrielcalderon , thanks for opening this issue :)
We have to hardcode the default version in the code to avoid runtime issues with trying to fetch the latest version (also, there are API limits everywhere, so this is fairly impractical and error-prone).
However, there's the --image flag for this :+1:
E.g. in your case you'd use k3d cluster create mycluster --image rancher/k3s:v1.19.2-k3s1
@iwilltry42 Thanks! I will give that a try!