talos/pkg/version/version.go
Artem Chernyshev 261c497c71
feat: implement talosctl support command
Fixes: https://github.com/talos-systems/talos/issues/4406

Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
2021-11-08 16:20:50 +03:00

82 lines
1.8 KiB
Go

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package version
import (
"fmt"
"io"
"os"
"runtime"
"text/template"
machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine"
)
var (
// Name is set at build time.
Name string
// Tag is set at build time.
Tag string
// SHA is set at build time.
SHA string
// Built is set at build time.
Built string
// PkgsVersion is set at build time.
PkgsVersion string
// ExtrasVersion is set at build time.
ExtrasVersion string
)
const versionTemplate = ` Tag: {{ .Tag }}
SHA: {{ .Sha }}
Built: {{ .Built }}
Go version: {{ .GoVersion }}
OS/Arch: {{ .Os }}/{{ .Arch }}
`
// NewVersion prints verbose version information.
func NewVersion() *machineapi.VersionInfo {
return &machineapi.VersionInfo{
Tag: Tag,
Sha: SHA,
Built: Built,
GoVersion: runtime.Version(),
Os: runtime.GOOS,
Arch: runtime.GOARCH,
}
}
// PrintLongVersion prints verbose version information.
func PrintLongVersion() {
printLong(os.Stdout, NewVersion())
}
// PrintLongVersionFromExisting prints verbose version information.
func PrintLongVersionFromExisting(v *machineapi.VersionInfo) {
printLong(os.Stdout, v)
}
// WriteLongVersionFromExisting writes verbose version to io.Writer.
func WriteLongVersionFromExisting(w io.Writer, v *machineapi.VersionInfo) {
printLong(w, v)
}
func printLong(w io.Writer, v *machineapi.VersionInfo) {
tmpl, err := template.New("version").Parse(versionTemplate)
if err != nil {
return
}
err = tmpl.Execute(w, v)
if err != nil {
return
}
}
// PrintShortVersion prints the tag and SHA.
func PrintShortVersion() {
fmt.Printf("%s %s-%s\n", Name, Tag, SHA)
}