forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.go
109 lines (97 loc) · 3.09 KB
/
version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package version
import (
"fmt"
"regexp"
"strings"
etcdversion "github.com/coreos/etcd/version"
"github.com/prometheus/client_golang/prometheus"
"github.com/spf13/cobra"
kubeversion "k8s.io/kubernetes/pkg/version"
)
var (
// commitFromGit is a constant representing the source version that
// generated this build. It should be set during build via -ldflags.
commitFromGit string
// versionFromGit is a constant representing the version tag that
// generated this build. It should be set during build via -ldflags.
versionFromGit string
// major version
majorFromGit string
// minor version
minorFromGit string
)
// Info contains versioning information.
// TODO: Add []string of api versions supported? It's still unclear
// how we'll want to distribute that information.
type Info struct {
Major string `json:"major"`
Minor string `json:"minor"`
GitCommit string `json:"gitCommit"`
GitVersion string `json:"gitVersion"`
}
// Get returns the overall codebase version. It's for detecting
// what code a binary was built from.
func Get() Info {
return Info{
Major: majorFromGit,
Minor: minorFromGit,
GitCommit: commitFromGit,
GitVersion: versionFromGit,
}
}
// String returns info as a human-friendly version string.
func (info Info) String() string {
version := info.GitVersion
if version == "" {
version = "unknown"
}
return version
}
var (
reCommitSegment = regexp.MustCompile(`^g[0-9a-f]{6,10}$`)
reCommitIncrement = regexp.MustCompile(`^[0-9a-f]+$`)
)
// LastSemanticVersion attempts to return a semantic version from the GitVersion - which
// is either <semver>-<increment>-g<commit> or <semver> on release boundaries.
func (info Info) LastSemanticVersion() string {
version := info.GitVersion
parts := strings.Split(version, "-")
// strip the modifier
if len(parts) > 1 && parts[len(parts)-1] == "dirty" {
parts = parts[:len(parts)-1]
}
// strip the Git commit
if len(parts) > 1 && reCommitSegment.MatchString(parts[len(parts)-1]) {
parts = parts[:len(parts)-1]
// strip a version increment, but only if we found the commit
if len(parts) > 1 && reCommitIncrement.MatchString(parts[len(parts)-1]) {
parts = parts[:len(parts)-1]
}
}
return strings.Join(parts, "-")
}
// NewVersionCommand creates a command for displaying the version of this binary
func NewVersionCommand(basename string, printEtcdVersion bool) *cobra.Command {
return &cobra.Command{
Use: "version",
Short: "Display version",
Run: func(c *cobra.Command, args []string) {
fmt.Printf("%s %v\n", basename, Get())
fmt.Printf("kubernetes %v\n", kubeversion.Get())
if printEtcdVersion {
fmt.Printf("etcd %v\n", etcdversion.Version)
}
},
}
}
func init() {
buildInfo := prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "openshift_build_info",
Help: "A metric with a constant '1' value labeled by major, minor, git commit & git version from which OpenShift was built.",
},
[]string{"major", "minor", "gitCommit", "gitVersion"},
)
buildInfo.WithLabelValues(majorFromGit, minorFromGit, commitFromGit, versionFromGit).Set(1)
prometheus.MustRegister(buildInfo)
}