summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/kube3d
diff options
context:
space:
mode:
authorDavid Arnold <dar@xoe.solutions>2020-07-22 20:15:05 -0500
committerDavid Arnold <dar@xoe.solutions>2020-07-22 20:15:05 -0500
commit850d2844e59988a63446d24443f652ea01f79b67 (patch)
treeb8ee50c080a8c13174f5244c13f39ab1e7a70c63 /pkgs/applications/networking/cluster/kube3d
parent7f8171b2b6eebb934d6bbb6c43ff94d5fc037b40 (diff)
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.
Diffstat (limited to 'pkgs/applications/networking/cluster/kube3d')
-rw-r--r--pkgs/applications/networking/cluster/kube3d/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix
index fa4d9e2a2689..a65ac2ec98b5 100644
--- a/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -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}
'';