run_setup.sh 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #!/bin/bash
  2. # Title: run_setup.sh
  3. # Description: Installation script for Packstack on CentOS 7 - OpenStack Ocata release
  4. # Author: jodlajodla
  5. # Date: 20170221
  6. # Version: 0.1
  7. # Usage: bash run_setup.sh OR bash run_setup.sh ironic
  8. # Notes: Script is intended to install either default Packstack components or Packstack with Ironic
  9. # Initial script variables
  10. if [ $(id -u) != 0 ]; then
  11. SUDO='sudo -E'
  12. fi
  13. DEFAULT_EXTNET='physnet1'
  14. INCLUDE_IRONIC=$([[ "$1" == 'ironic' ]]; echo $?)
  15. BRIDGE_INTERFACE="$2"
  16. EXTERNAL_NETWORK="$([[ -z "$3" ]] && echo $DEFAULT_EXTNET || echo $3)"
  17. # Script functions
  18. function change_puppetfile {
  19. if [ -z $1 ]; then
  20. # Change before install
  21. mv Puppetfile Puppetfile.default
  22. mv Puppetfile.ironic Puppetfile
  23. else
  24. # Change after install
  25. mv Puppetfile Puppetfile.ironic
  26. mv Puppetfile.default Puppetfile
  27. fi
  28. }
  29. # Disable firewalld and NetworkManager
  30. $SUDO systemctl disable firewalld
  31. $SUDO systemctl stop firewalld
  32. $SUDO systemctl disable NetworkManager
  33. $SUDO systemctl stop NetworkManager
  34. $SUDO systemctl enable network
  35. $SUDO systemctl start network
  36. # Install Packstack packages
  37. $SUDO yum install -y centos-release-openstack-ocata
  38. $SUDO yum update -y
  39. $SUDO yum install -y openstack-packstack
  40. # Check which type of installation was chosen and do workaround with Puppetfile in case of Ironic
  41. if [ $INCLUDE_IRONIC -eq 0 ]; then
  42. change_puppetfile
  43. fi
  44. # Install gem and Puppet modules
  45. $SUDO yum install -y gem
  46. export GEM_HOME=/tmp/gem_packstack
  47. gem install r10k
  48. $SUDO "$GEM_HOME/bin/r10k" puppet install -v
  49. $SUDO cp -r packstack/puppet/modules/packstack /usr/share/openstack-puppet/modules
  50. # Check which type of installation was chosen and do workaround with Puppetfile in case of Ironic
  51. if [ $INCLUDE_IRONIC -eq 0 ]; then
  52. # Install ironic-ui component for Horizon
  53. $SUDO yum install -y openstack-ironic-ui
  54. if [ ! -z "$BRIDGE_INTERFACE" ]; then
  55. # Install Packstack & Ironic with bridged interface
  56. $SUDO packstack --os-ironic-install=y --nagios-install=n --provision-demo=n --os-neutron-ovs-bridge-mappings="$EXTERNAL_NETWORK":br-ex --os-neutron-ovs-bridge-interfaces=br-ex:"$BRIDGE_INTERFACE" --allinone
  57. # Wait a bit and restart network to get connection back if bridging settings stopped interfaces
  58. sleep 30
  59. $SUDO systemctl restart network
  60. else
  61. # Install only Packstack & Ironic with existing network configuration
  62. $SUDO packstack --os-ironic-install=y --nagios-install=n --provision-demo=n --allinone
  63. fi
  64. change_puppetfile 1
  65. else
  66. $SUDO packstack --nagios-install=n --provision-demo=n --allinone
  67. fi
  68. exit 0