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
Copy file name to clipboardExpand all lines: crates/stackable-operator/CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,17 @@ All notable changes to this project will be documented in this file.
13
13
### Changed
14
14
15
15
- BREAKING: Split `ListenerClass.spec.preferred_address_type` into a new `PreferredAddressType` type. Use `resolve_preferred_address_type()` to access the `AddressType` as before. ([#903])
16
+
- BREAKING: Changed visibility of `commons::rbac::service_account_name` and `commons::rbac::role_binding_name` to
17
+
private, as these functions should not be called directly by the operators. This is likely to result in naming conflicts
18
+
as the result is completely dependent on what is passed to this function. Operators should instead rely on the roleBinding
19
+
and serviceAccount objects created by `commons::rbac::build_rbac_resources` and retrieve the name from the returned
20
+
objects if they need it. ([#909])
21
+
- Changed the names of the objects that are returned from `commons::rbac::build_rbac_resources` to not rely solely on the product
22
+
they refer to (e.g. "nifi-rolebinding") but instead include the name of the resource to be unique per cluster
0 commit comments