Fuzzball Documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

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.

Listing Group Members

You can list members of a group using the fuzzball group member list command.

Filtering by Role

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=false
Default behavior: When no flag is provided, the command lists all members (both owners and non-owners).

Deprecated Flag

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 syntaxNew syntax
--relationship=all(omit flag)
--relationship=owner--owner
--relationship=member--owner=false
The --relationship flag will be removed in a future release. Update your scripts to use --owner.