cluster.sh 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #!/bin/bash -eu
  2. NODES=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. # Use OO_MASTER_PLAYBOOK/OO_NODE_PLAYBOOK environment variables for playbooks if defined,
  12. # otherwise use openshift default values.
  13. MASTER_PLAYBOOK=${OO_MASTER_PLAYBOOK:-'openshift-master'}
  14. NODE_PLAYBOOK=${OO_NODE_PLAYBOOK:-'openshift-node'}
  15. # @formatter:off
  16. function usage {
  17. cat 1>&2 <<-EOT
  18. ${0} : [create|terminate|update|list] { ${UPPER_CASE_PROVIDER} environment tag}
  19. Supported environment tags:
  20. $(grep --no-messages 'SUPPORTED_ENVS.*=' ./lib/${PROVIDER}_command.rb)
  21. $([ $? -ne 0 ] && echo "No supported environment tags found for ${PROVIDER}")
  22. Optional arguments for create:
  23. [-p|--provider, -m|--masters, -n|--nodes, --master-playbook, --node-playbook]
  24. Optional arguments for terminate|update:
  25. [-p|--provider, --master-playbook, --node-playbook]
  26. EOT
  27. }
  28. # @formatter:on
  29. function create_cluster {
  30. ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MASTER_PLAYBOOK -c $MASTERS
  31. ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$NODE_PLAYBOOK -c $NODES
  32. update_cluster
  33. echo -e "\nCreated ${MASTERS}/${MASTER_PLAYBOOK} masters and ${NODES}/${NODE_PLAYBOOK} nodes using ${PROVIDER} provider\n"
  34. }
  35. function update_cluster {
  36. ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MASTER_PLAYBOOK
  37. ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$NODE_PLAYBOOK
  38. }
  39. function terminate_cluster {
  40. ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=$MASTER_PLAYBOOK
  41. ./cloud.rb "${PROVIDER}" terminate -e "${ENV}" --type=$NODE_PLAYBOOK
  42. }
  43. [ -f ./cloud.rb ] || (echo 1>&2 'Cannot find ./cloud.rb' && exit 1)
  44. function check_argval {
  45. if [[ $1 == -* ]]; then
  46. echo "Invalid value: '$1'"
  47. usage
  48. exit 1
  49. fi
  50. }
  51. # Using GNU getopt to support both small and long formats
  52. OPTIONS=`getopt -o p:m:n:h --long provider:,masters:,nodes:,master-playbook:,node-playbook:,help \
  53. -n "$0" -- "$@"`
  54. eval set -- "$OPTIONS"
  55. while true; do
  56. case "$1" in
  57. -h|--help) (usage; exit 1) ; shift ;;
  58. -p|--provider) PROVIDER="$2" ; check_argval $2 ; shift 2 ;;
  59. -m|--masters) MASTERS="$2" ; check_argval $2 ; shift 2 ;;
  60. -n|--nodes) NODES="$2" ; check_argval $2 ; shift 2 ;;
  61. --master-playbook) MASTER_PLAYBOOK="$2" ; check_argval $2 ; shift 2 ;;
  62. --node-playbook) NODE_PLAYBOOK="$2" ; check_argval $2 ; shift 2 ;;
  63. --) shift ; break ;;
  64. *) break ;;
  65. esac
  66. done
  67. shift $((OPTIND-1))
  68. [ -z "${1:-}" ] && (usage; exit 1)
  69. case "${1}" in
  70. 'create')
  71. [ -z "${2:-}" ] && (usage; exit 1)
  72. ENV="${2}"
  73. create_cluster ;;
  74. 'update')
  75. [ -z "${2:-}" ] && (usage; exit 1)
  76. ENV="${2}"
  77. update_cluster ;;
  78. 'terminate')
  79. [ -z "${2:-}" ] && (usage; exit 1)
  80. ENV="${2}"
  81. terminate_cluster ;;
  82. 'list') ./cloud.rb "${PROVIDER}" list ;;
  83. 'help') usage; exit 0 ;;
  84. *)
  85. echo -n 1>&2 "${1} is not a supported operation";
  86. usage;
  87. exit 1 ;;
  88. esac
  89. exit 0