How to Manage the Container Registry Plan

Updated on November 27, 2024

Managing Your Vultr Container Registry Plan enhances your storage capacity, access controls, and performance. By moving to a Premium, Business, or Enterprise plan, you can better meet your growing needs and take advantage of advanced features and improved capabilities. This upgrade ensures that your container registry can scale effectively with your requirements.

Follow this guide to managing your Vultr Container Registry plan on your Vultr account using the Vultr Customer Portal, API, or CLI.

  • Vultr Customer Portal
  • Vultr API
  • Vultr CLI
  1. Navigate to Products and click Container Registry.

    Container Registry in the products menu

  2. Click your target registry to open its management page.

    Selection of a target container registry

  3. Click Settings to open its settings page.

    Button to open the container registry settings page

  4. Select a plan in the Upgrade Plan section.

    Button to select an upgraded plan

  5. Click Update to apply the change.

    Button to update the registry plan

  1. Send a GET request to the List Registry Plans endpoint to list all available plans.

    console
    $ curl "https://api.vultr.com/v2/registry/plan/list" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  2. Send a GET request to the List Registries endpoint and note the target registry's ID.

    console
    $ curl "https://api.vultr.com/v2/registries" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  3. Send a POST request to the Update Registry endpoint to upgrade the target registry plan.

    console
    $ curl "https://api.vultr.com/v2/registry/<registry-id>" \
        -X PUT \
        -H "Authorization: Bearer ${VULTR_API_KEY}" \
        -H "Content-Type: application/json" \
            --data '{
            "plan" : "premium"
            }'
    
  1. List all the available plans.

    console
    $ vultr-cli container-registry plans
    
  2. List all registries available in your Vultr account and note the target registry's ID.

    console
    $ vultr-cli container-registry list
    
  3. Upgrade the plan of your target registry.

    console
    $ vultr-cli container-registry update <registry-id> --plan premium