Skip to content

Commit 3156ace

Browse files
authored
Merge pull request #3175 from k8s-infra-cherrypick-robot/cherry-pick-3166-to-release-0.20
[release-0.20] ✨Add RELEASE_TAG to tools/setup-envtest to show binary version with setup-envtest version
2 parents 833f208 + 4ae5f39 commit 3156ace

File tree

8 files changed

+134
-2
lines changed

8 files changed

+134
-2
lines changed

.github/workflows/release.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
name: Upload binaries to release
1515
runs-on: ubuntu-latest
1616
steps:
17+
- name: Set env
18+
run: echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
1719
- name: Check out code
1820
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
1921
- name: Calculate go version

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ release-binary: $(RELEASE_DIR)
174174
-v "$$(pwd):/workspace$(DOCKER_VOL_OPTS)" \
175175
-w /workspace/tools/setup-envtest \
176176
golang:$(GO_VERSION) \
177-
go build -a -trimpath -ldflags "-extldflags '-static'" \
177+
go build -a -trimpath -ldflags "-X 'sigs.k8s.io/controller-runtime/tools/setup-envtest/version.version=$(RELEASE_TAG)' -extldflags '-static'" \
178178
-o ./out/$(RELEASE_BINARY) ./
179179

180180
## --------------------------------------

tools/setup-envtest/main.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ Commands:
184184
reads a .tar.gz file from stdin and expand it into the store.
185185
must have a concrete version and platform.
186186
187+
version:
188+
list the installed version of setup-envtest.
189+
187190
Versions:
188191
189192
Versions take the form of a small subset of semver selectors.
@@ -256,7 +259,6 @@ Environment Variables:
256259
version = flag.Arg(1)
257260
}
258261
env := setupEnv(globalLog, version)
259-
260262
// perform our main set of actions
261263
switch action := flag.Arg(0); action {
262264
case "use":
@@ -274,6 +276,8 @@ Environment Variables:
274276
Input: os.Stdin,
275277
PrintFormat: printFormat,
276278
}.Do(env)
279+
case "version":
280+
workflows.Version{}.Do(env)
277281
default:
278282
flag.Usage()
279283
envp.Exit(2, "unknown action %q", action)
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package version
2+
3+
import "runtime/debug"
4+
5+
// Version to be set using ldflags:
6+
// -ldflags "-X sigs.k8s.io/controller-tools/pkg/version.version=v1.0.0"
7+
// falls back to module information is unse
8+
var version = ""
9+
10+
// Version returns the version of the main module
11+
func Version() string {
12+
if version != "" {
13+
return version
14+
}
15+
info, ok := debug.ReadBuildInfo()
16+
if !ok || info == nil || info.Main.Version == "" {
17+
// binary has not been built with module support or doesn't contain a version.
18+
return "(unknown)"
19+
}
20+
return info.Main.Version
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
Copyright 2024 The Kubernetes Authors.
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
8+
Unless required by applicable law or agreed to in writing, software
9+
distributed under the License is distributed on an "AS IS" BASIS,
10+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
See the License for the specific language governing permissions and
12+
limitations under the License.
13+
*/
14+
15+
package version
16+
17+
import (
18+
"testing"
19+
20+
. "github.com/onsi/ginkgo/v2"
21+
. "github.com/onsi/gomega"
22+
)
23+
24+
func TestVersioning(t *testing.T) {
25+
RegisterFailHandler(Fail)
26+
RunSpecs(t, "Test Version Suite")
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/*
2+
Copyright 2024 The Kubernetes Authors.
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
8+
Unless required by applicable law or agreed to in writing, software
9+
distributed under the License is distributed on an "AS IS" BASIS,
10+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
12+
See the License for the specific language governing permissions and
13+
14+
limitations under the License.
15+
*/
16+
17+
package version
18+
19+
import (
20+
"runtime/debug"
21+
22+
. "github.com/onsi/ginkgo/v2"
23+
. "github.com/onsi/gomega"
24+
)
25+
26+
var _ = Describe("TestVersion", func() {
27+
28+
info, ok := debug.ReadBuildInfo()
29+
Expect(ok).To(BeTrue())
30+
tests := map[string]struct {
31+
version string
32+
expected string
33+
}{
34+
"empty returns build info": {
35+
version: "",
36+
expected: info.Main.Version,
37+
},
38+
"set to a value returns it": {
39+
version: "1.2.3",
40+
expected: "1.2.3",
41+
},
42+
}
43+
for name, tc := range tests {
44+
It("Version set to "+name, func() {
45+
versionBackup := version
46+
defer func() {
47+
version = versionBackup
48+
}()
49+
version = tc.version
50+
result := Version()
51+
Expect(result).To(Equal(tc.expected))
52+
})
53+
}
54+
})

tools/setup-envtest/workflows/workflows.go

+11
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ package workflows
55

66
import (
77
"context"
8+
"fmt"
89
"io"
910

1011
"github.com/go-logr/logr"
1112

1213
envp "sigs.k8s.io/controller-runtime/tools/setup-envtest/env"
14+
"sigs.k8s.io/controller-runtime/tools/setup-envtest/version"
1315
)
1416

1517
// Use is a workflow that prints out information about stored
@@ -85,3 +87,12 @@ func (f Sideload) Do(env *envp.Env) {
8587
env.Sideload(ctx, f.Input)
8688
env.PrintInfo(f.PrintFormat)
8789
}
90+
91+
// Version is the workflow that shows the current binary version
92+
// of setup-envtest.
93+
type Version struct{}
94+
95+
// Do executes the workflow.
96+
func (v Version) Do(env *envp.Env) {
97+
fmt.Fprintf(env.Out, "setup-envtest version: %s\n", version.Version())
98+
}

tools/setup-envtest/workflows/workflows_test.go

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"fmt"
99
"io/fs"
1010
"path/filepath"
11+
"runtime/debug"
1112
"sort"
1213
"strings"
1314

@@ -443,4 +444,16 @@ var _ = Describe("Workflows", func() {
443444
Expect(string(outContents)).To(HavePrefix(expectedPrefix), "should have the debugging prefix")
444445
})
445446
})
447+
448+
Describe("version", func() {
449+
It("should print out the version if the RELEASE_TAG is empty", func() {
450+
v := wf.Version{}
451+
v.Do(env)
452+
info, ok := debug.ReadBuildInfo()
453+
Expect(ok).To(BeTrue())
454+
Expect(out.String()).ToNot(BeEmpty())
455+
Expect(out.String()).To(Equal(fmt.Sprintf("setup-envtest version: %s\n", info.Main.Version)))
456+
})
457+
})
458+
446459
})

0 commit comments

Comments
 (0)