From 53d8b8de35b6e621f25059fcaca9b58b31fcc0fb Mon Sep 17 00:00:00 2001 From: Lorenzo Fontana Date: Thu, 7 Feb 2019 00:24:12 +0100 Subject: [PATCH] fix(pkg/cmd): const can't be updated with ldflags Signed-off-by: Lorenzo Fontana --- pkg/cmd/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/run.go b/pkg/cmd/run.go index d2f31715..0623d5c8 100644 --- a/pkg/cmd/run.go +++ b/pkg/cmd/run.go @@ -20,7 +20,7 @@ import ( "k8s.io/client-go/rest" ) -const ( +var ( // ImageNameTag represents the default tracerunner image ImageNameTag = "quay.io/fntlnz/kubectl-trace-bpftrace:latest" // InitImageNameTag represents the default init container image