cyberark/secrets-provider-for-k8s

View on GitHub
pkg/secrets/version.go

Summary

Maintainability
A
0 mins
Test Coverage
package secrets

import "fmt"

// Version field is a SemVer that should indicate the baked-in version
var Version = "1.6.5"

// Tag field denotes the specific build type for the broker. It may
// be replaced by compile-time variables if needed to provide the git
// commit information in the final binary.
var Tag = "dev"

// FullVersionName is the user-visible aggregation of version and tag
// of this codebase
var FullVersionName = fmt.Sprintf("%s-%s", Version, Tag)