You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: Support `objectOverrides`
* refactor: Switch to a lis of objects (as opposed to a big string field)
* changelog
* Add TODO for docs
* Add a test for Listener merging
* Fix doctests
* Improve CRD docs
* Remove unused error variant
* Add to DummyCluster
* Improve CRD docs
* Link to concepts page
* Derive PartialEq again
* Move import
* Take owned value
* Update crates/stackable-operator/src/cluster_resources.rs
Co-authored-by: Techassi <git@techassi.dev>
* PartialEq again
* Improve changelog
* Add a comment in DeepMerge impl
* Add some rustdocs
* patchinator -> deep_merger
* Fix remaining "patch" mentions
* Fixup accidential change
* Rename patch -> merge
* Use indoc for tests
* refactor: Move stuff into ObjectOverrides::apply_to
* refactor: Switch ObjectOverrides to unit struct
* fix tests
* Update crates/stackable-operator/CHANGELOG.md
* Merge the merge into the onto
---------
Co-authored-by: Techassi <git@techassi.dev>
Copy file name to clipboardExpand all lines: crates/stackable-operator/CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [Unreleased]
6
6
7
+
### Added
8
+
9
+
- Support `objectOverrides`, a list of generic Kubernetes objects, which are merged into the objects created by the operator.
10
+
Alongside, a `deep_merger` module was added, which takes a Kubernetes object and a list of overrides and merges them into the provided object ([#1118]).
11
+
12
+
### Changed
13
+
14
+
- BREAKING: `ClusterResources` now requires the objects added to implement `DeepMerge`.
15
+
This is very likely a stackable-operator internal change, but technically breaking ([#1118]).
16
+
17
+
### Removed
18
+
19
+
- BREAKING: `ClusterResources` no longer derives `Eq` ([#1118]).
0 commit comments