Skip to content

Commit

Permalink
Update the project for kubebuilder go/v4 layout (#54)
Browse files Browse the repository at this point in the history
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
roehrich-hpe authored Nov 1, 2023
1 parent ce2ad32 commit e4f73f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testsuite/submodules/dws
Submodule dws updated 32 files
+1 −0 .gitignore
+4 −3 Dockerfile
+10 −9 Makefile
+1 −1 PROJECT
+0 −1 api/v1alpha1/zz_generated.deepcopy.go
+2 −2 api/v1alpha2/webhook_suite_test.go
+0 −1 api/v1alpha2/zz_generated.deepcopy.go
+0 −0 cmd/main.go
+1 −1 config/craystack/kustomization.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_clientmounts.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_computes.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_directivebreakdowns.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_dwdirectiverules.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_persistentstorageinstances.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_servers.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_storages.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_systemconfigurations.yaml
+1 −1 config/crd/bases/dataworkflowservices.github.io_workflows.yaml
+1 −1 config/csm/kustomization.yaml
+99 −29 config/default/kustomization.yaml
+1 −1 config/default/manager_auth_proxy_patch.yaml
+1 −1 config/dp0/kustomization.yaml
+1 −1 config/kind/kustomization.yaml
+1 −1 config/manager/kustomization.yaml
+1 −1 controllers/workflow_controller.go
+3 −3 github/cluster-api/util/conversion/conversion_test.go
+42 −0 hack/make-kustomization.sh
+1 −1 internal/controller/conversion_test.go
+0 −0 internal/controller/metrics/metrics.go
+5 −4 internal/controller/suite_test.go
+1 −1 internal/controller/workflow_controller_test.go
+0 −1 utils/dwdparse/zz_generated.deepcopy.go
2 changes: 1 addition & 1 deletion testsuite/submodules/dws-test-driver
Submodule dws-test-driver updated 26 files
+3 −3 Dockerfile
+5 −5 Makefile
+4 −4 PROJECT
+1 −1 cmd/main.go
+99 −29 config/default/kustomization.yaml
+1 −1 config/default/manager_auth_proxy_patch.yaml
+2 −2 config/top/kustomization.yaml
+1 −1 go.mod
+2 −2 go.sum
+4 −4 internal/controller/suite_test.go
+1 −1 internal/controller/workflow_controller.go
+1 −1 internal/controller/workflow_controller_test.go
+0 −1 vendor/github.com/DataWorkflowServices/dws/api/v1alpha2/zz_generated.deepcopy.go
+1 −1 vendor/github.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_clientmounts.yaml
+1 −1 vendor/github.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_computes.yaml
+1 −1 ...ithub.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_directivebreakdowns.yaml
+1 −1 ...r/github.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_dwdirectiverules.yaml
+1 −1 ...om/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_persistentstorageinstances.yaml
+1 −1 vendor/github.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_servers.yaml
+1 −1 vendor/github.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_storages.yaml
+1 −1 ...thub.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_systemconfigurations.yaml
+1 −1 vendor/github.com/DataWorkflowServices/dws/config/crd/bases/dataworkflowservices.github.io_workflows.yaml
+1 −1 vendor/github.com/DataWorkflowServices/dws/controllers/workflow_controller.go
+0 −0 vendor/github.com/DataWorkflowServices/dws/internal/controller/metrics/metrics.go
+0 −1 vendor/github.com/DataWorkflowServices/dws/utils/dwdparse/zz_generated.deepcopy.go
+2 −2 vendor/modules.txt

0 comments on commit e4f73f1

Please sign in to comment.