build-images.sh 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #!/bin/bash
  2. # This is intended to run either locally (in which case a push is not
  3. # necessary) or in a CI job (where the results should be pushed to a
  4. # registry for use in later CI test jobs). Images are tagged locally with
  5. # both the base name (e.g. "test-target-base") and with the prefix given;
  6. # then only the prefixed name is pushed if --push is specified, assuming
  7. # any necessary credentials are available for the push. The same prefix
  8. # can then be used for the testing script. By default a local (non-registry)
  9. # prefix is used and no push can occur. To push to e.g. dockerhub:
  10. #
  11. # ./build-images.sh --push --prefix=docker.io/openshift/ansible-integration-
  12. set -o errexit
  13. set -o nounset
  14. set -o pipefail
  15. STARTTIME=$(date +%s)
  16. source_root=$(dirname "${0}")
  17. prefix="${PREFIX:-openshift-ansible-integration-}"
  18. push=false
  19. verbose=false
  20. build_options="${DOCKER_BUILD_OPTIONS:-}"
  21. help=false
  22. for args in "$@"
  23. do
  24. case $args in
  25. --prefix=*)
  26. prefix="${args#*=}"
  27. ;;
  28. --push)
  29. push=true
  30. ;;
  31. --no-cache)
  32. build_options="${build_options} --no-cache"
  33. ;;
  34. --verbose)
  35. verbose=true
  36. ;;
  37. --help)
  38. help=true
  39. ;;
  40. esac
  41. done
  42. if [ "$help" = true ]; then
  43. echo "Builds the docker images for openshift-ansible integration tests"
  44. echo "and pushes them to a central registry."
  45. echo
  46. echo "Options: "
  47. echo " --prefix=PREFIX"
  48. echo " The prefix to use for the image names."
  49. echo " default: openshift-ansible-integration-"
  50. echo
  51. echo " --push"
  52. echo " If set will push the tagged image"
  53. echo
  54. echo " --no-cache"
  55. echo " If set will perform the build without a cache."
  56. echo
  57. echo " --verbose"
  58. echo " Enables printing of the commands as they run."
  59. echo
  60. echo " --help"
  61. echo " Prints this help message"
  62. echo
  63. exit 0
  64. fi
  65. if [ "$verbose" = true ]; then
  66. set -x
  67. fi
  68. declare -a build_order ; declare -A images
  69. build_order+=( test-target-base ) ; images[test-target-base]=openshift_health_checker/builds/test-target-base
  70. build_order+=( preflight-aos-package-checks ); images[preflight-aos-package-checks]=openshift_health_checker/builds/aos-package-checks
  71. for image in "${build_order[@]}"; do
  72. BUILD_STARTTIME=$(date +%s)
  73. docker_tag=${prefix}${image}
  74. echo
  75. echo "--- Building component '$image' with docker tag '$docker_tag' ---"
  76. docker build ${build_options} -t $image -t $docker_tag "$source_root/${images[$image]}"
  77. echo
  78. BUILD_ENDTIME=$(date +%s); echo "--- build $docker_tag took $(($BUILD_ENDTIME - $BUILD_STARTTIME)) seconds ---"
  79. if [ "$push" = true ]; then
  80. docker push $docker_tag
  81. PUSH_ENDTIME=$(date +%s); echo "--- push $docker_tag took $(($PUSH_ENDTIME - $BUILD_ENDTIME)) seconds ---"
  82. fi
  83. done
  84. echo
  85. echo
  86. echo "++ Active images"
  87. docker images | grep ${prefix} | sort
  88. echo
  89. ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"