summaryrefslogtreecommitdiffstats
path: root/tools/kingbird/install_kingbird.sh
blob: c936aa3774cb718bdf79cf404d8706ff207c4c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/bin/bash

set -o xtrace
set -o errexit
set -o nounset
set -o pipefail

# Ensure that openrc containing OpenStack environment variables is present.
source openrc

# Endpoints. Dynamically get IP addresses from another service (keystone)
KINGBIRD_PUBLIC_URL=$(openstack endpoint list --long | grep keystone | cut -d '|' -f 6 | cut -d '/' -f 3 | cut -d ':' -f 1)
KINGBIRD_ADMIN_URL=$(openstack endpoint list --long | grep keystone | cut -d '|' -f 7 | cut -d '/' -f 3 | cut -d ':' -f 1)
KINGBIRD_INTERNAL_URL=$(openstack endpoint list --long | grep keystone | cut -d '|' -f 7 | cut -d '/' -f 3 | cut -d ':' -f 1)

# MySQL
mysql_host=$(mysql -uroot -se "SELECT SUBSTRING_INDEX(USER(), '@', -1);")
mysql_user='kingbird'
mysql_pass='mysql_kb'
mysql_db='kingbird'

# Keystone
admin_password='keystone_kb_pass'
admin_user='kingbird'
admin_tenant_name='services'
auth_uri=$OS_AUTH_URL"v3"

# Rabbit
rabbit_user='nova'
rabbit_password=$(sed -n 's/^rabbit_password *= *\([^ ]*.*\)/\1/p' < /etc/nova/nova.conf)
rabbit_hosts=$(sed -n 's/^rabbit_hosts *= *\([^ ]*.*\)/\1/p' < /etc/nova/nova.conf)

# Config
KINGBIRD_CONF_FILE='/etc/kingbird/kingbird.conf'
bind_host=$(sed -n 's/^admin_bind_host *= *\([^ ]*.*\)/\1/p' < /etc/keystone/keystone.conf)

function ini_has_option {
    local file=$1
    local section=$2
    local option=$3
    local line
    line=$(sed -ne "/^\[$section\]/,/^\[.*\]/ { /^$option[ \t]*=/ p; }" "$file")
    [ -n "$line" ]
}

function iniset {
    local file=$1
    local section=$2
    local option=$3
    local value=$4

    [[ -z $section || -z $option ]] && return

    if ! grep -q "^\[$section\]" "$file" 2>/dev/null; then
        echo -e "\n[$section]" >>"$file"
    fi
    if ! ini_has_option "$file" "$section" "$option"; then
        sed -i -e "/^\[$section\]/ a\\
$option = $value
" "$file"
    else
        local sep=$(echo -ne "\x01")
        # Replace it
        sed -i -e '/^\['${section}'\]/,/^\[.*\]/ s'${sep}'^\('${option}'[ \t]*=[ \t]*\).*$'${sep}'\1'"${value}"${sep} "$file"
    fi
}

export DEBIAN_FRONTEND=noninteractive
apt-get -qq update
apt-get install -y  \
        curl \
        git \
        libffi-dev \
        libssl-dev \
        libxml2-dev \
        libxslt1-dev \
        libyaml-dev \
        python-dev \
        python-pip \
        python-setuptools

sudo pip install --upgrade pip
sudo pip install tox==1.6.1


#Recreate database
mysql -uroot -e "DROP DATABASE IF EXISTS $mysql_db;"
mysql -uroot -e "CREATE DATABASE $mysql_db CHARACTER SET utf8;"
mysql -uroot -e "GRANT ALL PRIVILEGES ON $mysql_db.* TO '$mysql_user'@'$mysql_host' IDENTIFIED BY '$mysql_pass';"

#Configure kingbird user
openstack user show kingbird 2>/dev/null
if [ $? -eq 0 ]; then
    echo "User already exists. Skipping.."
