cluster.sh 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #!/bin/bash -eu
  2. MINIONS=2
  3. MASTERS=1
  4. # If the environment variable OO_PROVDER is defined, it used for the provider
  5. PROVIDER=${OO_PROVIDER:-''}
  6. # Otherwise, default is gce (Google Compute Engine)
  7. if [ "x$PROVIDER" == "x" ];then
  8. PROVIDER=gce
  9. fi
  10. UPPER_CASE_PROVIDER=$(echo $PROVIDER | tr '[:lower:]' '[:upper:]')
  11. # FIXME: Add options
  12. MASTER_PLAYBOOK=openshift-master
  13. MINION_PLAYBOOK=openshift-minion
  14. # @formatter:off
  15. function usage {
  16. cat 1>&2 <<-EOT
  17. ${0} : [create|terminate|update|list] { ${UPPER_CASE_PROVIDER} environment tag}
  18. Supported environment tags:
  19. $(grep 'SUPPORTED_ENVS.*=' ./lib/${PROVIDER}_command.rb)
  20. EOT
  21. }
  22. # @formatter:on
  23. function create_cluster {
  24. ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MASTER_PLAYBOOK -c $MASTERS
  25. ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MINION_PLAYBOOK -c $MINIONS
  26. update_cluster
  27. echo -e "\nCreated ${MASTERS}/${MASTER_PLAYBOOK} masters and ${MINIONS}/${MINION_PLAYBOOK} minions using ${PROVIDER} provider\n"
  28. }
  29. function update_cluster {
  30. ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MASTER_PLAYBOOK
  31. ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MINION_PLAYBOOK
  32. }
  33. function terminate_cluster {
  34. ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=$MASTER_PLAYBOOK
  35. ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=$MINION_PLAYBOOK
  36. }
  37. [ -f ./cloud.rb ] || (echo 1>&2 'Cannot find ./cloud.rb' && exit 1)
  38. while getopts ':p:m:n:' flag; do
  39. case "${flag}" in
  40. p) PROVIDER="${OPTARG}" ;;
  41. m) MASTERS="${OPTARG}" ;;
  42. n) MINIONS="${OPTARG}" ;;
  43. *) echo -e 2>&1 "unsupported option $OPTARG\n"
  44. usage
  45. exit 1 ;;
  46. esac
  47. done
  48. shift $((OPTIND-1))
  49. [ -z "${1:-}" ] && (usage; exit 1)
  50. case "${1}" in
  51. 'create')
  52. [ -z "${2:-}" ] && (usage; exit 1)
  53. ENV="${2}"
  54. create_cluster ;;
  55. 'update')
  56. [ -z "${2:-}" ] && (usage; exit 1)
  57. ENV="${2}"
  58. update_cluster ;;
  59. 'terminate')
  60. [ -z "${2:-}" ] && (usage; exit 1)
  61. ENV="${2}"
  62. terminate_cluster ;;
  63. 'list') ./cloud.rb "${PROVIDER}" list ;;
  64. 'help') usage; exit 0 ;;
  65. *)
  66. echo -n 1>&2 "${1} is not a supported operation";
  67. usage;
  68. exit 1 ;;
  69. esac
  70. exit 0