# How To Increase Docker Image Storage Pool Size

## Problem

How To Increase Docker Image Storage Pool Size

## Environment

* Platform9 Managed Kubernetes - All Versions
* Docker

## Procedure.

1. <https://platform9.zendesk.com/agent/tickets/1352138>

{% tabs %}
{% tab title="None" %}

```none
export OS_AUTH_URL=https://[DU]/keystone/v3export OS_REGION_NAME="[REGION]"export OS_PROJECT_NAME="[PROJECT]"export OS_PROJECT_DOMAIN_NAME="default"export OS_USERNAME="[USER]"export OS_PASSWORD="[PASSWORD]"read -p "Please enter MFA Token: " OS_TOTP_PASSCODEexport OS_TOTP_PASSCODE=$OS_TOTP_PASSCODEexport OS_TOKEN=$(curl -s -i -H "Content-Type: application/json" -d '{"auth":{"identity":{"methods":["password","totp"],"password":{"user":{"name":"'"$OS_USERNAME"'","domain":{"id":"default"},"password":"'"$OS_PASSWORD"'"}},"totp":{"user":{"name":"'"$OS_USERNAME"'","domain":{"id":"default"},"passcode":"'"$OS_TOTP_PASSCODE"'"}}},"scope":{"project":{"name":"'"$OS_PROJECT_NAME"'","domain":{"id":"default"}}}}}' -X POST $OS_AUTH_URL/auth/tokens | awk '/X-Subject-Token:/{printf $2}' | tr -dc '[:print:]')export OS_AUTH_TYPE="v3token"
```

{% endtab %}
{% endtabs %}

2. You can run the curl command using the OS\_TOKEN variable to download the Kube config file.

{% tabs %}
{% tab title="None" %}

```none
$ curl -sH "X-Auth-Token: $OS_TOKEN" https://[DU]/qbert/v3/[PROJECT_UUID]/kubeconfig/[CLUSTER_UID]
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://platform9.com/kb/pmk/how-to/how-to-increase-docker-storage-pool-size.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
