kube3d: fix verion prefix tu pull correct image

docker pull rancher/k3d-proxy:3.0.0
Error response from daemon: manifest for rancher/k3d-proxy:3.0.0 not found: manifest unknown: manifest unknown

vs

docker pull rancher/k3d-proxy:v3.0.0
v3.0.0: Pulling from rancher/k3d-proxy

The version tag selects the image tag.
This commit is contained in:
David Arnold 2020-07-22 20:15:05 -05:00
parent 7f8171b2b6
commit 850d2844e5
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08

View file

@ -18,7 +18,7 @@ buildGoModule rec {
buildFlagsArray = ''
-ldflags=
-w -s
-X github.com/rancher/k3d/v3/version.Version=${version}
-X github.com/rancher/k3d/v3/version.Version=v${version}
-X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}
'';