Skip to content

Commit ba7a8ba

Browse files
feat: Use proper subject DNs in plugins.security.nodes_dn (#144)
* feat: Add node domains to nodes_dn * chore: Update changelog * chore: Update stackable-operator * fix: Fix format of plugins.security.nodes_dn; Fix the unit tests * fix: Support the old subject DN * tests: Use specific operator versions in the tests * test(smoke): Fix assertions * test(smoke): Fix assertions * chore: Upgrade stackable-operator to 0.113.1 * chore: Revert changes in tests/release.yaml * chore: Upgrade anyhow
1 parent 8bae065 commit ba7a8ba

8 files changed

Lines changed: 178 additions & 110 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,18 @@ All notable changes to this project will be documented in this file.
1515
- Document Helm deployed RBAC permissions and remove unnecessary permissions ([#129]).
1616
- BREAKING: `configOverrides` now only accepts the known config file `opensearch.yml`.
1717
Previously, arbitrary file names were silently accepted and ignored ([#137]).
18-
- Bump `stackable-operator` to 0.113.0 ([#137], [#147], [#149]).
18+
- Bump `stackable-operator` to 0.113.1 ([#137], [#144], [#147], [#149]).
1919
- Move the framework code to operator-rs. This introduces no user-visible changes, except that the
2020
allowed length of role group names increases from 16 to 63 ([#147]).
21+
- Replace the generic subject DN in the configuration setting `plugins.security.nodes_dn` with the
22+
FQDNs of the OpenSearch nodes ([#144]).
2123
- test: Bump vector-aggregator to 0.55.0, replace /graphql call with gRPC call ([#146]).
2224

2325
[#129]: https://github.com/stackabletech/opensearch-operator/pull/129
2426
[#130]: https://github.com/stackabletech/opensearch-operator/pull/130
2527
[#137]: https://github.com/stackabletech/opensearch-operator/pull/137
2628
[#141]: https://github.com/stackabletech/opensearch-operator/pull/141
29+
[#144]: https://github.com/stackabletech/opensearch-operator/pull/144
2730
[#146]: https://github.com/stackabletech/opensearch-operator/pull/146
2831
[#147]: https://github.com/stackabletech/opensearch-operator/pull/147
2932
[#148]: https://github.com/stackabletech/opensearch-operator/pull/148

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2024"
1010
repository = "https://github.com/stackabletech/opensearch-operator"
1111

1212
[workspace.dependencies]
13-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.0", features = ["webhook"] }
13+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.1", features = ["webhook"] }
1414

1515
built = { version = "0.8", features = ["chrono", "git2"] }
1616
clap = "4.6"
@@ -29,3 +29,4 @@ uuid = "1.23"
2929

3030
[patch."https://github.com/stackabletech/operator-rs"]
3131
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
32+
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }

crate-hashes.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)