1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/modules/pruning-groups.adoc
2022-02-21 14:50:06 +00:00

59 lines
1.3 KiB
Plaintext

// Module included in the following assemblies:
//
// * applications/pruning-objects.adoc
:_content-type: PROCEDURE
[id="pruning-groups_{context}"]
= Pruning groups
To prune groups records from an external provider, administrators can run the
following command:
[source,terminal]
----
$ oc adm prune groups \
--sync-config=path/to/sync/config [<options>]
----
.`oc adm prune groups` flags
[cols="4,8",options="header"]
|===
|Options |Description
.^|`--confirm`
|Indicate that pruning should occur, instead of performing a dry-run.
.^|`--blacklist`
|Path to the group blacklist file.
.^|`--whitelist`
|Path to the group whitelist file.
.^|`--sync-config`
|Path to the synchronization configuration file.
|===
.Procedure
. To see the groups that the prune command deletes, run the following command:
+
[source,terminal]
----
$ oc adm prune groups --sync-config=ldap-sync-config.yaml
----
. To perform the prune operation, add the `--confirm` flag:
+
[source,terminal]
----
$ oc adm prune groups --sync-config=ldap-sync-config.yaml --confirm
----
////
Needs "Additional resources" links when converted:
//Future xref:../install_config/syncing_groups_with_ldap.adoc#configuring-ldap-sync[Configuring LDAP Sync]
//Future xref:../install_config/syncing_groups_with_ldap.adoc#overview[Syncing Groups With LDAP]
////