-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use controller-runtime to reconstruct spark operator
Signed-off-by: Yi Chen <[email protected]>
- Loading branch information
Showing
268 changed files
with
62,714 additions
and
33,550 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
vendor | ||
.idea/ | ||
.vscode/ | ||
bin/ | ||
charts/ | ||
docs/ | ||
examples/ | ||
manifest/ | ||
sparkctl/sparkctl | ||
sparkctl/sparkctl-linux-amd64 | ||
sparkctl/sparkctl-darwin-amd64 | ||
test/ | ||
vendor/ | ||
.DS_Store | ||
.gitignore | ||
.gitlab-ci.yaml | ||
.pre-commit-config.yaml | ||
CONTRIBUTING.md | ||
OWNERS | ||
README.md | ||
spark-operator | ||
test.sh |
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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
.vscode/ | ||
bin/ | ||
vendor/ | ||
spark-operator | ||
.idea/ | ||
**/*.iml | ||
cover.out | ||
sparkctl/sparkctl | ||
spark-on-k8s-operator | ||
sparkctl/sparkctl-linux-amd64 | ||
sparkctl/sparkctl-darwin-amd64 | ||
**/*.iml | ||
|
||
# Various IDEs | ||
.idea/ | ||
.vscode/ |
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,26 @@ | ||
run: | ||
deadline: 5m | ||
|
||
linters: | ||
enable: | ||
- revive | ||
- gci | ||
- depguard | ||
- godot | ||
- testifylint | ||
- unconvert | ||
|
||
issues: | ||
exclude-rules: | ||
# Disable errcheck linter for test files. | ||
- path: _test.go | ||
linters: | ||
- errcheck | ||
|
||
linters-settings: | ||
gci: | ||
sections: | ||
- standard | ||
- default | ||
- prefix(github.com/kubeflow/spark-operator) | ||
|
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
Oops, something went wrong.