push-release.sh 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/bin/bash
  2. # This script pushes all of the built images to a registry.
  3. #
  4. # Set OS_PUSH_BASE_REGISTRY to prefix the destination images
  5. #
  6. set -o errexit
  7. set -o nounset
  8. set -o pipefail
  9. STARTTIME=$(date +%s)
  10. OS_ROOT=$(dirname "${BASH_SOURCE}")/..
  11. PREFIX="${PREFIX:-openshift/openshift-ansible}"
  12. # Go to the top of the tree.
  13. cd "${OS_ROOT}"
  14. # Allow a release to be repushed with a tag
  15. tag="${OS_PUSH_TAG:-}"
  16. if [[ -n "${tag}" ]]; then
  17. tag=":${tag}"
  18. else
  19. tag=":latest"
  20. fi
  21. # Source tag
  22. source_tag="${OS_TAG:-}"
  23. if [[ -z "${source_tag}" ]]; then
  24. source_tag="latest"
  25. fi
  26. images=(
  27. ${PREFIX}
  28. )
  29. PUSH_OPTS=""
  30. if docker push --help | grep -q force; then
  31. PUSH_OPTS="--force"
  32. fi
  33. if [[ "${OS_PUSH_BASE_REGISTRY-}" != "" || "${tag}" != "" ]]; then
  34. set -e
  35. for image in "${images[@]}"; do
  36. docker tag "${image}:${source_tag}" "${OS_PUSH_BASE_REGISTRY-}${image}${tag}"
  37. done
  38. set +e
  39. fi
  40. for image in "${images[@]}"; do
  41. docker push ${PUSH_OPTS} "${OS_PUSH_BASE_REGISTRY-}${image}${tag}"
  42. done
  43. ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"