mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-22 16:18:07 +00:00
kube-bench: add version subcommand
Signed-off-by: Simarpreet Singh <simar@linux.com>
This commit is contained in:
parent
1d7449db34
commit
3b7438e2f2
23
cmd/version.go
Normal file
23
cmd/version.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package cmd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
var KubeBenchVersion string
|
||||||
|
|
||||||
|
// versionCmd represents the version command
|
||||||
|
var versionCmd = &cobra.Command{
|
||||||
|
Use: "version",
|
||||||
|
Short: "Shows the version of kube-bench.",
|
||||||
|
Long: `Shows the version of kube-bench.`,
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
fmt.Println(KubeBenchVersion)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
RootCmd.AddCommand(versionCmd)
|
||||||
|
}
|
||||||
|
|
3
makefile
3
makefile
@ -2,6 +2,7 @@ SOURCES := $(shell find . -name '*.go')
|
|||||||
BINARY := kube-bench
|
BINARY := kube-bench
|
||||||
DOCKER_REGISTRY ?= aquasec
|
DOCKER_REGISTRY ?= aquasec
|
||||||
VERSION ?= $(shell git rev-parse --short=7 HEAD)
|
VERSION ?= $(shell git rev-parse --short=7 HEAD)
|
||||||
|
KUBEBENCH_VERSION ?= $(shell git describe --tags --abbrev=0)
|
||||||
IMAGE_NAME ?= $(DOCKER_REGISTRY)/$(BINARY):$(VERSION)
|
IMAGE_NAME ?= $(DOCKER_REGISTRY)/$(BINARY):$(VERSION)
|
||||||
TARGET_OS := linux
|
TARGET_OS := linux
|
||||||
BUILD_OS := linux
|
BUILD_OS := linux
|
||||||
@ -22,7 +23,7 @@ KIND_CONTAINER_NAME=$(KIND_PROFILE)-control-plane
|
|||||||
build: kube-bench
|
build: kube-bench
|
||||||
|
|
||||||
$(BINARY): $(SOURCES)
|
$(BINARY): $(SOURCES)
|
||||||
GOOS=$(TARGET_OS) go build -o $(BINARY) .
|
GOOS=$(TARGET_OS) go build -ldflags "-X github.com/aquasecurity/kube-bench/cmd.KubeBenchVersion=$(KUBEBENCH_VERSION)" -o $(BINARY) .
|
||||||
|
|
||||||
# builds the current dev docker version
|
# builds the current dev docker version
|
||||||
build-docker:
|
build-docker:
|
||||||
|
Loading…
Reference in New Issue
Block a user