Group Management
Once users have been added into your Fuzzball deployment under an organization as described in the Adding Users to Organizations section, you can begin controlling their access to resources such as storage volumes, group secrets, and compute resource definitions through the groups entity. This section will walk through various Fuzzball group subcommands which can be used to manipulate Fuzzball groups within an organization.
You can list members of a group using the fuzzball group member list command.
The --owner flag controls filtering by member role:
# List all members (owners and non-owners)
$ fuzzball group member list <group-name>
# List only owners
$ fuzzball group member list <group-name> --owner
# List only non-owners
$ fuzzball group member list <group-name> --owner=falseDefault behavior: When no flag is provided, the command lists all members (both owners and non-owners).
The --relationship flag is deprecated in favor of --owner. If you have scripts using the old flag, update them to use the new syntax:
| Old syntax | New syntax |
|---|---|
--relationship=all | (omit flag) |
--relationship=owner | --owner |
--relationship=member | --owner=false |
The--relationshipflag will be removed in a future release. Update your scripts to use--owner.