about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/sonobuoy
diff options
context:
space:
mode:
authorBryan A. S <bryanasdev000@gmail.com>2020-11-02 02:49:59 -0300
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-11-04 10:04:40 +0100
commit22dd82ce98fd111a0994eede23432179bc7008ea (patch)
treec68460c8450d9b2b9e4ead1b206927dff25748f7 /pkgs/applications/networking/cluster/sonobuoy
parent27e9328895987728c499382f190a36d755eca9a2 (diff)
sonobuoy: Fixes wrong "v" behaviour
Adjust the generated manifests by placing the character v in the sonobuoy version, successfully pulling the image within the cluster and running smoothly.

Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
Diffstat (limited to 'pkgs/applications/networking/cluster/sonobuoy')
-rw-r--r--pkgs/applications/networking/cluster/sonobuoy/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix
index c111f7eccfeea..be5cb51d450de 100644
--- a/pkgs/applications/networking/cluster/sonobuoy/default.nix
+++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix
@@ -13,7 +13,7 @@ buildGoModule rec {
     let t = goPackagePath;
     in ''
       -ldflags=
-        -s -X ${t}/pkg/buildinfo.Version=${version}
+        -s -X ${t}/pkg/buildinfo.Version=v${version}
            -X ${t}/pkg/buildinfo.GitSHA=${rev}
            -X ${t}/pkg/buildDate=unknown
     '';