mirror of
https://github.com/holos-run/holos.git
synced 2026-03-02 19:18:54 +00:00
Add kubectl to tools.go to pin the version and allow installation via `go install k8s.io/kubectl`. This upgrades Kubernetes-related dependencies from v0.33.3 to v0.34.3. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
327 B
Go
15 lines
327 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
// Refer to "How can I track tool dependencies for a module?"
|
|
// https://go.dev/wiki/Modules
|
|
|
|
import (
|
|
_ "cuelang.org/go/cmd/cue"
|
|
_ "github.com/princjef/gomarkdoc/cmd/gomarkdoc"
|
|
_ "github.com/rogpeppe/go-internal/cmd/testscript"
|
|
_ "k8s.io/kubectl"
|
|
_ "sigs.k8s.io/kustomize/kustomize/v5"
|
|
)
|