File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
crates/stackable-operator/src/commons Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,14 @@ pub enum Error {
28
28
}
29
29
30
30
/// Build RBAC objects for the product workloads.
31
- /// The names of the service account and role binding match the following templates :
31
+ /// The names of the service account and role binding match the following patterns :
32
32
/// - `{resource_name}-serviceaccount`
33
33
/// - `{resource_name}-rolebinding`
34
34
///
35
+ /// A previous version of this function used the `product_name` instead of the `resource_name`,
36
+ /// but this caused conflicts when deploying multiple instances of a product in the same namespace.
37
+ /// See <https://stackable.atlassian.net/browse/SUP-148> for more details.
38
+ ///
35
39
/// The service account is bound to a cluster role named `{product_name}-clusterrole` which
36
40
/// must already exist.
37
41
pub fn build_rbac_resources < T : Clone + Resource < DynamicType = ( ) > > (
You can’t perform that action at this time.
0 commit comments