Skip to content

Commit 8f89589

Browse files
committed
Add image clean step to workaround storage capacity issue
1 parent df66542 commit 8f89589

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

web-apps/kind-images.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ for image in $(find_images .); do
1717
docker pull $full_name:$REMOTE_TAG
1818
docker image tag $full_name:$REMOTE_TAG $full_name:$KIND_TAG
1919
kind load docker-image -n $CLUSTER_NAME $full_name:$KIND_TAG
20+
# Clean up images to save on disk space
21+
docker image rm $(docker image ls $full_name -q)
2022
done

0 commit comments

Comments
 (0)