diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index eabfacae..22d3b2af 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -8,6 +8,13 @@ All notable changes to this project will be documented in this file. - Update `kube` to `1.1.0` ([#1049]). +### Removed + +- BREAKING: Removed `last_update_time` from CRD ClusterCondition status ([#1054]). + +[#1049]: https://github.com/stackabletech/operator-rs/pull/1049 +[#1054]: https://github.com/stackabletech/operator-rs/pull/1054 + ## [0.93.2] - 2025-05-26 ### Added @@ -20,7 +27,6 @@ All notable changes to this project will be documented in this file. [#986]: https://github.com/stackabletech/operator-rs/pull/986 [#1023]: https://github.com/stackabletech/operator-rs/pull/1023 -[#1049]: https://github.com/stackabletech/operator-rs/pull/1049 ## [0.93.1] - 2025-05-20 diff --git a/crates/stackable-operator/crds/DummyCluster.yaml b/crates/stackable-operator/crds/DummyCluster.yaml index d934a542..ac49653c 100644 --- a/crates/stackable-operator/crds/DummyCluster.yaml +++ b/crates/stackable-operator/crds/DummyCluster.yaml @@ -1090,11 +1090,6 @@ spec: format: date-time nullable: true type: string - lastUpdateTime: - description: The last time this condition was updated. - format: date-time - nullable: true - type: string message: description: A human readable message indicating details about the transition. nullable: true diff --git a/crates/stackable-operator/src/status/condition/daemonset.rs b/crates/stackable-operator/src/status/condition/daemonset.rs index 1e08bac7..c7e79bb9 100644 --- a/crates/stackable-operator/src/status/condition/daemonset.rs +++ b/crates/stackable-operator/src/status/condition/daemonset.rs @@ -63,7 +63,6 @@ impl DaemonSetConditionBuilder { status: available, type_: ClusterConditionType::Available, last_transition_time: None, - last_update_time: None, } } diff --git a/crates/stackable-operator/src/status/condition/deployment.rs b/crates/stackable-operator/src/status/condition/deployment.rs index 7b4c1cde..44b67de0 100644 --- a/crates/stackable-operator/src/status/condition/deployment.rs +++ b/crates/stackable-operator/src/status/condition/deployment.rs @@ -64,7 +64,6 @@ impl DeploymentConditionBuilder { status: available, type_: ClusterConditionType::Available, last_transition_time: None, - last_update_time: None, } } diff --git a/crates/stackable-operator/src/status/condition/mod.rs b/crates/stackable-operator/src/status/condition/mod.rs index 379bbf5f..be600a09 100644 --- a/crates/stackable-operator/src/status/condition/mod.rs +++ b/crates/stackable-operator/src/status/condition/mod.rs @@ -93,17 +93,18 @@ pub struct ClusterCondition { #[serde(skip_serializing_if = "Option::is_none")] /// Last time the condition transitioned from one status to another. pub last_transition_time: Option