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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## 0.2.5 - 2026-05-17

### Changed

- Update the default `kafka-backup` job image to `osodevops/kafka-backup:v0.15.6`.

## 0.2.4 - 2026-05-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "kafka-backup-operator"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
rust-version = "1.88"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/kafkabackups.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ spec:
x-kubernetes-preserve-unknown-fields: true
type: array
image:
description: 'Container image for the backup job (default: osodevops/kafka-backup:v0.15.5)'
description: 'Container image for the backup job (default: osodevops/kafka-backup:v0.15.6)'
nullable: true
type: string
logging:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/kafkarestores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ spec:
x-kubernetes-preserve-unknown-fields: true
type: array
image:
description: 'Container image for the restore job (default: osodevops/kafka-backup:v0.15.5)'
description: 'Container image for the restore job (default: osodevops/kafka-backup:v0.15.6)'
nullable: true
type: string
logging:
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/strimzi-backup-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: strimzi-backup-operator
description: Kubernetes operator for Kafka backup and restore, integrated with Strimzi
type: application
version: 0.2.4
appVersion: "0.2.4"
version: 0.2.5
appVersion: "0.2.5"
home: https://github.com/osodevops/strimzi-backup-operator
sources:
- https://github.com/osodevops/strimzi-backup-operator
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/strimzi-backup-operator/crds/kafkabackups.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ spec:
x-kubernetes-preserve-unknown-fields: true
type: array
image:
description: 'Container image for the backup job (default: osodevops/kafka-backup:v0.15.5)'
description: 'Container image for the backup job (default: osodevops/kafka-backup:v0.15.6)'
nullable: true
type: string
logging:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ spec:
x-kubernetes-preserve-unknown-fields: true
type: array
image:
description: 'Container image for the restore job (default: osodevops/kafka-backup:v0.15.5)'
description: 'Container image for the restore job (default: osodevops/kafka-backup:v0.15.6)'
nullable: true
type: string
logging:
Expand Down
2 changes: 1 addition & 1 deletion src/crd/kafka_backup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub struct KafkaBackupSpec {
#[serde(skip_serializing_if = "Option::is_none")]
pub template: Option<PodTemplateSpec>,

/// Container image for the backup job (default: osodevops/kafka-backup:v0.15.5)
/// Container image for the backup job (default: osodevops/kafka-backup:v0.15.6)
#[serde(skip_serializing_if = "Option::is_none")]
pub image: Option<String>,
}
Expand Down
2 changes: 1 addition & 1 deletion src/crd/kafka_restore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub struct KafkaRestoreSpec {
#[serde(skip_serializing_if = "Option::is_none")]
pub template: Option<PodTemplateSpec>,

/// Container image for the restore job (default: osodevops/kafka-backup:v0.15.5)
/// Container image for the restore job (default: osodevops/kafka-backup:v0.15.6)
#[serde(skip_serializing_if = "Option::is_none")]
pub image: Option<String>,
}
Expand Down
2 changes: 1 addition & 1 deletion src/reconcilers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub const TRIGGER_VALUE_NOW: &str = "now";
/// Default backup image. Pinned to a public, current kafka-backup release so
/// backup/restore job behavior is deterministic and the image is anonymously
/// pullable by Kubernetes.
pub const DEFAULT_BACKUP_IMAGE: &str = "osodevops/kafka-backup:v0.15.5";
pub const DEFAULT_BACKUP_IMAGE: &str = "osodevops/kafka-backup:v0.15.6";

/// Environment variable used by the Helm chart to pass the service account that
/// backup/restore job pods should run as.
Expand Down
Loading