Skip to content

Commit 9c3ca09

Browse files
committed
Use S3 structs from the operator-rs framework (#55)
## Description Fixes #49 **TODO**: release operator-rs 0.18.0 and update Cargo.toml files.
1 parent e7d7075 commit 9c3ca09

26 files changed

+890
-509
lines changed

.pre-commit-config.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
# See https://pre-commit.com for more information
3+
# See https://pre-commit.com/hooks.html for more hooks
4+
repos:
5+
- repo: https://github.com/pre-commit/pre-commit-hooks
6+
rev: v3.2.0
7+
hooks:
8+
- id: trailing-whitespace
9+
- id: end-of-file-fixer
10+
- id: detect-aws-credentials
11+
args: ["--allow-missing-credentials"]
12+
- id: detect-private-key
13+
- repo: https://github.com/doublify/pre-commit-rust
14+
rev: v1.0
15+
hooks:
16+
- id: fmt
17+
- id: clippy
18+
args: ["--all-targets"]
19+
- repo: https://github.com/adrienverge/yamllint
20+
rev: v1.26.3
21+
hooks:
22+
- id: yamllint

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ All notable changes to this project will be documented in this file.
1010
- ServiceAccount, ClusterRole and RoleBinding for Spark driver ([#39])
1111
- S3 credentials can be provided via a Secret ([#42])
1212
- Job information can be passed via a configuration map ([#50])
13+
- Update S3 bucket specification to be conform with the corresponding ADR ([#55])
1314

1415
[#39]: https://github.com/stackabletech/spark-k8s-operator/pull/39
1516
[#42]: https://github.com/stackabletech/spark-k8s-operator/pull/42
1617
[#50]: https://github.com/stackabletech/spark-k8s-operator/pull/50
18+
[#55]: https://github.com/stackabletech/spark-k8s-operator/pull/55

0 commit comments

Comments
 (0)