-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: migrate kubebuilder, k8s dependencies and go version (#216)
* rename dir `apis` to `api` * move main.go and Dockerfile to cmd/manager/ * move controllers from controllers/ to internal/controller/ dir * update PROJECT * update suite_test.go * update go and dependencies * update github workflows * simplifies Makefile * fix manifests target in Makefile * ignoring doc dirs when adding license header * generate manifests * fix worker Dockerfile * update config/ files * move status.go from pkg/apis/ to api/zora/v1alpha1/ * annotate package discovery to generate deepcopy implementation * removing TODOs * moving saas payloads to saas package * update .gitignore * merge packages plugins/errparse and plugins/cronjobs * move saas package to internal * delete worker/run/ package * add template target in Makefile * update rbac-proxy version * 0.5.2-rc1 * fix Makefile * fix manager Dockerfile * add kustomize labels in config/ manifests * rename config/rbac/ files
- Loading branch information
Showing
161 changed files
with
953 additions
and
2,235 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: test | ||
on: | ||
pull_request: | ||
branches: [main] | ||
push: | ||
branches: [main] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: setup go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: "1.19" | ||
cache: true | ||
|
||
- name: test | ||
run: make test | ||
|
||
- name: check license headers | ||
run: make check-license | ||
|
||
- name: build | ||
run: make build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
*.dylib | ||
bin | ||
testbin/* | ||
Dockerfile.cross | ||
|
||
# Test binary, build with `go test -c` | ||
*.test | ||
|
Oops, something went wrong.