Skip to content

Commit 94e1784

Browse files
authored
fix: Bump stackable-operator for delayed controller functionality (#122)
* fix: Bump stackable-operator for delayed controller functionality * chore: Update changelog * chore: Use delayed controllers * chore: Update changelog
1 parent ee4da00 commit 94e1784

File tree

7 files changed

+94
-61
lines changed

7 files changed

+94
-61
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ All notable changes to this project will be documented in this file.
3131

3232
### Changed
3333

34-
- Bump stackable-operator to 0.106.2, strum to 0.28, and snafu to 0.9 ([#120]).
34+
- Bump stackable-operator to 0.108.0, strum to 0.28, and snafu to 0.9 ([#120], [#122]).
3535
- Gracefully shutdown all concurrent tasks by forwarding the SIGTERM signal ([#110]).
3636
- Bump testing-tools to `0.3.0-stackable0.0.0-dev` ([#91]).
3737

3838
### Fixed
3939

4040
- Log file rollover fixed ([#107]).
41+
- Fix "404 page not found" error for the initial object list ([#122]).
4142

4243
[#55]: https://github.com/stackabletech/opensearch-operator/pull/55
4344
[#63]: https://github.com/stackabletech/opensearch-operator/pull/63
@@ -53,6 +54,7 @@ All notable changes to this project will be documented in this file.
5354
[#114]: https://github.com/stackabletech/opensearch-operator/pull/114
5455
[#117]: https://github.com/stackabletech/opensearch-operator/pull/117
5556
[#120]: https://github.com/stackabletech/opensearch-operator/pull/120
57+
[#122]: https://github.com/stackabletech/opensearch-operator/pull/122
5658

5759
## [25.11.0] - 2025-11-07
5860

Cargo.lock

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

Cargo.nix

Lines changed: 42 additions & 29 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 & 2 deletions
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.106.2", features = ["telemetry", "versioned", "webhook"] }
13+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.108.0", features = ["webhook"] }
1414

1515
built = { version = "0.8.0", features = ["chrono", "git2"] }
1616
clap = "4.5"
@@ -20,7 +20,7 @@ regex = "1.11"
2020
rstest = "0.26"
2121
serde = { version = "1.0", features = ["derive"] }
2222
serde_json = "1.0"
23-
snafu = "0.9"
23+
snafu = { version = "0.9", features = ["futures"] }
2424
strum = { version = "0.28", features = ["derive"] }
2525
tokio = { version = "1.47", features = ["full"] }
2626
tracing = "0.1"

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.

deploy/helm/opensearch-operator/templates/roles.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ rules:
8282
{{- if .Values.maintenance.customResourceDefinitions.maintain }}
8383
- create
8484
- patch
85+
# Required for startup condition
86+
- list
87+
- watch
8588
{{- end }}
8689
- apiGroups:
8790
- listeners.stackable.tech

0 commit comments

Comments
 (0)