diff --git a/modules/migration-about-configuring-proxies.adoc b/modules/migration-about-configuring-proxies.adoc index 2607e0d29cf7..10c2bf0d3b5b 100644 --- a/modules/migration-about-configuring-proxies.adoc +++ b/modules/migration-about-configuring-proxies.adoc @@ -131,3 +131,34 @@ spec: cidrSelector: type: Deny ---- + +[id="configuring-supplemental-groups-for-rsync-pods{context}"] +=== Configuring supplemental groups for Rsync pods +When your PVCs use a shared storage, you can configure the access to that storage by adding supplemental groups to Rsync pod definitions in order for the pods to allow access: + +.Supplementary groups for Rsync pods +[option="header"] +|=== +|Variable|Type|Default|Description + +|`src_supplemental_groups` +|string +|Not set +|Comma-separated list of supplemental groups for source Rsync pods + +|`target_supplemental_groups` +|string +|Not set +|Comma-separated list of supplemental groups for target Rsync pods +|=== + +.Example usage + +The `MigrationController` CR can be updated to set values for these supplemental groups: + +[source, yaml] +---- +spec: + src_supplemental_groups: "1000,2000" + target_supplemental_groups: "2000,3000" +----