Peter Kurfer
647f602c79
- added Core CRD to manage DB migrations & configuration, PostgREST and GoTrue (auth) - added APIGateway CRD to manage Envoy proxy - added Dashboard CRD to manage (so far) pg-meta and (soon) studio deployments - implemented basic Envoy control plane based on K8s watcher
12 lines
309 B
Go
12 lines
309 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/elastic/crd-ref-docs"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "mvdan.cc/gofumpt"
|
|
_ "sigs.k8s.io/controller-runtime/tools/setup-envtest"
|
|
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
|
|
_ "sigs.k8s.io/kustomize/kustomize/v5"
|
|
)
|