blob: 88312cb1bd19a14402181071472b2614d71554eb [file] [log] [blame]
Flaper Fesp06b345e2013-09-04 15:35:47 +02001# lib/marconi
2# Install and start **Marconi** service
3
4# To enable a minimal set of Marconi services, add the following to localrc:
5# enable_service marconi-server
6#
7# Dependencies:
8# - functions
9# - OS_AUTH_URL for auth in api
10# - DEST set to the destination directory
11# - SERVICE_PASSWORD, SERVICE_TENANT_NAME for auth in api
12# - STACK_USER service user
13
14# stack.sh
15# ---------
16# install_marconi
17# configure_marconi
18# init_marconi
19# start_marconi
20# stop_marconi
21# cleanup_marconi
22
23# Save trace setting
24XTRACE=$(set +o | grep xtrace)
25set +o xtrace
26
27
28# Defaults
29# --------
30
31# Set up default directories
32MARCONI_DIR=$DEST/marconi
33MARCONICLIENT_DIR=$DEST/python-marconiclient
34MARCONI_CONF_DIR=/etc/marconi
35MARCONI_CONF=$MARCONI_CONF_DIR/marconi.conf
36MARCONI_API_LOG_DIR=/var/log/marconi-api
37MARCONI_AUTH_CACHE_DIR=${MARCONI_AUTH_CACHE_DIR:-/var/cache/marconi}
38
39# Support potential entry-points console scripts
40MARCONI_BIN_DIR=$(get_python_exec_prefix)
41
42# Set up database backend
43MARCONI_BACKEND=${MARCONI_BACKEND:-mongodb}
44
45
46# Set Marconi repository
47MARCONI_REPO=${MARCONI_REPO:-${GIT_BASE}/openstack/marconi.git}
48MARCONI_BRANCH=${MARCONI_BRANCH:-master}
49
50# Set client library repository
51MARCONICLIENT_REPO=${MARCONICLIENT_REPO:-${GIT_BASE}/openstack/python-marconiclient.git}
52MARCONICLIENT_BRANCH=${MARCONICLIENT_BRANCH:-master}
53
Dean Troyer4237f592014-01-29 16:22:11 -060054# Tell Tempest this project is present
Malini Kamalambal1e4e3ac2014-02-14 11:29:26 -050055TEMPEST_SERVICES+=,marconi
Dean Troyer4237f592014-01-29 16:22:11 -060056
57
Flaper Fesp06b345e2013-09-04 15:35:47 +020058# Functions
59# ---------
60
Malini Kamalambal9972ec22014-02-10 11:22:39 -050061# Test if any Marconi services are enabled
62# is_marconi_enabled
63function is_marconi_enabled {
64 [[ ,${ENABLED_SERVICES} =~ ,"marconi-" ]] && return 0
65 return 1
66}
67
Flaper Fesp06b345e2013-09-04 15:35:47 +020068# cleanup_marconi() - Remove residual data files, anything left over from previous
69# runs that a clean run would need to clean up
70function cleanup_marconi() {
71 mongo marconi --eval "db.dropDatabase();"
72}
73
74# configure_marconiclient() - Set config files, create data dirs, etc
75function configure_marconiclient() {
76 setup_develop $MARCONICLIENT_DIR
77}
78
79# configure_marconi() - Set config files, create data dirs, etc
80function configure_marconi() {
81 setup_develop $MARCONI_DIR
82
83 [ ! -d $MARCONI_CONF_DIR ] && sudo mkdir -m 755 -p $MARCONI_CONF_DIR
84 sudo chown $USER $MARCONI_CONF_DIR
85
86 [ ! -d $MARCONI_API_LOG_DIR ] && sudo mkdir -m 755 -p $MARCONI_API_LOG_DIR
87 sudo chown $USER $MARCONI_API_LOG_DIR
88
89 iniset $MARCONI_CONF DEFAULT verbose True
90 iniset $MARCONI_CONF 'drivers:transport:wsgi' bind '0.0.0.0'
91
Flaper Fesp06b345e2013-09-04 15:35:47 +020092 iniset $MARCONI_CONF keystone_authtoken auth_protocol http
93 iniset $MARCONI_CONF keystone_authtoken admin_user marconi
94 iniset $MARCONI_CONF keystone_authtoken admin_password $SERVICE_PASSWORD
95 iniset $MARCONI_CONF keystone_authtoken admin_tenant_name $SERVICE_TENANT_NAME
96 iniset $MARCONI_CONF keystone_authtoken signing_dir $MARCONI_AUTH_CACHE_DIR
97
98 if [[ "$MARCONI_BACKEND" = 'mongodb' ]]; then
99 iniset $MARCONI_CONF database connection mongodb://localhost:27017/marconi
100 configure_mongodb
101 cleanup_marconi
102 fi
103}
104
105function configure_mongodb() {
106 # Set nssize to 2GB. This increases the number of namespaces supported
107 # # per database.
Dean Troyer41d96d72014-02-11 09:08:35 -0600108 if is_ubuntu; then
109 sudo sed -i -e "
110 s|[^ \t]*#[ \t]*\(nssize[ \t]*=.*\$\)|\1|
111 s|^\(nssize[ \t]*=[ \t]*\).*\$|\1 2047|
112 " /etc/mongodb.conf
113 restart_service mongodb
114 elif is_fedora; then
115 sudo sed -i '/--nssize/!s/OPTIONS=\"/OPTIONS=\"--nssize 2047 /' /etc/sysconfig/mongod
116 restart_service mongod
117 fi
Flaper Fesp06b345e2013-09-04 15:35:47 +0200118}
119
120# init_marconi() - Initialize etc.
121function init_marconi() {
122 # Create cache dir
123 sudo mkdir -p $MARCONI_AUTH_CACHE_DIR
124 sudo chown $STACK_USER $MARCONI_AUTH_CACHE_DIR
125 rm -f $MARCONI_AUTH_CACHE_DIR/*
126}
127
128# install_marconi() - Collect source and prepare
129function install_marconi() {
130 git_clone $MARCONI_REPO $MARCONI_DIR $MARCONI_BRANCH
131 setup_develop $MARCONI_DIR
132}
133
134# install_marconiclient() - Collect source and prepare
135function install_marconiclient() {
136 git_clone $MARCONICLIENT_REPO $MARCONICLIENT_DIR $MARCONICLIENT_BRANCH
137 setup_develop $MARCONICLIENT_DIR
138}
139
140# start_marconi() - Start running processes, including screen
141function start_marconi() {
142 screen_it marconi-server "marconi-server --config-file $MARCONI_CONF"
143}
144
145# stop_marconi() - Stop running processes
146function stop_marconi() {
147 # Kill the marconi screen windows
148 for serv in marconi-server; do
149 screen -S $SCREEN_NAME -p $serv -X kill
150 done
151}
152
153function create_marconi_accounts() {
Steve Martinelli19685422014-01-24 13:02:26 -0600154 SERVICE_TENANT=$(openstack project list | awk "/ $SERVICE_TENANT_NAME / { print \$2 }")
155 ADMIN_ROLE=$(openstack role list | awk "/ admin / { print \$2 }")
Flaper Fesp06b345e2013-09-04 15:35:47 +0200156
Steve Martinelli19685422014-01-24 13:02:26 -0600157 MARCONI_USER=$(openstack user create \
158 marconi \
159 --password "$SERVICE_PASSWORD" \
160 --project $SERVICE_TENANT \
161 --email marconi@example.com \
162 | grep " id " | get_field 2)
163 openstack role add \
164 $ADMIN_ROLE \
165 --project $SERVICE_TENANT \
166 --user $MARCONI_USER
Malini Kamalambal0b3aacc2014-02-13 18:18:51 -0500167
Flaper Fesp06b345e2013-09-04 15:35:47 +0200168 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
Steve Martinelli19685422014-01-24 13:02:26 -0600169 MARCONI_SERVICE=$(openstack service create \
170 marconi \
Flaper Fesp06b345e2013-09-04 15:35:47 +0200171 --type=queuing \
Malini Kamalambal0f7ad6b2013-12-13 12:42:31 -0500172 --description="Marconi Service" \
173 | grep " id " | get_field 2)
Steve Martinelli19685422014-01-24 13:02:26 -0600174 openstack endpoint create \
175 $MARCONI_SERVICE \
Flaper Fesp06b345e2013-09-04 15:35:47 +0200176 --region RegionOne \
Flaper Fesp06b345e2013-09-04 15:35:47 +0200177 --publicurl "http://$SERVICE_HOST:8888" \
178 --adminurl "http://$SERVICE_HOST:8888" \
179 --internalurl "http://$SERVICE_HOST:8888"
180 fi
181
182}
183
184
185# Restore xtrace
186$XTRACE
187
188# Local variables:
189# mode: shell-script
190# End: