From 850d2844e59988a63446d24443f652ea01f79b67 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Wed, 22 Jul 2020 20:15:05 -0500 Subject: [PATCH] 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. --- pkgs/applications/networking/cluster/kube3d/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} '';