Merge "Change from using chef to local config files"
[integration.git] / bootstrap / vagrant-onap / lib / openstack
1 #!/bin/bash
2
3 source /var/onap/functions
4
5 kolla_config=/etc/kolla
6 kolla_build=$kolla_config/kolla-build.conf
7 kolla_passwords=$kolla_config/passwords.yml
8 kolla_globals=$kolla_config/globals.yml
9 kolla_inventory=/var/onap/files/all-in-one
10
11 # install_dependencies() - Function that installs Kolla-Ansible requirements
12 function install_dependencies {
13     install_docker
14
15     mkdir -p /etc/systemd/system/docker.service.d
16     tee /etc/systemd/system/docker.service.d/kolla.conf <<-'EOF'
17 [Service]
18 MountFlags=shared
19 EOF
20     systemctl daemon-reload
21     systemctl restart docker
22
23     install_python_package ansible docker kolla-ansible python-openstackclient
24 }
25
26 # configure_deploy() - Function that modifies configuration files
27 function configure_deploy {
28     local network_id=$1
29     local enable_opendaylight=${2-False}
30     local openstack_services="main = ceilometer,cinder,glance,heat,horizon,isci,keystone,neutron,nova-,swift"
31     nic=$(ip route get $network_id | awk '{ print $4; exit }')
32     ip_address=$(ip route get $network_id | awk '{ print $6; exit }')
33     internal_vip_address=$(get_next_ip $ip_address)
34
35     if [[ `env | grep -i "proxy"` ]]; then
36         add_no_proxy_value $internal_vip_address
37     fi
38
39     mkdir -p $kolla_config
40     cp /var/onap/files/globals.yml $kolla_globals
41     cp /var/onap/files/passwords.yml $kolla_passwords
42     cp /var/onap/files/kolla-build.conf $kolla_build
43     kolla-genpwd
44     echo "network_interface: \"$nic\"" >> $kolla_globals
45     echo "kolla_internal_vip_address: \"$internal_vip_address\"" >> $kolla_globals
46     echo "api_interface: \"{{ network_interface }}\"" >> $kolla_globals
47     if [[ $enable_opendaylight == True ]]; then
48         echo "enable_opendaylight: \"yes\"" >> $kolla_globals
49         openstack_services+=",opendaylight"
50     fi
51     echo $openstack_services >> $kolla_build
52
53     echo "$ip_address $(hostname)" >> /etc/hosts
54 }
55
56 # get_openstack_images() - Function that retrieves or builds docker images
57 function get_openstack_images {
58     if [[ "$build_image" == "True" ]]; then
59         install_python_package kolla
60         kolla-build --config-file $kolla_build
61     else
62         kolla-ansible pull -i $kolla_inventory
63     fi
64 }
65
66 # deploy_openstack() - Function that provisions an OpenStack deployment
67 function deploy_openstack {
68     install_dependencies
69     configure_deploy ${1:-"192.168.53.0"} "True"
70
71     get_openstack_images
72     kolla-ansible deploy -i $kolla_inventory
73     kolla-ansible post-deploy
74     echo "source /etc/kolla/admin-openrc.sh" >> ${HOME}/.bashrc
75 }