deployment: Remove image pull print statements in enterprise-ha installation scripts

pull/809/head
cruizba 2023-05-29 16:56:33 +02:00
parent c1f3b22bc9
commit 4f13e5181b
2 changed files with 0 additions and 2 deletions

View File

@ -23,7 +23,6 @@ pull_images() {
pushd "${OV_DIRECTORY}" > /dev/null || fatal_error "Error: can not access to '${OV_DIRECTORY}' folder"
ALL_IMAGES=$(grep -h 'image:' docker-compose.yml docker-compose.override.yml | awk '{print $2}')
for IMAGE in ${ALL_IMAGES}; do
printf "\n => Pulling image '%s'..." "${IMAGE}"
docker pull "${IMAGE}" || fatal_error "Error while pulling image '${IMAGE}'"
done
popd > /dev/null || fatal_error "Error: can not access to previous folder"

View File

@ -36,7 +36,6 @@ pull_images() {
done
DEPLOYMENT_IMAGES=$(grep 'image:' docker-compose.yml | awk '{print $2}')
for IMAGE in ${DEPLOYMENT_IMAGES}; do
printf "\n => Pulling image '%s'..." "${IMAGE}"
docker pull "${IMAGE}" || fatal_error "Error while pulling image '${IMAGE}'"
done
popd > /dev/null || fatal_error "Error: can not access to previous directory"