Skip to content

Commit 7fde5b3

Browse files
committed
Fix remaining "patch" mentions
1 parent c573b7a commit 7fde5b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/stackable-operator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Support `objectOverrides`, which are a list of generic Kubernetes objects, which are merged onto the objects that the operator creates.
10-
Alongside, a `patchinator` module was added, which takes a Kubernetes object and a list of patches and applies them to the object ([#1118]).
10+
Alongside, a `deep_merger` module was added, which takes a Kubernetes object and a list of depp merged and applies them to the object ([#1118]).
1111

1212
### Changed
1313

crates/stackable-operator/src/cluster_resources.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ impl ClusterResource for Deployment {
337337
/// use serde::{Deserialize, Serialize};
338338
/// use stackable_operator::client::Client;
339339
/// use stackable_operator::cluster_resources::{self, ClusterResourceApplyStrategy, ClusterResources};
340-
/// use stackable_operator::patchinator::ObjectOverrides;
340+
/// use stackable_operator::deep_merger::ObjectOverrides;
341341
/// use stackable_operator::product_config_utils::ValidatedRoleConfigByPropertyKind;
342342
/// use stackable_operator::role_utils::Role;
343343
/// use std::sync::Arc;
@@ -380,7 +380,7 @@ impl ClusterResource for Deployment {
380380
/// CONTROLLER_NAME,
381381
/// &app.object_ref(&()),
382382
/// ClusterResourceApplyStrategy::Default,
383-
/// &app.spec.object_overrides,
383+
/// app.spec.object_overrides.clone(),
384384
/// )
385385
/// .map_err(|source| Error::CreateClusterResources { source })?;
386386
///

0 commit comments

Comments
 (0)