Skip to content
Merged
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 @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
- Added support for OPA `1.16.2`. `1.12.3` is now deprecated ([#838]).
- BREAKING: Add required CLI argument and env var to set the image repository used to construct final product image names: `IMAGE_REPOSITORY` (`--image-repository`), eg. `oci.example.org/my/namespace` ([#830]).
- Support `configOverrides` for `config.json` ([#818], [#831]).
- Add a description for the `OpaCluster` CRD, which shows up in the generated CRD ([#843]).

### Changed

Expand All @@ -31,6 +32,7 @@ All notable changes to this project will be documented in this file.
[#836]: https://github.com/stackabletech/opa-operator/pull/836
[#838]: https://github.com/stackabletech/opa-operator/pull/838
[#840]: https://github.com/stackabletech/opa-operator/pull/840
[#843]: https://github.com/stackabletech/opa-operator/pull/843

## [26.3.0] - 2026-03-16

Expand Down
8 changes: 8 additions & 0 deletions extra/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ spec:
description: Auto-generated derived type for OpaClusterSpec via `CustomResource`
properties:
spec:
description: |-
An OPA (Open Policy Agent) cluster stacklet. This resource is managed by the Stackable operator for OPA.
Find more information on how to use it and the resources that the operator generates in the
[operator documentation](https://docs.stackable.tech/home/nightly/opa/).
properties:
clusterConfig:
default:
Expand Down Expand Up @@ -1914,6 +1918,10 @@ spec:
description: Auto-generated derived type for OpaClusterSpec via `CustomResource`
properties:
spec:
description: |-
An OPA (Open Policy Agent) cluster stacklet. This resource is managed by the Stackable operator for OPA.
Find more information on how to use it and the resources that the operator generates in the
[operator documentation](https://docs.stackable.tech/home/nightly/opa/).
properties:
clusterConfig:
default:
Expand Down
3 changes: 3 additions & 0 deletions rust/operator-binary/src/crd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ pub enum Error {
)
)]
pub mod versioned {
/// An OPA (Open Policy Agent) cluster stacklet. This resource is managed by the Stackable operator for OPA.
/// Find more information on how to use it and the resources that the operator generates in the
/// [operator documentation](DOCS_BASE_URL_PLACEHOLDER/opa/).
#[versioned(crd(
group = "opa.stackable.tech",
status = "OpaClusterStatus",
Expand Down
Loading