From b4c2a7507ced4c47732a20b819d2e34bf4ca129c Mon Sep 17 00:00:00 2001 From: Russell Teague Date: Fri, 7 Apr 2017 16:16:14 -0400 Subject: Refactor docker upgrade playbooks The playbooks were crossing byo/common boundaries for task includes. This moves all 'common' files/tasks into the 'common' folder. --- .../upgrades/files/nuke_images.sh | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 playbooks/common/openshift-cluster/upgrades/files/nuke_images.sh (limited to 'playbooks/common/openshift-cluster/upgrades/files') diff --git a/playbooks/common/openshift-cluster/upgrades/files/nuke_images.sh b/playbooks/common/openshift-cluster/upgrades/files/nuke_images.sh deleted file mode 100644 index 8635eab0d..000000000 --- a/playbooks/common/openshift-cluster/upgrades/files/nuke_images.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -# Stop any running containers -running_container_ids=`docker ps -q` -if test -n "$running_container_ids" -then - docker stop $running_container_ids -fi - -# Delete all containers -container_ids=`docker ps -a -q` -if test -n "$container_ids" -then - docker rm -f -v $container_ids -fi - -# Delete all images (forcefully) -image_ids=`docker images -aq` -if test -n "$image_ids" -then - # Some layers are deleted recursively and are no longer present - # when docker goes to remove them: - docker rmi -f `docker images -aq` || true -fi - -- cgit v1.2.1