-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the project for kubebuilder go/v4 layout (#93)
Change the layout to follow the Standard Go Project Layout, as described in https://book.kubebuilder.io/migration/v3vsv4. This allows newer releases of kubebuilder to be used with this repo Signed-off-by: Dean Roehrich <[email protected]>
- Loading branch information
1 parent
c0b389c
commit 3c49e3c
Showing
7 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Submodule dws
updated
32 files
Submodule lustre-fs-operator
updated
20 files
+1 −0 | .gitignore | |
+21 −3 | Dockerfile | |
+13 −12 | Makefile | |
+1 −1 | PROJECT | |
+0 −1 | api/v1alpha1/zz_generated.deepcopy.go | |
+2 −2 | api/v1beta1/webhook_suite_test.go | |
+0 −1 | api/v1beta1/zz_generated.deepcopy.go | |
+1 −1 | cmd/main.go | |
+1 −1 | config/crd/bases/lus.cray.hpe.com_lustrefilesystems.yaml | |
+99 −29 | config/default/kustomization.yaml | |
+1 −1 | config/default/manager_auth_proxy_patch.yaml | |
+3 −3 | github/cluster-api/util/conversion/conversion_test.go | |
+1 −1 | go.mod | |
+2 −2 | go.sum | |
+42 −0 | hack/make-kustomization.sh | |
+1 −1 | internal/controller/conversion_test.go | |
+1 −1 | internal/controller/lustrefilesystem_controller.go | |
+1 −1 | internal/controller/lustrefilesystem_controller_test.go | |
+3 −3 | internal/controller/suite_test.go | |
+1 −1 | vendor/modules.txt |
Submodule nnf-dm
updated
37 files
Submodule nnf-integration-test
updated
17 files
+67 −0 | .github/workflows/helper-image.yaml | |
+2 −0 | .gitignore | |
+20 −0 | .vscode/launch.json | |
+3 −0 | Makefile | |
+4 −4 | go.mod | |
+8 −8 | go.sum | |
+7 −0 | helper_image/Dockerfile | |
+45 −0 | helper_image/Makefile | |
+5 −0 | helper_image/README.md | |
+66 −0 | helper_image/scripts/copy-in.sh | |
+48 −0 | helper_image/scripts/copy-out.sh | |
+4 −0 | helper_image/scripts/default.sh | |
+15 −17 | int_test.go | |
+8 −0 | internal/internal.go | |
+43 −0 | internal/options.go | |
+13 −9 | internal/states.go | |
+143 −0 | internal/utils.go |
Submodule nnf-sos
updated
75 files