Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ All notable changes to this project will be documented in this file.
- Deprecate OPA 1.8.0 ([#797]).
- user-info-fetcher: Move backend initialization and credential resolution into backend-specific implementations ([#782]).

### Fixed

- Fix services for status reporting ([#799]).
Comment thread
adwk67 marked this conversation as resolved.
Outdated

### Removed

- Remove support for OPA 1.4.2 ([#797]).
Expand All @@ -26,6 +30,7 @@ All notable changes to this project will be documented in this file.
[#793]: https://github.com/stackabletech/opa-operator/pull/793
[#795]: https://github.com/stackabletech/opa-operator/pull/795
[#797]: https://github.com/stackabletech/opa-operator/pull/797
[#799]: https://github.com/stackabletech/opa-operator/pull/799

## [25.11.0] - 2025-11-07

Expand Down
6 changes: 1 addition & 5 deletions rust/operator-binary/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,7 @@ impl OpaClusterConfigFile {
decision_logs: decision_logging,
// Enable more Prometheus metrics, such as bundle loads
// See https://www.openpolicyagent.org/docs/monitoring#status-metrics
status: Some(OpaClusterConfigStatus {
service: OPA_STACKABLE_SERVICE_NAME.to_owned(),
prometheus: true,
}),
status: Some(OpaClusterConfigStatus { prometheus: true }),
}
}
}
Expand Down Expand Up @@ -421,7 +418,6 @@ pub struct OpaClusterConfigDecisionLog {

#[derive(Serialize, Deserialize)]
struct OpaClusterConfigStatus {
service: String,
prometheus: bool,
}

Expand Down