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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ All notable changes to this project will be documented in this file.

- Aggregate emitted Kubernetes events on the CustomResources ([#267]).

### Changed

- Default to OCI for image metadata ([#268]).

[#267]: https://github.com/stackabletech/listener-operator/pull/267
[#268]: https://github.com/stackabletech/listener-operator/pull/268

## [24.11.1] - 2025-01-10

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ prost = "0.13"
prost-types = "0.13"
serde = "1.0"
snafu = "0.8"
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.84.1" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.85.0" }
strum = { version = "0.26", features = ["derive"] }
socket2 = { version = "0.5", features = ["all"] }
tokio = { version = "1.40", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions deploy/helm/listener-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Default values for listener-operator.
---
image:
repository: docker.stackable.tech/stackable/listener-operator
repository: oci.stackable.tech/sdp/listener-operator
pullPolicy: IfNotPresent
pullSecrets: []

csiProvisioner:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-provisioner
repository: oci.stackable.tech/sdp/sig-storage/csi-provisioner
tag: v5.1.0
pullPolicy: IfNotPresent
resources:
Expand All @@ -19,7 +19,7 @@ csiProvisioner:
memory: 128Mi
csiNodeDriverRegistrar:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-node-driver-registrar
repository: oci.stackable.tech/sdp/sig-storage/csi-node-driver-registrar
tag: v2.13.0
pullPolicy: IfNotPresent
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
serviceAccountName: query-ingresses-sa
containers:
- name: query-ingresses
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
# NOTE: Hostname resolution does not work on our OKD clusters, so the command for testing the Hostname is omitted on Openshift. It would be better to omit this entire test value for Openshift but this is not (yet) possible in beku.
{% if test_scenario['values']['openshift'] == 'true' and test_scenario['values']['addressType'] != "Hostname" %}
command:
Expand Down