forked from openshift/operator-framework-olm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.go
23 lines (21 loc) · 740 Bytes
/
tools.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//go:build tools
// +build tools
package tools
import (
// Generate deepcopy and conversion.
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
// Manipulate YAML.
_ "github.com/mikefarah/yq/v3"
// Generate embedded files.
_ "github.com/go-bindata/go-bindata/v3/go-bindata"
_ "github.com/golang/mock/mockgen"
_ "github.com/googleapis/gnostic"
_ "github.com/grpc-ecosystem/grpc-health-probe"
_ "github.com/maxbrunsfeld/counterfeiter/v6"
_ "github.com/onsi/ginkgo/v2/ginkgo"
_ "github.com/operator-framework/api/crds" // operators.coreos.com CRD manifests
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
_ "k8s.io/code-generator"
_ "k8s.io/kube-openapi/cmd/openapi-gen"
)