mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
45d27fafd6
Add logic to autogenerate CRD docs. .github/workflows/kubemanifests.yaml CI workflow will fail if the doc is out of date with regard to the current CRDs. Docs can be refreshed by running make kube-generate-all. Updates tailscale/tailscale#11023 Signed-off-by: Irbe Krumina <irbe@tailscale.com>
17 lines
362 B
Go
17 lines
362 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// This file exists just so `go mod tidy` won't remove
|
|
// tool modules from our go.mod.
|
|
|
|
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "fybrik.io/crdoc"
|
|
_ "github.com/tailscale/mkctr"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
|
|
)
|