mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-04-27 11:11:31 +00:00
fix: docker version (#444)
* feat: added the ability to set a user default AI provider Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat: added the ability to set a user default AI provider Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat: s3 based caching Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * fix: missing version info and improvements Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: fixing local build Signed-off-by: Alex Jones <alexsimonjones@gmail.com> --------- Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
This commit is contained in:
parent
b7dc384547
commit
1f767ebd2e
@ -15,6 +15,8 @@ builds:
|
|||||||
- darwin
|
- darwin
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X main.version={{.Version}}
|
- -s -w -X main.version={{.Version}}
|
||||||
|
- -s -w -X main.commit={{.ShortCommit}}
|
||||||
|
- -s -w -X main.Date={{.CommitDate}}
|
||||||
|
|
||||||
nfpms:
|
nfpms:
|
||||||
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}'
|
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}'
|
||||||
|
2
Makefile
2
Makefile
@ -54,7 +54,7 @@ all: tidy add-copyright lint cover build
|
|||||||
build:
|
build:
|
||||||
@echo "$(shell go version)"
|
@echo "$(shell go version)"
|
||||||
@echo "===========> Building binary $(BUILDAPP) *[Git Info]: $(VERSION)-$(GIT_COMMIT)"
|
@echo "===========> Building binary $(BUILDAPP) *[Git Info]: $(VERSION)-$(GIT_COMMIT)"
|
||||||
@export CGO_ENABLED=0 && go build -o $(BUILDAPP) -ldflags '-s -w' $(BUILDFILE)
|
@export CGO_ENABLED=0 && go build -o $(BUILDAPP) -ldflags "-s -w -X main.version=dev -X main.commit=$$(git rev-parse --short HEAD) -X main.date=$$(date +%FT%TZ)" $(BUILDFILE)
|
||||||
|
|
||||||
## tidy: tidy go.mod
|
## tidy: tidy go.mod
|
||||||
.PHONY: tidy
|
.PHONY: tidy
|
||||||
|
10
cmd/root.go
10
cmd/root.go
@ -34,7 +34,9 @@ var (
|
|||||||
cfgFile string
|
cfgFile string
|
||||||
kubecontext string
|
kubecontext string
|
||||||
kubeconfig string
|
kubeconfig string
|
||||||
version string
|
Version string
|
||||||
|
Commit string
|
||||||
|
Date string
|
||||||
)
|
)
|
||||||
|
|
||||||
// rootCmd represents the base command when called without any subcommands
|
// rootCmd represents the base command when called without any subcommands
|
||||||
@ -49,8 +51,10 @@ var rootCmd = &cobra.Command{
|
|||||||
|
|
||||||
// Execute adds all child commands to the root command and sets flags appropriately.
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
||||||
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
||||||
func Execute(v string) {
|
func Execute(v string, c string, d string) {
|
||||||
version = v
|
Version = v
|
||||||
|
Commit = c
|
||||||
|
Date = d
|
||||||
err := rootCmd.Execute()
|
err := rootCmd.Execute()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@ -14,6 +14,9 @@ limitations under the License.
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"runtime/debug"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -23,7 +26,21 @@ var versionCmd = &cobra.Command{
|
|||||||
Short: "Print the version number of k8sgpt",
|
Short: "Print the version number of k8sgpt",
|
||||||
Long: `All software has versions. This is k8sgpt's`,
|
Long: `All software has versions. This is k8sgpt's`,
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
cmd.Printf("k8sgpt version %s\n", version)
|
if Version == "dev" {
|
||||||
|
details, ok := debug.ReadBuildInfo()
|
||||||
|
if ok && details.Main.Version != "" && details.Main.Version != "(devel)" {
|
||||||
|
Version = details.Main.Version
|
||||||
|
for _, i := range details.Settings {
|
||||||
|
if i.Key == "vcs.time" {
|
||||||
|
Date = i.Value
|
||||||
|
}
|
||||||
|
if i.Key == "vcs.revision" {
|
||||||
|
Commit = i.Value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fmt.Printf("ks8gpt: %s (%s), built at: %s\n", Version, Commit, Date)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,9 @@
|
|||||||
FROM golang:1.20.4-alpine3.16 AS builder
|
FROM golang:1.20.4-alpine3.16 AS builder
|
||||||
|
|
||||||
ENV CGO_ENABLED=0
|
ENV CGO_ENABLED=0
|
||||||
|
ARG VERSION
|
||||||
|
ARG COMMIT
|
||||||
|
ARG DATE
|
||||||
WORKDIR /workspace
|
WORKDIR /workspace
|
||||||
|
|
||||||
COPY go.mod go.sum ./
|
COPY go.mod go.sum ./
|
||||||
@ -20,7 +22,7 @@ RUN go mod download
|
|||||||
|
|
||||||
COPY ./ ./
|
COPY ./ ./
|
||||||
|
|
||||||
RUN go build -o /workspace/k8sgpt ./
|
RUN go build -o /workspace/k8sgpt -ldflags "-X main.version=${VERSION} -X main.commit=${COMMIT} -X main.date=${DATE}" ./
|
||||||
|
|
||||||
FROM gcr.io/distroless/static AS production
|
FROM gcr.io/distroless/static AS production
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user