else
    echo "Creating Kingbird user.."
    openstack user create --project=$admin_tenant_name --password=$admin_password $admin_user
    openstack role add --user=$admin_user --project=$admin_tenant_name admin
fi

#Configure kingbird endpoints
openstack service show kingbird 2>/dev/null
if [ $? -eq 0 ]; then
    echo "Kingbird service already exists. Skipping.."
else
    echo "Creating Kingbird endpoints.."
    openstack service create --name=kingbird --description="Kingbird" multisite
    openstack endpoint create kingbird \
        --publicurl $KINGBIRD_PUBLIC_URL \
        --adminurl $KINGBIRD_ADMIN_URL \
        --internalurl $KINGBIRD_INTERNAL_URL \
        --region $OS_REGION_NAME
fi

#Setup Kingbird
git clone https://github.com/openstack/kingbird.git && cd kingbird/

pip install -r requirements.txt
pip install .

mkdir -p /etc/kingbird/
oslo-config-generator --config-file tools/config-generator.conf --output-file $KINGBIRD_CONF_FILE

# Delete previous repo clone
cd ..
rm -rf kingbird/

# Configure host section
iniset $KINGBIRD_CONF_FILE DEFAULT bind_host $bind_host
iniset $KINGBIRD_CONF_FILE DEFAULT bind_port 8118
iniset $KINGBIRD_CONF_FILE host_details host $bind_host

# Configure cache section. Ideally should be removed
iniset $KINGBIRD_CONF_FILE cache admin_tenant $admin_tenant_name
iniset $KINGBIRD_CONF_FILE cache admin_username $admin_user
iniset $KINGBIRD_CONF_FILE cache admin_password $admin_password
iniset $KINGBIRD_CONF_FILE cache auth_uri $auth_uri
iniset $KINGBIRD_CONF_FILE cache identity_uri $OS_AUTH_URL

# Configure keystone_authtoken section
iniset $KINGBIRD_CONF_FILE keystone_authtoken admin_tenant_name $admin_tenant_name
iniset $KINGBIRD_CONF_FILE keystone_authtoken admin_user $admin_user
iniset $KINGBIRD_CONF_FILE keystone_authtoken admin_password $admin_password
iniset $KINGBIRD_CONF_FILE keystone_authtoken auth_uri $auth_uri
iniset $KINGBIRD_CONF_FILE keystone_authtoken identity_uri $OS_AUTH_URL

# Configure RabbitMQ credentials
iniset $KINGBIRD_CONF_FILE oslo_messaging_rabbit rabbit_userid $rabbit_user
iniset $KINGBIRD_CONF_FILE oslo_messaging_rabbit rabbit_password $rabbit_password
iniset $KINGBIRD_CONF_FILE oslo_messaging_rabbit rabbit_hosts $rabbit_hosts
iniset $KINGBIRD_CONF_FILE oslo_messaging_rabbit rabbit_virtual_host /
iniset $KINGBIRD_CONF_FILE oslo_messaging_rabbit rabbit_ha_queues False


# Configure the database.
iniset $KINGBIRD_CONF_FILE database connection "mysql://$mysql_user:$mysql_pass@$mysql_host/$mysql_db?charset=utf8"
iniset $KINGBIRD_CONF_FILE database max_overflow -1
iniset $KINGBIRD_CONF_FILE database max_pool_size 1000

# Kill kingbird
if pgrep kingbird-api &> /dev/null ; then  pkill -f kingbird-api ; fi
if pgrep kingbird-engine &> /dev/null ; then  pkill -f kingbird-engine ; fi

# Run kingbird
mkdir -p /var/log/kingbird
kingbird-manage --config-file $KINGBIRD_CONF_FILE db_sync
nohup kingbird-engine --config-file $KINGBIRD_CONF_FILE --log-file /var/log/kingbird/kingbird-engine.log &
nohup kingbird-api --config-file $KINGBIRD_CONF_FILE --log-file /var/log/kingbird/kingbird-api.log &