# metalcloud-cli resource-pool create Create a new resource pool ## Synopsis Create a new resource pool with the specified label and description. This command creates a new resource pool that can be used to group and organize infrastructure resources. After creation, you can assign users, servers, and subnet pools to this resource pool. Required Flags: --label string Label/name for the resource pool (required) --description string Description of the resource pool's purpose (required) Examples: ## Create a production resource pool metalcloud-cli resource-pool create --label "Production Pool" --description "Pool for production workloads" ## Create a development resource pool metalcloud-cli resource-pool create --label "Dev Environment" --description "Development and testing resources" ## Create using aliases metalcloud-cli rp create --label "QA Pool" --description "Quality assurance testing pool" ``` metalcloud-cli resource-pool create [flags] ``` ### Options ``` --description string Resource pool description -h, --help help for create --label string Resource pool label ``` ### Options inherited from parent commands ``` -k, --api_key string MetalCloud API key -c, --config string Config file path -d, --debug Set to enable debug logging -e, --endpoint string MetalCloud API endpoint -f, --format string Output format. Supported values are 'text','csv','md','json','yaml'. (default "text") -i, --insecure_skip_verify Set to allow insecure transport -l, --log_file string Log file path -v, --verbosity string Log level verbosity (default "INFO") ``` ### SEE ALSO * [metalcloud-cli resource-pool](/content/configuration/cli/metalcloud-cli_resource-pool.md) - Manage resource pools and their associated resources #### Auto generated by spf13/cobra on 11-Aug-2025