-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add go buildinfo to velero to check toolchain version used. #8398
base: main
Are you sure you want to change the base?
Conversation
b0a0cc1
to
106d45f
Compare
7a82ae4
to
6cc53cf
Compare
6cc53cf
to
35f9f85
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8398 +/- ##
==========================================
- Coverage 58.96% 58.93% -0.03%
==========================================
Files 367 367
Lines 38895 38911 +16
==========================================
+ Hits 22933 22934 +1
- Misses 14500 14515 +15
Partials 1462 1462 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
35f9f85
to
ff8496c
Compare
@@ -69,6 +69,7 @@ func printVersion(w io.Writer, clientOnly bool, kbClient kbclient.Client, server | |||
fmt.Fprintln(w, "Client:") | |||
fmt.Fprintf(w, "\tVersion: %s\n", buildinfo.Version) | |||
fmt.Fprintf(w, "\tGit commit: %s\n", buildinfo.FormattedGitSHA()) | |||
fmt.Fprintf(w, "\tGo version: %s\n", buildinfo.GoVersion()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this clear enough that it is not user's local go? do we want to say Built by Go Version
instead?
|
||
var ( | ||
// Version is the current version of Velero, set by the go linker's -X flag at build time. | ||
Version string | ||
|
||
// goVersion is the version of Go that was used to build Velero | ||
goBuildInfo *debug.BuildInfo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be able to tell which golang version was used to build the code which can have implications around CVEs verification. ie someone built from a certain velero branch but used a different golang version. ie. #8397
Thank you for contributing to Velero!
Please add a summary of your change
Does your change fix a particular issue?
Facilitates requirements similar to #8397 that may come up in the future.
Helps validate go version used to build given that
go.mod
or commit hash of a built binary do not tell you this information.Please indicate you've done the following:
make new-changelog
) or comment/kind changelog-not-required
on this PR.site/content/docs/main
.