Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a crd-bumper.yaml #89

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions crd-bumper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# A comma-separated list of directories where more Go code can be found, beyond
# the usual cmd/, api/, internal/ that kubebuilder would put in place. The Go
# files in these dirs will be bumped to the new hub version.
extra_go_dirs: internal

# A comma-separated list of pathnames to Go source files. These Go files will
# be bumped to the new hub version. Use this when `extra_go_dirs` would be
# too broad.
extra_go_files: int_test.go,suite_test.go

# The main file to look at to see how APIs are being imported. The default file
# is cmd/main.go. Set this if a different file should be used.
alternate_main: suite_test.go

# Set this to true if this repo does not use controller-gen.
skip_controller_gen: true