Tenants are the highest level of isolation in Pangolin. Data, users, and configuration do not leak between tenants.
View all existing tenants. (Root Admin only)
Syntax:
pangolin-admin list-tenantsInitialize a new tenant environment. (Root Admin only)
Syntax (Interactive):
create-tenant --name <name> --admin-username <username> --admin-password <password>Syntax (Non-Interactive):
pangolin-admin create-tenant --name <name> --admin-username <username> --admin-password <password>Example:
pangolin-admin create-tenant --name acme_corp --admin-username admin --admin-password "p@ssword123"Modify properties of an existing tenant. (Root Admin only)
Syntax:
pangolin-admin update-tenant --id <uuid> [--name <new_name>]Example:
pangolin-admin update-tenant --id 123e4567-e89b-12d3 --name acme_holdingsPermanently remove a tenant and all associated data. Irreversible. (Root Admin only)
Syntax:
pangolin-admin delete-tenant <id>Example:
pangolin-admin delete-tenant 123e4567-e89b-12d3