Delete Helm Chart
Delete Helm Chart
Control panel
Docker CLI
- In control panel go to Cloud platform → Container Registry.
- In the line with the repository where the Helm chart is stored, click .
-
Get a list of Docker images:
docker image list
Result:
+----------------------------------+--------+----------------+-----------------+-------------+
| REPOSITORY | TAG |IMAGE ID |CREATED | SIZE |
+----------------------------------+--------+----------------+-----------------+-------------+
| stage.cr.selcloud.org/test/nginx | 9 | 77af4d6b9913 | 6 days ago | 824.5 MB |
| cr.selcloud.ru/test/nginx | latest | 78a85c484f71 | 19 hours ago | 656.2 MB |
| nginx | 9.3 | 5ed6274db6ce | 3 months ago | 218.5 MB |
| cr.selcloud.ru/test/busybox | 9.3.5 | 92d3114nv8op | 5 months ago | 1.089 GB |
+----------------------------------+--------+----------------+-----------------+-------------+ -
Find the repository where the Helm chart is stored and copy it
IMAGE ID
. -
Delete the repository:
docker image rm <image_id>
Specify
<image_id>
— the name of the Docker image.