Create a storage pool

This page provides instructions for creating a storage pool.

Before you begin

Consider the following requirements before you create a storage pool:

  • You must complete the following steps before you can create a storage pool:

    1. Select or create a project in Google Cloud and enable billing.

    2. Enable private services access for the VPC you intend to use. You can also enable private services access as part of the storage pool creation if you are using the Google Cloud console.

    3. If you want to use customer-managed encryption keys (CMEK), create a CMEK policy first.

    4. If you want to use Active Directory, create an Active Directory policy first.

  • You can only assign a CMEK policy during storage pool creation.

  • You can only change the description, capacity, and labels after creation.

  • Standard service level storage pool features vary by location. Depending on the location you create your storage pool in, you might have access to fewer features.

  • Once an Active Directory policy is attached to a storage pool, it cannot be detached.

  • Storage pool capacity is subject to a location-based quota. If you need more capacity, request a quota increase for the Storage pool capacity (GiB) per location quota. For more information, see NetApp Volumes quotas.

Create a storage pool

Use the following instructions to create a storage pool using the Google Cloud console or Google Cloud CLI.

Console

  1. Go to the NetApp Volumes page in the Google Cloud console.

    Go to NetApp Volumes

  2. Click Storage pools.

  3. Click Create.

  4. Under Storage pool details, complete the following actions:

    1. Enter a name for the pool in the Name field. The name must be unique for each project.

    2. Optional: Enter a description for the pool in the Description field.

  5. Select a location for the pool.

  6. Select a service level:

    • Standard

    • Premium

    • Extreme

  7. Enter the pool capacity.

  8. Under Set up connections, select the VPC you want to use. If you haven't peered your VPC, click Set up connection and complete the following steps:

    1. Enable the Service networking API.

    2. Click Use an automatically allocated IP range or to choose a CIDR manually, click Select one or more existing IP ranges or create a new one.

    3. Review your selections.

    4. Click Create connection.

      After peering is complete, a notification appears that indicates VPC peering is successful.

  9. Under Active Directory policy, complete the following steps:

    1. Select the Assign an Active Directory policy to the storage pool checkbox to provision a storage pool for volumes that use LDAP, Kerberos, or any SMB protocol variations.

    2. Select a policy from the Active Directory policy list.

  10. If you plan to use NFS protocol combinations, select the Enable LDAP checkbox. When you select this option, you can only create LDAP-enabled NFS volumes in the pool. You need to configure Active Directory LDAP to provide UNIX user information. If you want to create NFSv3 or NFSv4 volumes that use regular AUTH_SYS authentication, don't select the Enable LDAP checkbox.

  11. Under Encryption, complete the following steps:

    1. Select Google-managed encryption key or Customer-managed encryption key (CMEK).

    2. If you select Customer-managed encryption key (CMEK), select a CMEK policy.

  12. Optional: under the Labels section, click Add label to enter relevant labels for reporting and querying purposes.

  13. Click Create.

gcloud

Create a storage pool:

    gcloud netapp storage-pools create POOL_NAME \
       --project=PROJECT_ID \
       --location=LOCATION \
       --capacity=CAPACITY \
       --service-level=SERVICE_LEVEL \
       --network=name=NETWORK_NAME,psa-range=PSA_RANGE

Replace the following information:

  • POOL_NAME: the name of the pool you want to create. Your pool name must be unique per location.

  • PROJECT_ID: the name of the project you want to create the storage pool in.

  • LOCATION: the location of the pool you want to create.

  • CAPACITY: the initial size of the pool in GiB. The minimum size is 2048 GiB. For the Standard service level, the minimum size is 1 TiB depending on the region or location you choose.

  • SERVICE_LEVEL: the service level for your storage pool: Standard, Premium, or Extreme.

  • NETWORK: the VPC for your pool.

  • NAME: the name of the VPC.

  • PSA_RANGE: the name of the allocated range of the Private Services Access connection.

    For more information on additional optional flags, see Google Cloud SDK documentation on volume creation.

What's next

Edit or delete a storage pool.