Skip to content

Commit 794d1d7

Browse files
committed
allow specifying pvc parameters (#164)
## Description Fixes #67
1 parent b4de998 commit 794d1d7

28 files changed

+2648
-156
lines changed

.pre-commit-config.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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: v4.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+
args: ["--all", "--", "--check"]
18+
- id: clippy
19+
args: ["--all-targets", "--", "-D", "warnings"]
20+
- repo: https://github.com/adrienverge/yamllint
21+
rev: v1.26.3
22+
hooks:
23+
- id: yamllint
24+
- repo: https://github.com/igorshubovych/markdownlint-cli
25+
rev: v0.31.1
26+
hooks:
27+
- id: markdownlint

CHANGELOG.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ All notable changes to this project will be documented in this file.
88

99
- The possibility to specify `configOverrides` and `envOverrides` ([#122]).
1010
- Reconciliation errors are now reported as Kubernetes events ([#130]).
11-
- Use cli argument `watch-namespace` / env var `WATCH_NAMESPACE` to specify
12-
a single namespace to watch ([#134]).
11+
- Use cli argument `watch-namespace` / env var `WATCH_NAMESPACE` to specify a single namespace to watch ([#134]).
1312
- Config builder for `hdfs-site.xml` and `core-site.xml` ([#150]).
1413
- Discovery configmap that exposes the namenode services for clients to connect ([#150]).
1514
- Documented service discovery for namenodes ([#150]).
16-
- Publish warning events when role replicas don't meet certain minimum requirements ([#162])
15+
- Publish warning events when role replicas don't meet certain minimum requirements ([#162]).
16+
- PVCs for data storage, cpu and memory limits are now configurable ([#164]).
17+
- Fix environment variable names according to <https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/ClusterSetup.html#Configuring_Environment_of_Hadoop_Daemons> ([#164]).
1718

1819
### Changed
1920

@@ -25,7 +26,8 @@ All notable changes to this project will be documented in this file.
2526
[#134]: https://github.com/stackabletech/hdfs-operator/pull/134
2627
[#148]: https://github.com/stackabletech/hdfs-operator/pull/148
2728
[#150]: https://github.com/stackabletech/hdfs-operator/pull/150
28-
[#159]: https://github.com/stackabletech/hdfs-operator/pull/162
29+
[#162]: https://github.com/stackabletech/hdfs-operator/pull/162
30+
[#164]: https://github.com/stackabletech/hdfs-operator/pull/164
2931

3032
## [0.3.0] - 2022-02-14
3133

@@ -45,13 +47,14 @@ All notable changes to this project will be documented in this file.
4547

4648
- `operator-rs` `0.3.0``0.4.0` ([#20]).
4749
- Adapted pod image and container command to docker image ([#20]).
48-
- Adapted documentation to represent new workflow with docker images ([#20]).
50+
- Adapted documentation to represent new workflow with docker images ([#20]).
4951

5052
[#20]: https://github.com/stackabletech/hdfs-operator/pull/20
5153

5254
## [0.1.0] - 2021-10-27
5355

5456
### Changed
57+
5558
- Switched to operator-rs tag 0.3.0 ([#13])
5659

5760
[#13]: https://github.com/stackabletech/hdfs-operator/pull/13

0 commit comments

Comments
 (0)