Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ All notable changes to this project will be documented in this file.
images can be used which have a different directory structure than the Stackable image ([#18]).
- Add Prometheus labels and annotations to role-group services ([#26]).
- Helm: Allow Pod `priorityClassName` to be configured ([#34]).
- Support log configuration and log aggregation ([#40]).

[#10]: https://github.com/stackabletech/opensearch-operator/pull/10
[#17]: https://github.com/stackabletech/opensearch-operator/pull/17
[#18]: https://github.com/stackabletech/opensearch-operator/pull/18
[#26]: https://github.com/stackabletech/opensearch-operator/pull/26
[#34]: https://github.com/stackabletech/opensearch-operator/pull/34
[#38]: https://github.com/stackabletech/opensearch-operator/pull/38
[#40]: https://github.com/stackabletech/opensearch-operator/pull/40
32 changes: 28 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 65 additions & 4 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git",
built = { version = "0.8.0", features = ["chrono", "git2"] }
clap = "4.5"
futures = { version = "0.3", features = ["compat"] }
pretty_assertions = "1.4"
regex = "1.11"
rstest = "0.26"
schemars = { version = "1.0.0", features = ["url2"] } # same as in operator-rs
serde = { version = "1.0", features = ["derive"] }
Expand Down
Loading