From cc45e1ee09ccf6a99904b2b224c49553fc085e5b Mon Sep 17 00:00:00 2001 From: RichardHoch Date: Wed, 15 Jun 2022 15:03:18 +0300 Subject: [PATCH] MIG-1142: Add DVM supplemental group configuration to downstream documentation --- .../migration-about-configuring-proxies.adoc | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) 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" +----