blob: a29784b93c53bfb2e409bec8d3adf2d9c5e759ef [file] [log] [blame]
Chris Dent4d601752016-07-12 19:34:09 +00001#!/bin/bash
2#
3# lib/placement
4# Functions to control the configuration and operation of the **Placement** service
5#
6# Currently the placement service is embedded in nova. Eventually we
7# expect this to change so this file is started as a separate entity
8# despite making use of some *NOVA* variables and files.
9
10# Dependencies:
11#
12# - ``functions`` file
13# - ``DEST``, ``DATA_DIR``, ``STACK_USER`` must be defined
14# - ``FILES``
15
16# ``stack.sh`` calls the entry points in this order:
17#
18# - install_placement
19# - cleanup_placement
20# - configure_placement
21# - init_placement
22# - start_placement
23# - stop_placement
24
25# Save trace setting
26_XTRACE_LIB_PLACEMENT=$(set +o | grep xtrace)
27set +o xtrace
28
29# Defaults
30# --------
31
32PLACEMENT_CONF_DIR=/etc/nova
33PLACEMENT_CONF=$PLACEMENT_CONF_DIR/nova.conf
34PLACEMENT_AUTH_STRATEGY=${PLACEMENT_AUTH_STRATEGY:-placement}
35
36
37# The placement service can optionally use a separate database
38# connection. Set PLACEMENT_DB_ENABLED to True to use it.
39# NOTE(cdent): This functionality depends on some code that is not
40# yet merged in nova but is coming soon.
41PLACEMENT_DB_ENABLED=$(trueorfalse False PLACEMENT_DB_ENABLED)
42
Sean Daguef3b2f4c2017-04-13 10:11:48 -040043if is_service_enabled tls-proxy; then
Chris Dent4d601752016-07-12 19:34:09 +000044 PLACEMENT_SERVICE_PROTOCOL="https"
45fi
46
47# Public facing bits
48PLACEMENT_SERVICE_PROTOCOL=${PLACEMENT_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
49PLACEMENT_SERVICE_HOST=${PLACEMENT_SERVICE_HOST:-$SERVICE_HOST}
Chris Dent4d601752016-07-12 19:34:09 +000050
51# Functions
52# ---------
53
54# Test if any placement services are enabled
55# is_placement_enabled
56function is_placement_enabled {
Sean Dague51a225c2016-12-15 16:32:08 -050057 [[ ,${ENABLED_SERVICES} =~ ,"placement-api" ]] && return 0
Chris Dent4d601752016-07-12 19:34:09 +000058 return 1
59}
60
61# cleanup_placement() - Remove residual data files, anything left over from previous
62# runs that a clean run would need to clean up
63function cleanup_placement {
64 sudo rm -f $(apache_site_config_for placement-api)
65}
66
67# _config_placement_apache_wsgi() - Set WSGI config files
68function _config_placement_apache_wsgi {
Chris Dent4d601752016-07-12 19:34:09 +000069 local placement_api_apache_conf
Chris Dent4d601752016-07-12 19:34:09 +000070 local venv_path=""
Sean Dague43ff27b2016-08-30 21:13:15 -040071 local nova_bin_dir=""
72 nova_bin_dir=$(get_python_exec_prefix)
Chris Dent4d601752016-07-12 19:34:09 +000073 placement_api_apache_conf=$(apache_site_config_for placement-api)
74
Chris Dent4d601752016-07-12 19:34:09 +000075 # reuse nova's venv if there is one as placement code lives
76 # there
77 if [[ ${USE_VENV} = True ]]; then
78 venv_path="python-path=${PROJECT_VENV["nova"]}/lib/$(python_version)/site-packages"
Sean Dague43ff27b2016-08-30 21:13:15 -040079 nova_bin_dir=${PROJECT_VENV["nova"]}/bin
Chris Dent4d601752016-07-12 19:34:09 +000080 fi
81
Chris Dent4d601752016-07-12 19:34:09 +000082 sudo cp $FILES/apache-placement-api.template $placement_api_apache_conf
83 sudo sed -e "
Chris Dent4d601752016-07-12 19:34:09 +000084 s|%APACHE_NAME%|$APACHE_NAME|g;
Sean Dague43ff27b2016-08-30 21:13:15 -040085 s|%PUBLICWSGI%|$nova_bin_dir/nova-placement-api|g;
Chris Dent4d601752016-07-12 19:34:09 +000086 s|%SSLENGINE%|$placement_ssl|g;
87 s|%SSLCERTFILE%|$placement_certfile|g;
88 s|%SSLKEYFILE%|$placement_keyfile|g;
89 s|%USER%|$STACK_USER|g;
90 s|%VIRTUALENV%|$venv_path|g
91 s|%APIWORKERS%|$API_WORKERS|g
92 " -i $placement_api_apache_conf
93}
94
Sean Dague51a225c2016-12-15 16:32:08 -050095function configure_placement_nova_compute {
Chris Dent4d601752016-07-12 19:34:09 +000096 iniset $NOVA_CONF placement auth_type "password"
Brant Knudsonc2c89e42017-02-23 20:15:47 -060097 iniset $NOVA_CONF placement auth_url "$KEYSTONE_SERVICE_URI/v3"
Chris Dent4d601752016-07-12 19:34:09 +000098 iniset $NOVA_CONF placement username placement
99 iniset $NOVA_CONF placement password "$SERVICE_PASSWORD"
Jens Rosenboom80b1d0a2017-01-04 16:58:04 +0100100 iniset $NOVA_CONF placement user_domain_name "$SERVICE_DOMAIN_NAME"
Chris Dent4d601752016-07-12 19:34:09 +0000101 iniset $NOVA_CONF placement project_name "$SERVICE_TENANT_NAME"
Jens Rosenboom80b1d0a2017-01-04 16:58:04 +0100102 iniset $NOVA_CONF placement project_domain_name "$SERVICE_DOMAIN_NAME"
Matt Riedemann44bf88c2016-08-31 10:39:46 -0400103 iniset $NOVA_CONF placement os_region_name "$REGION_NAME"
Chris Dent4d601752016-07-12 19:34:09 +0000104 # TODO(cdent): auth_strategy, which is common to see in these
105 # blocks is not currently used here. For the time being the
106 # placement api uses the auth_strategy configuration setting
107 # established by the nova api. This avoids, for the time, being,
108 # creating redundant configuration items that are just used for
109 # testing.
Sean Dague51a225c2016-12-15 16:32:08 -0500110}
Chris Dent4d601752016-07-12 19:34:09 +0000111
Sean Dague51a225c2016-12-15 16:32:08 -0500112# configure_placement() - Set config files, create data dirs, etc
113function configure_placement {
114 if [ "$PLACEMENT_DB_ENABLED" != False ]; then
115 iniset $PLACEMENT_CONF placement_database connection `database_connection_url placement`
116 fi
Chris Dent4d601752016-07-12 19:34:09 +0000117 _config_placement_apache_wsgi
118}
119
120# create_placement_accounts() - Set up required placement accounts
121# and service and endpoints.
122function create_placement_accounts {
123 create_service_user "placement" "admin"
124 local placement_api_url="$PLACEMENT_SERVICE_PROTOCOL://$PLACEMENT_SERVICE_HOST/placement"
125 get_or_create_service "placement" "placement" "Placement Service"
126 get_or_create_endpoint \
127 "placement" \
128 "$REGION_NAME" \
Chris Dent4d601752016-07-12 19:34:09 +0000129 "$placement_api_url"
130}
131
132# init_placement() - Create service user and endpoints
133# If PLACEMENT_DB_ENABLED is true, create the separate placement db
134# using, for now, the api_db migrations.
135function init_placement {
136 if [ "$PLACEMENT_DB_ENABLED" != False ]; then
137 recreate_database placement
138 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CONF api_db sync
139 fi
140 create_placement_accounts
141}
142
143# install_placement() - Collect source and prepare
144function install_placement {
145 install_apache_wsgi
Chris Dent4d601752016-07-12 19:34:09 +0000146}
147
148# start_placement_api() - Start the API processes ahead of other things
149function start_placement_api {
Chris Dent4d601752016-07-12 19:34:09 +0000150 enable_apache_site placement-api
151 restart_apache_server
152 tail_log placement-api /var/log/$APACHE_NAME/placement-api.log
153
154 echo "Waiting for placement-api to start..."
155 if ! wait_for_service $SERVICE_TIMEOUT $PLACEMENT_SERVICE_PROTOCOL://$PLACEMENT_SERVICE_HOST/placement; then
156 die $LINENO "placement-api did not start"
157 fi
158}
159
160function start_placement {
161 start_placement_api
162}
163
164# stop_placement() - Disable the api service and stop it.
165function stop_placement {
166 disable_apache_site placement-api
167 restart_apache_server
168}
169
170# Restore xtrace
171$_XTRACE_LIB_PLACEMENT
172
173# Tell emacs to use shell-script-mode
174## Local variables:
175## mode: shell-script
176## End: