blob: 17a0cc3c1a74f4660ca2039aaa63b81bc03cf3ca [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Dean Troyer67787e62012-05-02 11:48:15 -05003# lib/cinder
Dean Troyer6d04fd72012-12-21 11:03:37 -06004# Install and start **Cinder** volume service
Dean Troyer67787e62012-05-02 11:48:15 -05005
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
Dean Troyer67787e62012-05-02 11:48:15 -05008# - functions
Attila Fazekas91b8d132013-01-06 22:40:09 +01009# - DEST, DATA_DIR, STACK_USER must be defined
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010010# - SERVICE_{TENANT_NAME|PASSWORD} must be defined
11# - ``KEYSTONE_TOKEN_FORMAT`` must be defined
Dean Troyer67787e62012-05-02 11:48:15 -050012
13# stack.sh
14# ---------
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010015# - install_cinder
16# - configure_cinder
17# - init_cinder
18# - start_cinder
19# - stop_cinder
20# - cleanup_cinder
Dean Troyer67787e62012-05-02 11:48:15 -050021
Dean Troyer7903b792012-09-13 17:16:12 -050022# Save trace setting
23XTRACE=$(set +o | grep xtrace)
24set +o xtrace
Dean Troyer67787e62012-05-02 11:48:15 -050025
26
27# Defaults
28# --------
29
Mate Lakatb2fdafe2012-11-20 15:52:21 +000030# set up default driver
31CINDER_DRIVER=${CINDER_DRIVER:-default}
john-griffithd0860cc2014-01-23 11:31:10 -070032CINDER_PLUGINS=$TOP_DIR/lib/cinder_plugins
Dean Troyer09718332014-07-03 10:46:57 -050033CINDER_BACKENDS=$TOP_DIR/lib/cinder_backends
john-griffithd0860cc2014-01-23 11:31:10 -070034
35# grab plugin config if specified via cinder_driver
36if [[ -r $CINDER_PLUGINS/$CINDER_DRIVER ]]; then
37 source $CINDER_PLUGINS/$CINDER_DRIVER
38fi
Mate Lakatb2fdafe2012-11-20 15:52:21 +000039
Dean Troyer67787e62012-05-02 11:48:15 -050040# set up default directories
Sean Daguee08ab102014-11-13 17:09:28 -050041GITDIR["python-cinderclient"]=$DEST/python-cinderclient
Sean Dague5cb19062014-11-01 01:37:45 +010042
Dean Troyer67787e62012-05-02 11:48:15 -050043CINDER_DIR=$DEST/cinder
Dean Troyer50ac7922012-09-13 14:02:01 -050044CINDER_STATE_PATH=${CINDER_STATE_PATH:=$DATA_DIR/cinder}
Dean Troyer671c16e2012-12-13 16:22:38 -060045CINDER_AUTH_CACHE_DIR=${CINDER_AUTH_CACHE_DIR:-/var/cache/cinder}
46
Dean Troyer50ac7922012-09-13 14:02:01 -050047CINDER_CONF_DIR=/etc/cinder
48CINDER_CONF=$CINDER_CONF_DIR/cinder.conf
Dean Troyer671c16e2012-12-13 16:22:38 -060049CINDER_API_PASTE_INI=$CINDER_CONF_DIR/api-paste.ini
Dean Troyer50ac7922012-09-13 14:02:01 -050050
Dean Troyer560346b2012-12-13 17:05:24 -060051# Public facing bits
Rob Crittenden18d47782014-03-19 17:47:42 -040052if is_ssl_enabled_service "cinder" || is_service_enabled tls-proxy; then
53 CINDER_SERVICE_PROTOCOL="https"
54fi
Dean Troyer560346b2012-12-13 17:05:24 -060055CINDER_SERVICE_HOST=${CINDER_SERVICE_HOST:-$SERVICE_HOST}
56CINDER_SERVICE_PORT=${CINDER_SERVICE_PORT:-8776}
57CINDER_SERVICE_PORT_INT=${CINDER_SERVICE_PORT_INT:-18776}
58CINDER_SERVICE_PROTOCOL=${CINDER_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
59
Dean Troyer50ac7922012-09-13 14:02:01 -050060# Support entry points installation of console scripts
61if [[ -d $CINDER_DIR/bin ]]; then
Monty Taylor9fbeedd2012-08-17 12:52:27 -040062 CINDER_BIN_DIR=$CINDER_DIR/bin
63else
Jakub Ruzicka4196d552013-01-30 15:35:54 +010064 CINDER_BIN_DIR=$(get_python_exec_prefix)
Monty Taylor9fbeedd2012-08-17 12:52:27 -040065fi
Dean Troyer67787e62012-05-02 11:48:15 -050066
Dean Troyer09718332014-07-03 10:46:57 -050067
68# Maintain this here for backward-compatibility with the old configuration
69# DEPRECATED: Use CINDER_ENABLED_BACKENDS instead
Jérôme Gallarddda2b7a2013-02-22 17:28:10 +010070# Support for multi lvm backend configuration (default is no support)
Sean Dague53753292014-12-04 19:38:15 -050071CINDER_MULTI_LVM_BACKEND=$(trueorfalse False CINDER_MULTI_LVM_BACKEND)
Jérôme Gallarddda2b7a2013-02-22 17:28:10 +010072
Dean Troyer09718332014-07-03 10:46:57 -050073# Default backends
74# The backend format is type:name where type is one of the supported backend
75# types (lvm, nfs, etc) and name is the identifier used in the Cinder
76# configuration and for the volume type name. Multiple backends are
77# comma-separated.
78if [[ $CINDER_MULTI_LVM_BACKEND == "False" ]]; then
Daniel Genind4708672014-10-31 15:01:29 -040079 CINDER_ENABLED_BACKENDS=${CINDER_ENABLED_BACKENDS:-lvm:${DEFAULT_VOLUME_GROUP_NAME##*-}}
Dean Troyer09718332014-07-03 10:46:57 -050080else
Daniel Genind4708672014-10-31 15:01:29 -040081 CINDER_ENABLED_BACKENDS=${CINDER_ENABLED_BACKENDS:-lvm:${DEFAULT_VOLUME_GROUP_NAME##*-},lvm:cinder}
Dean Troyer09718332014-07-03 10:46:57 -050082fi
83
84
Dean Troyerb7490da2013-03-18 16:07:56 -050085# Should cinder perform secure deletion of volumes?
86# Defaults to true, can be set to False to avoid this bug when testing:
87# https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1023755
Sean Dague53753292014-12-04 19:38:15 -050088CINDER_SECURE_DELETE=$(trueorfalse True CINDER_SECURE_DELETE)
Dean Troyerb7490da2013-03-18 16:07:56 -050089
Sean Daguef35ff722013-05-16 16:31:12 -040090# Cinder reports allocations back to the scheduler on periodic intervals
91# it turns out we can get an "out of space" issue when we run tests too
92# quickly just because cinder didn't realize we'd freed up resources.
93# Make this configurable so that devstack-gate/tempest can set it to
94# less than the 60 second default
95# https://bugs.launchpad.net/cinder/+bug/1180976
96CINDER_PERIODIC_INTERVAL=${CINDER_PERIODIC_INTERVAL:-60}
97
Dean Troyer4237f592014-01-29 16:22:11 -060098# Tell Tempest this project is present
99TEMPEST_SERVICES+=,cinder
100
Dean Troyercc6b4432013-04-08 15:38:03 -0500101
Dean Troyer09718332014-07-03 10:46:57 -0500102# Source the enabled backends
103if is_service_enabled c-vol && [[ -n "$CINDER_ENABLED_BACKENDS" ]]; then
104 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
Dean Troyere8a35ac2014-07-25 12:37:41 -0500105 be_type=${be%%:*}
106 be_name=${be##*:}
107 if [[ -r $CINDER_BACKENDS/${be_type} ]]; then
108 source $CINDER_BACKENDS/${be_type}
Dean Troyer09718332014-07-03 10:46:57 -0500109 fi
110 done
111fi
112
git-harryafc14232015-01-08 17:37:40 +0000113# Change the default nova_catalog_info and nova_catalog_admin_info values in
114# cinder so that the service name cinder is searching for matches that set for
115# nova in keystone.
116CINDER_NOVA_CATALOG_INFO=${CINDER_NOVA_CATALOG_INFO:-compute:nova:publicURL}
117CINDER_NOVA_CATALOG_ADMIN_INFO=${CINDER_NOVA_CATALOG_ADMIN_INFO:-compute:nova:adminURL}
118
Dean Troyer09718332014-07-03 10:46:57 -0500119
Dean Troyercc6b4432013-04-08 15:38:03 -0500120# Functions
121# ---------
Dean Troyere4fa7212014-01-15 15:04:49 -0600122
123# Test if any Cinder services are enabled
124# is_cinder_enabled
125function is_cinder_enabled {
126 [[ ,${ENABLED_SERVICES} =~ ,"c-" ]] && return 0
127 return 1
128}
129
Dean Troyer67787e62012-05-02 11:48:15 -0500130# cleanup_cinder() - Remove residual data files, anything left over from previous
131# runs that a clean run would need to clean up
Ian Wienandaee18c72014-02-21 15:35:08 +1100132function cleanup_cinder {
Sean Dague252f2f52012-12-20 16:41:57 -0500133 # ensure the volume group is cleared up because fails might
134 # leave dead volumes in the group
Dean Troyere8a35ac2014-07-25 12:37:41 -0500135 local targets=$(sudo tgtadm --op show --mode target)
Sean Dague252f2f52012-12-20 16:41:57 -0500136 if [ $? -ne 0 ]; then
137 # If tgt driver isn't running this won't work obviously
138 # So check the response and restart if need be
139 echo "tgtd seems to be in a bad state, restarting..."
140 if is_ubuntu; then
141 restart_service tgt
142 else
143 restart_service tgtd
144 fi
Dean Troyere8a35ac2014-07-25 12:37:41 -0500145 targets=$(sudo tgtadm --op show --mode target)
Sean Dague252f2f52012-12-20 16:41:57 -0500146 fi
147
Dean Troyere8a35ac2014-07-25 12:37:41 -0500148 if [[ -n "$targets" ]]; then
149 local iqn_list=( $(grep --no-filename -r iqn $SCSI_PERSIST_DIR | sed 's/<target //' | sed 's/>//') )
Sean Dague252f2f52012-12-20 16:41:57 -0500150 for i in "${iqn_list[@]}"; do
151 echo removing iSCSI target: $i
152 sudo tgt-admin --delete $i
153 done
154 fi
155
Sean Dague252f2f52012-12-20 16:41:57 -0500156 if is_ubuntu; then
157 stop_service tgt
158 else
159 stop_service tgtd
160 fi
161
Dean Troyer09718332014-07-03 10:46:57 -0500162 if is_service_enabled c-vol && [[ -n "$CINDER_ENABLED_BACKENDS" ]]; then
Dean Troyere8a35ac2014-07-25 12:37:41 -0500163 local be be_name be_type
Dean Troyer09718332014-07-03 10:46:57 -0500164 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
Dean Troyere8a35ac2014-07-25 12:37:41 -0500165 be_type=${be%%:*}
166 be_name=${be##*:}
167 if type cleanup_cinder_backend_${be_type} >/dev/null 2>&1; then
168 cleanup_cinder_backend_${be_type} ${be_name}
Dean Troyer09718332014-07-03 10:46:57 -0500169 fi
170 done
Jérôme Gallarddda2b7a2013-02-22 17:28:10 +0100171 fi
Dean Troyer67787e62012-05-02 11:48:15 -0500172}
173
Thierry Carrez63e17842014-01-10 14:23:03 +0100174# configure_cinder_rootwrap() - configure Cinder's rootwrap
Ian Wienandaee18c72014-02-21 15:35:08 +1100175function configure_cinder_rootwrap {
John Griffith4e823ff2012-07-20 13:18:17 -0600176 # Set the paths of certain binaries
Dean Troyere8a35ac2014-07-25 12:37:41 -0500177 local cinder_rootwrap=$(get_rootwrap_location cinder)
John Griffith4e823ff2012-07-20 13:18:17 -0600178
Thierry Carrezd5d49742014-02-06 16:00:08 +0100179 # Deploy new rootwrap filters files (owned by root).
180 # Wipe any existing rootwrap.d files first
181 if [[ -d $CINDER_CONF_DIR/rootwrap.d ]]; then
182 sudo rm -rf $CINDER_CONF_DIR/rootwrap.d
John Griffith4e823ff2012-07-20 13:18:17 -0600183 fi
Thierry Carrezd5d49742014-02-06 16:00:08 +0100184 # Deploy filters to /etc/cinder/rootwrap.d
185 sudo mkdir -m 755 $CINDER_CONF_DIR/rootwrap.d
186 sudo cp $CINDER_DIR/etc/cinder/rootwrap.d/*.filters $CINDER_CONF_DIR/rootwrap.d
187 sudo chown -R root:root $CINDER_CONF_DIR/rootwrap.d
188 sudo chmod 644 $CINDER_CONF_DIR/rootwrap.d/*
189 # Set up rootwrap.conf, pointing to /etc/cinder/rootwrap.d
190 sudo cp $CINDER_DIR/etc/cinder/rootwrap.conf $CINDER_CONF_DIR/
191 sudo sed -e "s:^filters_path=.*$:filters_path=$CINDER_CONF_DIR/rootwrap.d:" -i $CINDER_CONF_DIR/rootwrap.conf
192 sudo chown root:root $CINDER_CONF_DIR/rootwrap.conf
193 sudo chmod 0644 $CINDER_CONF_DIR/rootwrap.conf
194 # Specify rootwrap.conf as first parameter to rootwrap
Dean Troyere8a35ac2014-07-25 12:37:41 -0500195 ROOTWRAP_CSUDOER_CMD="$cinder_rootwrap $CINDER_CONF_DIR/rootwrap.conf *"
John Griffith4e823ff2012-07-20 13:18:17 -0600196
Thierry Carrezd5d49742014-02-06 16:00:08 +0100197 # Set up the rootwrap sudoers for cinder
Dean Troyere8a35ac2014-07-25 12:37:41 -0500198 local tempfile=`mktemp`
199 echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_CSUDOER_CMD" >$tempfile
200 chmod 0440 $tempfile
201 sudo chown root:root $tempfile
202 sudo mv $tempfile /etc/sudoers.d/cinder-rootwrap
Thierry Carrez63e17842014-01-10 14:23:03 +0100203}
204
205# configure_cinder() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +1100206function configure_cinder {
Thierry Carrez63e17842014-01-10 14:23:03 +0100207 if [[ ! -d $CINDER_CONF_DIR ]]; then
208 sudo mkdir -p $CINDER_CONF_DIR
209 fi
210 sudo chown $STACK_USER $CINDER_CONF_DIR
211
212 cp -p $CINDER_DIR/etc/cinder/policy.json $CINDER_CONF_DIR
213
Yalei Wangcecbd1f2015-01-05 17:05:47 +0800214 rm -f $CINDER_CONF
215
Thierry Carrez63e17842014-01-10 14:23:03 +0100216 configure_cinder_rootwrap
John Griffith4e823ff2012-07-20 13:18:17 -0600217
Dean Troyer67787e62012-05-02 11:48:15 -0500218 cp $CINDER_DIR/etc/cinder/api-paste.ini $CINDER_API_PASTE_INI
Dan Prince82dea7c2013-10-16 18:57:15 -0400219
220 inicomment $CINDER_API_PASTE_INI filter:authtoken auth_host
221 inicomment $CINDER_API_PASTE_INI filter:authtoken auth_port
222 inicomment $CINDER_API_PASTE_INI filter:authtoken auth_protocol
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +1000223 inicomment $CINDER_API_PASTE_INI filter:authtoken cafile
Dan Prince82dea7c2013-10-16 18:57:15 -0400224 inicomment $CINDER_API_PASTE_INI filter:authtoken admin_tenant_name
225 inicomment $CINDER_API_PASTE_INI filter:authtoken admin_user
226 inicomment $CINDER_API_PASTE_INI filter:authtoken admin_password
227 inicomment $CINDER_API_PASTE_INI filter:authtoken signing_dir
Dean Troyerbc071bc2012-10-01 14:06:44 -0500228
Brant Knudson05952372014-09-19 17:22:22 -0500229 configure_auth_token_middleware $CINDER_CONF cinder $CINDER_AUTH_CACHE_DIR
Dan Prince82dea7c2013-10-16 18:57:15 -0400230
git-harryafc14232015-01-08 17:37:40 +0000231 iniset $CINDER_CONF DEFAULT nova_catalog_info $CINDER_NOVA_CATALOG_INFO
232 iniset $CINDER_CONF DEFAULT nova_catalog_admin_info $CINDER_NOVA_CATALOG_ADMIN_INFO
233
Dean Troyer67787e62012-05-02 11:48:15 -0500234 iniset $CINDER_CONF DEFAULT auth_strategy keystone
Ben Nemec03997942013-08-10 09:56:16 -0500235 iniset $CINDER_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Dean Troyer67787e62012-05-02 11:48:15 -0500236 iniset $CINDER_CONF DEFAULT verbose True
Dean Troyer09718332014-07-03 10:46:57 -0500237
Nikolay Sobolevskiy08df29b2013-08-30 21:59:15 +0400238 iniset $CINDER_CONF DEFAULT my_ip "$CINDER_SERVICE_HOST"
Dean Troyer67787e62012-05-02 11:48:15 -0500239 iniset $CINDER_CONF DEFAULT iscsi_helper tgtadm
Attila Fazekas7e79d912013-03-03 12:23:04 +0100240 iniset $CINDER_CONF DEFAULT sql_connection `database_connection_url cinder`
Dean Troyer67787e62012-05-02 11:48:15 -0500241 iniset $CINDER_CONF DEFAULT api_paste_config $CINDER_API_PASTE_INI
Joe Gordona58382a2013-02-20 12:45:02 -0800242 iniset $CINDER_CONF DEFAULT rootwrap_config "$CINDER_CONF_DIR/rootwrap.conf"
Dan Prince9f22f072013-01-28 09:53:38 -0500243 iniset $CINDER_CONF DEFAULT osapi_volume_extension cinder.api.contrib.standard_extensions
Dean Troyer50ac7922012-09-13 14:02:01 -0500244 iniset $CINDER_CONF DEFAULT state_path $CINDER_STATE_PATH
Sergey Kraynev84783c72013-10-10 09:08:48 -0400245 iniset $CINDER_CONF DEFAULT lock_path $CINDER_STATE_PATH
Sean Daguef35ff722013-05-16 16:31:12 -0400246 iniset $CINDER_CONF DEFAULT periodic_interval $CINDER_PERIODIC_INTERVAL
Mike Perezf64f43b2014-06-25 08:51:31 -0700247 # NOTE(thingee): Cinder V1 API is deprecated and defaults to off as of
248 # Juno. Keep it enabled so we can continue testing while it's still
249 # supported.
250 iniset $CINDER_CONF DEFAULT enable_v1_api true
John Griffith4e823ff2012-07-20 13:18:17 -0600251
Dean Troyer09718332014-07-03 10:46:57 -0500252 if is_service_enabled c-vol && [[ -n "$CINDER_ENABLED_BACKENDS" ]]; then
Dean Troyere8a35ac2014-07-25 12:37:41 -0500253 local enabled_backends=""
254 local default_name=""
255 local be be_name be_type
Dean Troyer09718332014-07-03 10:46:57 -0500256 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
Dean Troyere8a35ac2014-07-25 12:37:41 -0500257 be_type=${be%%:*}
258 be_name=${be##*:}
259 if type configure_cinder_backend_${be_type} >/dev/null 2>&1; then
260 configure_cinder_backend_${be_type} ${be_name}
Dean Troyer09718332014-07-03 10:46:57 -0500261 fi
Dean Troyera25922b2014-08-28 09:29:47 -0500262 if [[ -z "$default_name" ]]; then
263 default_name=$be_name
Dean Troyer09718332014-07-03 10:46:57 -0500264 fi
Dean Troyere8a35ac2014-07-25 12:37:41 -0500265 enabled_backends+=$be_name,
Dean Troyer09718332014-07-03 10:46:57 -0500266 done
267 iniset $CINDER_CONF DEFAULT enabled_backends ${enabled_backends%,*}
Matt Riedemann6a4aa782014-07-25 13:35:53 -0700268 if [[ -n "$default_name" ]]; then
269 iniset $CINDER_CONF DEFAULT default_volume_type ${default_name}
Dean Troyer09718332014-07-03 10:46:57 -0500270 fi
271 fi
272
Attila Fazekas29834742014-03-09 18:36:42 +0100273 if is_service_enabled swift; then
Rob Crittenden7d0a0f72014-11-17 00:03:47 -0500274 iniset $CINDER_CONF DEFAULT backup_swift_url "$SWIFT_SERVICE_PROTOCOL://$SERVICE_HOST:8080/v1/AUTH_"
Attila Fazekas29834742014-03-09 18:36:42 +0100275 fi
276
Gordon Chung2bfbc772013-08-09 10:55:12 -0400277 if is_service_enabled ceilometer; then
Mark McLoughlindc0938e2014-06-17 06:37:43 +0100278 iniset $CINDER_CONF DEFAULT notification_driver "messaging"
Gordon Chung2bfbc772013-08-09 10:55:12 -0400279 fi
280
Dean Troyer560346b2012-12-13 17:05:24 -0600281 if is_service_enabled tls-proxy; then
282 # Set the service port for a proxy to take the original
283 iniset $CINDER_CONF DEFAULT osapi_volume_listen_port $CINDER_SERVICE_PORT_INT
284 fi
285
Dean Troyer4d3049e2012-11-06 20:38:14 -0600286 if [ "$SYSLOG" != "False" ]; then
287 iniset $CINDER_CONF DEFAULT use_syslog True
288 fi
289
Akihiro MOTOKIb0f1c382013-01-13 17:58:12 +0900290 iniset_rpc_backend cinder $CINDER_CONF DEFAULT
Gary Kottonf71bf192012-08-06 11:15:36 -0400291
James E. Blair213c4162012-11-06 09:38:36 +0100292 if [[ "$CINDER_SECURE_DELETE" == "False" ]]; then
293 iniset $CINDER_CONF DEFAULT secure_delete False
Pádraig Bradyeac93702013-01-02 16:02:54 +0000294 iniset $CINDER_CONF DEFAULT volume_clear none
James E. Blair213c4162012-11-06 09:38:36 +0100295 fi
296
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700297 # Format logging
Chmouel Boudjnah1057bff2012-08-03 11:42:51 +0000298 if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700299 setup_colorized_logging $CINDER_CONF DEFAULT "project_id" "user_id"
Chmouel Boudjnah1057bff2012-08-03 11:42:51 +0000300 fi
Mate Lakatb2fdafe2012-11-20 15:52:21 +0000301
john-griffithd0860cc2014-01-23 11:31:10 -0700302 if [[ -r $CINDER_PLUGINS/$CINDER_DRIVER ]]; then
303 configure_cinder_driver
Mate Lakatb2fdafe2012-11-20 15:52:21 +0000304 fi
Ian Wienand0db17132013-06-26 22:31:48 +1000305
Dean Troyer05bd7b82014-09-16 17:25:33 -0500306 iniset $CINDER_CONF DEFAULT osapi_volume_workers "$API_WORKERS"
Rob Crittenden18d47782014-03-19 17:47:42 -0400307
308 iniset $CINDER_CONF DEFAULT glance_api_servers "${GLANCE_SERVICE_PROTOCOL}://${GLANCE_HOSTPORT}"
309 if is_ssl_enabled_service glance || is_service_enabled tls-proxy; then
310 iniset $CINDER_CONF DEFAULT glance_protocol https
Rob Crittenden4b109292014-10-21 18:17:48 -0400311 iniset $CINDER_CONF DEFAULT glance_ca_certificates_file $SSL_BUNDLE_FILE
Rob Crittenden18d47782014-03-19 17:47:42 -0400312 fi
313
314 # Register SSL certificates if provided
315 if is_ssl_enabled_service cinder; then
316 ensure_certificates CINDER
317
318 iniset $CINDER_CONF DEFAULT ssl_cert_file "$CINDER_SSL_CERT"
319 iniset $CINDER_CONF DEFAULT ssl_key_file "$CINDER_SSL_KEY"
320 fi
321
Dean Troyer67787e62012-05-02 11:48:15 -0500322}
323
Dean Troyer671c16e2012-12-13 16:22:38 -0600324# create_cinder_accounts() - Set up common required cinder accounts
325
326# Tenant User Roles
327# ------------------------------------------------------------------
328# service cinder admin # if enabled
329
330# Migrated from keystone_data.sh
Ian Wienandaee18c72014-02-21 15:35:08 +1100331function create_cinder_accounts {
Dean Troyer671c16e2012-12-13 16:22:38 -0600332
Dean Troyer671c16e2012-12-13 16:22:38 -0600333 # Cinder
334 if [[ "$ENABLED_SERVICES" =~ "c-api" ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100335
Jamie Lennoxe8bc2b82015-02-10 20:38:56 +1100336 create_service_user "cinder"
Bartosz Górski0abde392014-02-28 14:15:19 +0100337
Dean Troyer671c16e2012-12-13 16:22:38 -0600338 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100339
Dean Troyere8a35ac2014-07-25 12:37:41 -0500340 local cinder_service=$(get_or_create_service "cinder" \
Bartosz Górski0abde392014-02-28 14:15:19 +0100341 "volume" "Cinder Volume Service")
Dean Troyere8a35ac2014-07-25 12:37:41 -0500342 get_or_create_endpoint $cinder_service "$REGION_NAME" \
Bartosz Górski0abde392014-02-28 14:15:19 +0100343 "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v1/\$(tenant_id)s" \
344 "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v1/\$(tenant_id)s" \
345 "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v1/\$(tenant_id)s"
346
Dean Troyere8a35ac2014-07-25 12:37:41 -0500347 local cinder_v2_service=$(get_or_create_service "cinderv2" \
Bartosz Górski0abde392014-02-28 14:15:19 +0100348 "volumev2" "Cinder Volume Service V2")
Dean Troyere8a35ac2014-07-25 12:37:41 -0500349 get_or_create_endpoint $cinder_v2_service "$REGION_NAME" \
Bartosz Górski0abde392014-02-28 14:15:19 +0100350 "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v2/\$(tenant_id)s" \
351 "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v2/\$(tenant_id)s" \
352 "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v2/\$(tenant_id)s"
Dean Troyer671c16e2012-12-13 16:22:38 -0600353 fi
354 fi
355}
356
Dean Troyerf03bafe2013-02-12 10:58:28 -0600357# create_cinder_cache_dir() - Part of the init_cinder() process
Ian Wienandaee18c72014-02-21 15:35:08 +1100358function create_cinder_cache_dir {
Dean Troyerf03bafe2013-02-12 10:58:28 -0600359 # Create cache dir
360 sudo mkdir -p $CINDER_AUTH_CACHE_DIR
361 sudo chown $STACK_USER $CINDER_AUTH_CACHE_DIR
362 rm -f $CINDER_AUTH_CACHE_DIR/*
363}
364
Dean Troyer67787e62012-05-02 11:48:15 -0500365# init_cinder() - Initialize database and volume group
Dean Troyere8a35ac2014-07-25 12:37:41 -0500366# Uses global ``NOVA_ENABLED_APIS``
Ian Wienandaee18c72014-02-21 15:35:08 +1100367function init_cinder {
Dean Troyer67787e62012-05-02 11:48:15 -0500368 # Force nova volumes off
369 NOVA_ENABLED_APIS=$(echo $NOVA_ENABLED_APIS | sed "s/osapi_volume,//")
370
Terry Wilson428af5a2012-11-01 16:12:39 -0400371 if is_service_enabled $DATABASE_BACKENDS; then
Dean Troyerf03bafe2013-02-12 10:58:28 -0600372 # (Re)create cinder database
Ihar Hrachyshka157c84b2014-10-06 13:29:39 +0200373 recreate_database cinder
Dean Troyer67787e62012-05-02 11:48:15 -0500374
Dean Troyerf03bafe2013-02-12 10:58:28 -0600375 # Migrate cinder database
Monty Taylor9fbeedd2012-08-17 12:52:27 -0400376 $CINDER_BIN_DIR/cinder-manage db sync
Dean Troyer67787e62012-05-02 11:48:15 -0500377 fi
378
Dean Troyer09718332014-07-03 10:46:57 -0500379 if is_service_enabled c-vol && [[ -n "$CINDER_ENABLED_BACKENDS" ]]; then
Dean Troyere8a35ac2014-07-25 12:37:41 -0500380 local be be_name be_type
John Griffith0b9e76f2015-01-21 13:46:59 -0700381 local has_lvm=0
Dean Troyer09718332014-07-03 10:46:57 -0500382 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
Dean Troyere8a35ac2014-07-25 12:37:41 -0500383 be_type=${be%%:*}
384 be_name=${be##*:}
John Griffith0b9e76f2015-01-21 13:46:59 -0700385
386 if [[ $be_type == 'lvm' ]]; then
387 has_lvm=1
388 fi
389
Dean Troyere8a35ac2014-07-25 12:37:41 -0500390 if type init_cinder_backend_${be_type} >/dev/null 2>&1; then
Maru Newbyc070a3d2015-01-27 17:44:44 +0000391 # Always init the default volume group for lvm.
392 if [[ "$be_type" == "lvm" ]]; then
393 init_default_lvm_volume_group
394 fi
Dean Troyere8a35ac2014-07-25 12:37:41 -0500395 init_cinder_backend_${be_type} ${be_name}
Vincent Untz0230aa82012-06-14 08:51:01 +0200396 fi
Dean Troyer09718332014-07-03 10:46:57 -0500397 done
Dean Troyer67787e62012-05-02 11:48:15 -0500398 fi
Dean Troyerbc071bc2012-10-01 14:06:44 -0500399
John Griffith0b9e76f2015-01-21 13:46:59 -0700400 # Keep it simple, set a marker if there's an LVM backend
401 # use the created VG's to setup lvm filters
402 if [[ $has_lvm == 1 ]]; then
403 # Order matters here, not only obviously to make
404 # sure the VG's are created, but also some distros
405 # do some customizations to lvm.conf on init, we
406 # want to make sure we copy those over
407 sudo cp /etc/lvm/lvm.conf /etc/cinder/lvm.conf
408 configure_cinder_backend_conf_lvm
409 fi
410
Dean Troyer09718332014-07-03 10:46:57 -0500411 mkdir -p $CINDER_STATE_PATH/volumes
Dean Troyerf03bafe2013-02-12 10:58:28 -0600412 create_cinder_cache_dir
Dean Troyer67787e62012-05-02 11:48:15 -0500413}
414
415# install_cinder() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100416function install_cinder {
Dean Troyer67787e62012-05-02 11:48:15 -0500417 git_clone $CINDER_REPO $CINDER_DIR $CINDER_BRANCH
Sean Dague4bf9d7a2013-04-01 16:41:39 -0400418 setup_develop $CINDER_DIR
Dean Troyer253a1a32013-04-01 18:23:22 -0500419}
Sean Dague4bf9d7a2013-04-01 16:41:39 -0400420
Dean Troyer253a1a32013-04-01 18:23:22 -0500421# install_cinderclient() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100422function install_cinderclient {
Sean Daguee08ab102014-11-13 17:09:28 -0500423 if use_library_from_git "python-cinderclient"; then
424 git_clone_by_name "python-cinderclient"
425 setup_dev_lib "python-cinderclient"
426 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-cinderclient"]}/tools/,/etc/bash_completion.d/}cinder.bash_completion
Sean Dague5cb19062014-11-01 01:37:45 +0100427 fi
Dean Troyer67787e62012-05-02 11:48:15 -0500428}
429
Steve Baker18225d92013-04-14 12:48:41 -0700430# apply config.d approach for cinder volumes directory
Ian Wienandaee18c72014-02-21 15:35:08 +1100431function _configure_tgt_for_config_d {
Steve Baker18225d92013-04-14 12:48:41 -0700432 if [[ ! -d /etc/tgt/stack.d/ ]]; then
433 sudo ln -sf $CINDER_STATE_PATH/volumes /etc/tgt/stack.d
434 echo "include /etc/tgt/stack.d/*" | sudo tee -a /etc/tgt/targets.conf
Mate Lakata39caac2012-09-03 15:45:53 +0100435 fi
436}
437
Dean Troyer67787e62012-05-02 11:48:15 -0500438# start_cinder() - Start running processes, including screen
Ian Wienandaee18c72014-02-21 15:35:08 +1100439function start_cinder {
Rob Crittenden18d47782014-03-19 17:47:42 -0400440 local service_port=$CINDER_SERVICE_PORT
441 local service_protocol=$CINDER_SERVICE_PROTOCOL
442 if is_service_enabled tls-proxy; then
443 service_port=$CINDER_SERVICE_PORT_INT
444 service_protocol="http"
445 fi
Dean Troyer67787e62012-05-02 11:48:15 -0500446 if is_service_enabled c-vol; then
Steve Baker18225d92013-04-14 12:48:41 -0700447 # Delete any old stack.conf
448 sudo rm -f /etc/tgt/conf.d/stack.conf
Attila Fazekasb79574b2012-12-01 10:42:46 +0100449 _configure_tgt_for_config_d
Vincent Untzc18b9652012-12-04 12:36:34 +0100450 if is_ubuntu; then
Sean Dagued5b52ca2014-03-04 09:23:07 -0500451 sudo service tgt restart
Attila Fazekasec89fa02015-01-29 11:16:00 +0100452 elif is_fedora || is_suse; then
Vincent Untz00011c02012-12-06 09:56:32 +0100453 restart_service tgtd
454 else
455 # note for other distros: unstack.sh also uses the tgt/tgtd service
456 # name, and would need to be adjusted too
457 exit_distro_not_supported "restarting tgt"
Dean Troyer67787e62012-05-02 11:48:15 -0500458 fi
Giulio Fidente384454d2013-09-27 13:17:34 +0200459 # NOTE(gfidente): ensure tgtd is running in debug mode
460 sudo tgtadm --mode system --op update --name debug --value on
Dean Troyer67787e62012-05-02 11:48:15 -0500461 fi
462
Dean Troyer3159a822014-08-27 14:13:58 -0500463 run_process c-api "$CINDER_BIN_DIR/cinder-api --config-file $CINDER_CONF"
Dean Troyer09718332014-07-03 10:46:57 -0500464 echo "Waiting for Cinder API to start..."
Rob Crittenden18d47782014-03-19 17:47:42 -0400465 if ! wait_for_service $SERVICE_TIMEOUT $service_protocol://$CINDER_SERVICE_HOST:$service_port; then
Dean Troyer09718332014-07-03 10:46:57 -0500466 die $LINENO "c-api did not start"
467 fi
468
Dean Troyer3159a822014-08-27 14:13:58 -0500469 run_process c-sch "$CINDER_BIN_DIR/cinder-scheduler --config-file $CINDER_CONF"
470 run_process c-bak "$CINDER_BIN_DIR/cinder-backup --config-file $CINDER_CONF"
471 run_process c-vol "$CINDER_BIN_DIR/cinder-volume --config-file $CINDER_CONF"
John Griffithe6d4fe52013-07-15 17:35:54 -0600472
473 # NOTE(jdg): For cinder, startup order matters. To ensure that repor_capabilities is received
474 # by the scheduler start the cinder-volume service last (or restart it) after the scheduler
475 # has started. This is a quick fix for lp bug/1189595
Dean Troyer560346b2012-12-13 17:05:24 -0600476
477 # Start proxies if enabled
478 if is_service_enabled c-api && is_service_enabled tls-proxy; then
479 start_tls_proxy '*' $CINDER_SERVICE_PORT $CINDER_SERVICE_HOST $CINDER_SERVICE_PORT_INT &
480 fi
Dean Troyer67787e62012-05-02 11:48:15 -0500481}
482
Dean Troyer699a29f2012-09-10 14:10:27 -0500483# stop_cinder() - Stop running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100484function stop_cinder {
Dean Troyer699a29f2012-09-10 14:10:27 -0500485 # Kill the cinder screen windows
Dean Troyere8a35ac2014-07-25 12:37:41 -0500486 local serv
Stephen Mulcahy67068ef2013-02-21 11:20:58 +0000487 for serv in c-api c-bak c-sch c-vol; do
Chris Dent2f27a0e2014-09-09 13:46:02 +0100488 stop_process $serv
Dean Troyer699a29f2012-09-10 14:10:27 -0500489 done
Dean Troyer67787e62012-05-02 11:48:15 -0500490
491 if is_service_enabled c-vol; then
Vincent Untz90dd96d2012-12-13 08:59:57 +0100492 if is_ubuntu; then
493 stop_service tgt
494 else
495 stop_service tgtd
496 fi
Dean Troyer67787e62012-05-02 11:48:15 -0500497 fi
498}
Dean Troyer7903b792012-09-13 17:16:12 -0500499
Dean Troyer09718332014-07-03 10:46:57 -0500500# create_volume_types() - Create Cinder's configured volume types
501function create_volume_types {
502 # Create volume types
503 if is_service_enabled c-api && [[ -n "$CINDER_ENABLED_BACKENDS" ]]; then
Dean Troyere8a35ac2014-07-25 12:37:41 -0500504 local be be_name be_type
Dean Troyer09718332014-07-03 10:46:57 -0500505 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
Dean Troyere8a35ac2014-07-25 12:37:41 -0500506 be_type=${be%%:*}
507 be_name=${be##*:}
508 # openstack volume type create --property volume_backend_name="${be_type}" ${be_name}
509 cinder type-create ${be_name} && \
510 cinder type-key ${be_name} set volume_backend_name="${be_name}"
Dean Troyer09718332014-07-03 10:46:57 -0500511 done
512 fi
513}
514
515# Compatibility for Grenade
516
517function create_cinder_volume_group {
518 # During a transition period Grenade needs to have this function defined
519 # It is effectively a no-op in the Grenade 'target' use case
520 :
521}
522
Dean Troyercc6b4432013-04-08 15:38:03 -0500523
Dean Troyer7903b792012-09-13 17:16:12 -0500524# Restore xtrace
525$XTRACE
Sean Dague584d90e2013-03-29 14:34:53 -0400526
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100527# Tell emacs to use shell-script-mode
528## Local variables:
529## mode: shell-script
530## End: