blob: 3fb61b0268b933df9e78633a0703c237e16e23b3 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Dean Troyer73f6f252012-09-17 11:22:21 -05003# lib/glance
Dean Troyer6d04fd72012-12-21 11:03:37 -06004# Functions to control the configuration and operation of the **Glance** service
Dean Troyer73f6f252012-09-17 11:22:21 -05005
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - ``functions`` file
9# - ``DEST``, ``DATA_DIR``, ``STACK_USER`` must be defined
10# - ``SERVICE_{TENANT_NAME|PASSWORD}`` must be defined
11# - ``SERVICE_HOST``
12# - ``KEYSTONE_TOKEN_FORMAT`` must be defined
Dean Troyer73f6f252012-09-17 11:22:21 -050013
14# ``stack.sh`` calls the entry points in this order:
15#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010016# - install_glance
17# - configure_glance
18# - init_glance
19# - start_glance
20# - stop_glance
21# - cleanup_glance
Dean Troyer73f6f252012-09-17 11:22:21 -050022
23# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110024_XTRACE_GLANCE=$(set +o | grep xtrace)
Dean Troyer73f6f252012-09-17 11:22:21 -050025set +o xtrace
26
27
28# Defaults
29# --------
30
Dean Troyer73f6f252012-09-17 11:22:21 -050031# Set up default directories
Sean Daguee08ab102014-11-13 17:09:28 -050032GITDIR["python-glanceclient"]=$DEST/python-glanceclient
Sean Dagueaecd1892014-11-19 15:19:51 -050033GITDIR["glance_store"]=$DEST/glance_store
Dean Troyer73f6f252012-09-17 11:22:21 -050034GLANCE_DIR=$DEST/glance
Dean Troyeraed60792015-02-17 15:38:16 -060035
36# Glance virtual environment
37if [[ ${USE_VENV} = True ]]; then
38 PROJECT_VENV["glance"]=${GLANCE_DIR}.venv
39 GLANCE_BIN_DIR=${PROJECT_VENV["glance"]}/bin
40else
41 GLANCE_BIN_DIR=$(get_python_exec_prefix)
42fi
43
Abhishek Kekane057aaa62020-07-29 07:37:16 +000044# Cinder for Glance
45USE_CINDER_FOR_GLANCE=$(trueorfalse False USE_CINDER_FOR_GLANCE)
46# GLANCE_CINDER_DEFAULT_BACKEND should be one of the values
47# from CINDER_ENABLED_BACKENDS
48GLANCE_CINDER_DEFAULT_BACKEND=${GLANCE_CINDER_DEFAULT_BACKEND:-lvmdriver-1}
49GLANCE_STORE_ROOTWRAP_BASE_DIR=/usr/local/etc/glance
50# NOTE (abhishekk): For opensuse data files are stored in different directory
51if is_opensuse; then
52 GLANCE_STORE_ROOTWRAP_BASE_DIR=/usr/etc/glance
53fi
Abhishek Kekane6f91da92019-10-17 09:02:41 +000054# Glance multi-store configuration
55# Boolean flag to enable multiple store configuration for glance
56GLANCE_ENABLE_MULTIPLE_STORES=$(trueorfalse False GLANCE_ENABLE_MULTIPLE_STORES)
57
58# Comma separated list for configuring multiple file stores of glance,
59# for example; GLANCE_MULTIPLE_FILE_STORES = fast,cheap,slow
60GLANCE_MULTIPLE_FILE_STORES=${GLANCE_MULTIPLE_FILE_STORES:-fast}
61
62# Default store/backend for glance, must be one of the store specified
63# in GLANCE_MULTIPLE_FILE_STORES option.
64GLANCE_DEFAULT_BACKEND=${GLANCE_DEFAULT_BACKEND:-fast}
65
Dean Troyer73f6f252012-09-17 11:22:21 -050066GLANCE_CACHE_DIR=${GLANCE_CACHE_DIR:=$DATA_DIR/glance/cache}
Abhishek Kekane6f91da92019-10-17 09:02:41 +000067
Dan Smith09eea0b2020-07-09 08:31:51 -070068# Full Glance functionality requires running in standalone mode. If we are
69# not in uwsgi mode, then we are standalone, otherwise allow separate control.
70if [[ "$WSGI_MODE" != "uwsgi" ]]; then
71 GLANCE_STANDALONE=True
72fi
Dan Smith155109d2020-07-24 06:49:01 -070073GLANCE_STANDALONE=${GLANCE_STANDALONE:-False}
Dan Smith09eea0b2020-07-09 08:31:51 -070074
Abhishek Kekane6f91da92019-10-17 09:02:41 +000075# File path for each store specified in GLANCE_MULTIPLE_FILE_STORES, the store
76# identifier will be appended to this path at runtime. If GLANCE_MULTIPLE_FILE_STORES
77# has fast,cheap specified then filepath will be generated like $DATA_DIR/glance/fast
78# and $DATA_DIR/glance/cheap.
79GLANCE_MULTISTORE_FILE_IMAGE_DIR=${GLANCE_MULTISTORE_FILE_IMAGE_DIR:=$DATA_DIR/glance}
Dean Troyer73f6f252012-09-17 11:22:21 -050080GLANCE_IMAGE_DIR=${GLANCE_IMAGE_DIR:=$DATA_DIR/glance/images}
Abhishek Kekane057aaa62020-07-29 07:37:16 +000081GLANCE_NFS_MOUNTPOINT=$GLANCE_IMAGE_DIR/mnt
Matthew Treinishfa898f52017-04-25 01:30:10 -040082GLANCE_LOCK_DIR=${GLANCE_LOCK_DIR:=$DATA_DIR/glance/locks}
Abhishek Kekane6f91da92019-10-17 09:02:41 +000083GLANCE_STAGING_DIR=${GLANCE_MULTISTORE_FILE_IMAGE_DIR:=$DATA_DIR/os_glance_staging_store}
84GLANCE_TASKS_DIR=${GLANCE_MULTISTORE_FILE_IMAGE_DIR:=$DATA_DIR/os_glance_tasks_store}
Dean Troyer73f6f252012-09-17 11:22:21 -050085
Abhishek Kekane73ad9762020-06-16 15:20:48 +000086GLANCE_USE_IMPORT_WORKFLOW=$(trueorfalse False GLANCE_USE_IMPORT_WORKFLOW)
87
Dean Troyer73f6f252012-09-17 11:22:21 -050088GLANCE_CONF_DIR=${GLANCE_CONF_DIR:-/etc/glance}
Pawel Koniszewski76e39252014-09-06 07:06:46 -040089GLANCE_METADEF_DIR=$GLANCE_CONF_DIR/metadefs
Dean Troyer73f6f252012-09-17 11:22:21 -050090GLANCE_API_CONF=$GLANCE_CONF_DIR/glance-api.conf
Dean Troyer73f6f252012-09-17 11:22:21 -050091GLANCE_API_PASTE_INI=$GLANCE_CONF_DIR/glance-api-paste.ini
92GLANCE_CACHE_CONF=$GLANCE_CONF_DIR/glance-cache.conf
Dirk Mueller46d1ba62013-09-09 14:31:37 +020093GLANCE_SCHEMA_JSON=$GLANCE_CONF_DIR/schema-image.json
Jamie Lennoxf4f01c62015-06-19 02:52:41 +000094GLANCE_SWIFT_STORE_CONF=$GLANCE_CONF_DIR/glance-swift-store.conf
bhagyashris6a25fb92017-12-14 13:23:41 +053095GLANCE_IMAGE_IMPORT_CONF=$GLANCE_CONF_DIR/glance-image-import.conf
Dean Troyer73f6f252012-09-17 11:22:21 -050096
Sean Daguef3b2f4c2017-04-13 10:11:48 -040097if is_service_enabled tls-proxy; then
Rob Crittenden18d47782014-03-19 17:47:42 -040098 GLANCE_SERVICE_PROTOCOL="https"
99fi
100
Dean Troyer73f6f252012-09-17 11:22:21 -0500101# Glance connection info. Note the port must be specified.
Rob Crittenden18d47782014-03-19 17:47:42 -0400102GLANCE_SERVICE_HOST=${GLANCE_SERVICE_HOST:-$SERVICE_HOST}
Jens Harbottdc7b4292017-09-19 10:52:32 +0000103GLANCE_SERVICE_LISTEN_ADDRESS=${GLANCE_SERVICE_LISTEN_ADDRESS:-$(ipv6_unquote $SERVICE_LISTEN_ADDRESS)}
Rob Crittenden18d47782014-03-19 17:47:42 -0400104GLANCE_SERVICE_PORT=${GLANCE_SERVICE_PORT:-9292}
105GLANCE_SERVICE_PORT_INT=${GLANCE_SERVICE_PORT_INT:-19292}
106GLANCE_HOSTPORT=${GLANCE_HOSTPORT:-$GLANCE_SERVICE_HOST:$GLANCE_SERVICE_PORT}
107GLANCE_SERVICE_PROTOCOL=${GLANCE_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
Matthew Treinish1fa65362017-06-23 22:32:37 +0000108GLANCE_UWSGI=$GLANCE_BIN_DIR/glance-wsgi-api
Jeremy Liu2f7df512017-07-12 10:09:48 +0800109GLANCE_UWSGI_CONF=$GLANCE_CONF_DIR/glance-uwsgi.ini
Matthew Treinish1fa65362017-06-23 22:32:37 +0000110# If wsgi mode is uwsgi run glance under uwsgi, else default to eventlet
111# TODO(mtreinish): Remove the eventlet path here and in all the similar
112# conditionals below after the Pike release
113if [[ "$WSGI_MODE" == "uwsgi" ]]; then
114 GLANCE_URL="$GLANCE_SERVICE_PROTOCOL://$GLANCE_SERVICE_HOST/image"
115else
116 GLANCE_URL="$GLANCE_SERVICE_PROTOCOL://$GLANCE_HOSTPORT"
117fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500118
Dean Troyercc6b4432013-04-08 15:38:03 -0500119# Functions
120# ---------
Dean Troyer73f6f252012-09-17 11:22:21 -0500121
Dean Troyere4fa7212014-01-15 15:04:49 -0600122# Test if any Glance services are enabled
123# is_glance_enabled
124function is_glance_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700125 [[ ,${DISABLED_SERVICES} =~ ,"glance" ]] && return 1
Dean Troyere4fa7212014-01-15 15:04:49 -0600126 [[ ,${ENABLED_SERVICES} =~ ,"g-" ]] && return 0
127 return 1
128}
129
Dean Troyer73f6f252012-09-17 11:22:21 -0500130# cleanup_glance() - 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_glance {
Dan Smith61b4fbf2021-03-09 08:05:37 -0800133 # delete image files (glance) and all of the glance-remote temporary
134 # storage
135 sudo rm -rf $GLANCE_CACHE_DIR $GLANCE_IMAGE_DIR "${DATA_DIR}/glance-remote"
Abhishek Kekane6f91da92019-10-17 09:02:41 +0000136
137 # Cleanup multiple stores directories
138 if [[ "$GLANCE_ENABLE_MULTIPLE_STORES" == "True" ]]; then
139 local store file_dir
140 for store in $(echo $GLANCE_MULTIPLE_FILE_STORES | tr "," "\n"); do
141 file_dir="${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/${store}/"
142 sudo rm -rf $file_dir
143 done
144
145 # Cleanup reserved stores directories
146 sudo rm -rf $GLANCE_STAGING_DIR $GLANCE_TASKS_DIR
147 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500148}
149
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000150# Set multiple cinder store related config options for each of the cinder store
151#
152function configure_multiple_cinder_stores {
153
154 local be be_name be_type enabled_backends
155 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
156 be_type=${be%%:*}
157 be_name=${be##*:}
158 enabled_backends+="${be_name}:cinder,"
159
160 set_common_cinder_store_params $be_name
161 iniset $GLANCE_API_CONF $be_name cinder_volume_type ${be_name}
162 if [[ "$be_type" == "nfs" ]]; then
163 mkdir -p "$GLANCE_NFS_MOUNTPOINT"
164 iniset $GLANCE_API_CONF $be_name cinder_mount_point_base "$GLANCE_NFS_MOUNTPOINT"
165 fi
166 done
167 iniset $GLANCE_API_CONF DEFAULT enabled_backends ${enabled_backends::-1}
168 iniset $GLANCE_API_CONF glance_store default_backend $GLANCE_CINDER_DEFAULT_BACKEND
169}
170
171# Set common cinder store options to given config section
172#
173# Arguments:
174# config_section
175#
176function set_common_cinder_store_params {
177 local config_section="$1"
178 iniset $GLANCE_API_CONF $config_section cinder_store_auth_address $KEYSTONE_SERVICE_URI_V3
179 iniset $GLANCE_API_CONF $config_section cinder_store_user_name glance
180 iniset $GLANCE_API_CONF $config_section cinder_store_password $SERVICE_PASSWORD
181 iniset $GLANCE_API_CONF $config_section cinder_store_project_name $SERVICE_PROJECT_NAME
182}
183
184# Configure multiple file stores options for each file store
185#
186# Arguments:
187#
188function configure_multiple_file_stores {
189 local store enabled_backends
190 enabled_backends=""
191 for store in $(echo $GLANCE_MULTIPLE_FILE_STORES | tr "," "\n"); do
192 enabled_backends+="${store}:file,"
193 done
194 iniset $GLANCE_API_CONF DEFAULT enabled_backends ${enabled_backends::-1}
195
196 # Glance multiple store Store specific configs
197 iniset $GLANCE_API_CONF glance_store default_backend $GLANCE_DEFAULT_BACKEND
198 local store
199 for store in $(echo $glance_multiple_file_stores | tr "," "\n"); do
200 iniset $GLANCE_API_CONF $store filesystem_store_datadir "${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/${store}/"
201 done
202}
203
204# Set reserved stores for glance
205function configure_reserved_stores {
206 iniset $GLANCE_API_CONF os_glance_staging_store filesystem_store_datadir "${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/os_glance_staging_store/"
207 iniset $GLANCE_API_CONF os_glance_tasks_store filesystem_store_datadir "${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/os_glance_tasks_store/"
208}
209
210# Copy rootwrap file from glance_store/etc/glance to /etc/glance
211#
212# Arguments:
213# source_path Source path to copy rootwrap files from
214#
215function copy_rootwrap {
216 local source_path="$1"
217 # Make glance configuration directory if it is not exists
218 sudo install -d -o $STACK_USER $GLANCE_CONF_DIR
219 cp -r $source_path/rootwrap.* $GLANCE_CONF_DIR/
220}
221
222# Set glance_store related config options
223#
224# Arguments:
225# USE_CINDER_FOR_GLANCE
226# GLANCE_ENABLE_MULTIPLE_STORES
227#
228function configure_glance_store {
229 local use_cinder_for_glance="$1"
230 local glance_enable_multiple_stores="$2"
231 local be
232
233 if [[ "$glance_enable_multiple_stores" == "False" ]]; then
234 # Configure traditional glance_store
235 if [[ "$use_cinder_for_glance" == "True" ]]; then
236 # set common glance_store parameters
237 iniset $GLANCE_API_CONF glance_store stores "cinder,file,http"
238 iniset $GLANCE_API_CONF glance_store default_store cinder
239
240 # set cinder related store parameters
241 set_common_cinder_store_params glance_store
242 # set nfs mount_point dir
243 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
244 local be_name=${be##*:}
245 if [[ "$be_name" == "nfs" ]]; then
246 mkdir -p $GLANCE_NFS_MOUNTPOINT
247 iniset $GLANCE_API_CONF glance_store cinder_mount_point_base $GLANCE_NFS_MOUNTPOINT
248 fi
249 done
250 fi
251 # Store specific configs
252 iniset $GLANCE_API_CONF glance_store filesystem_store_datadir $GLANCE_IMAGE_DIR/
253 else
254 if [[ "$use_cinder_for_glance" == "True" ]]; then
255 # Configure multiple cinder stores for glance
256 configure_multiple_cinder_stores
257 else
258 # Configure multiple file stores for glance
259 configure_multiple_file_stores
260 fi
261 # Configure reserved stores
262 configure_reserved_stores
263 fi
264}
265
Dean Troyer73f6f252012-09-17 11:22:21 -0500266# configure_glance() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +1100267function configure_glance {
Dean Troyer8421c2b2015-03-16 13:52:19 -0500268 sudo install -d -o $STACK_USER $GLANCE_CONF_DIR $GLANCE_METADEF_DIR
Pawel Koniszewski76e39252014-09-06 07:06:46 -0400269
Abhishek Kekane0ae57872020-02-17 06:11:15 +0000270 # Set non-default configuration options for the API server
Ian Wienandada886d2015-10-07 14:06:26 +1100271 local dburl
272 dburl=`database_connection_url glance`
Dean Troyer73f6f252012-09-17 11:22:21 -0500273
Ben Nemec03997942013-08-10 09:56:16 -0500274 iniset $GLANCE_API_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Jordan Pittierceca15d2015-06-19 11:46:36 +0200275 iniset $GLANCE_API_CONF database connection $dburl
Dean Troyer73f6f252012-09-17 11:22:21 -0500276 iniset $GLANCE_API_CONF DEFAULT use_syslog $SYSLOG
Dean Troyer73f6f252012-09-17 11:22:21 -0500277 iniset $GLANCE_API_CONF DEFAULT image_cache_dir $GLANCE_CACHE_DIR/
ZhongShengping5fe60c12019-04-30 10:12:51 +0800278 iniset $GLANCE_API_CONF oslo_concurrency lock_path $GLANCE_LOCK_DIR
Dean Troyer73f6f252012-09-17 11:22:21 -0500279 iniset $GLANCE_API_CONF paste_deploy flavor keystone+cachemanagement
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100280 configure_keystone_authtoken_middleware $GLANCE_API_CONF glance
Matt Riedemann45da7772017-03-05 13:07:39 -0500281 iniset $GLANCE_API_CONF oslo_messaging_notifications driver messagingv2
Brant Knudson2dd110c2015-03-14 12:39:14 -0500282 iniset_rpc_backend glance $GLANCE_API_CONF
Mate Lakatbc2ef922013-08-15 18:06:59 +0100283 if [ "$VIRT_DRIVER" = 'xenserver' ]; then
284 iniset $GLANCE_API_CONF DEFAULT container_formats "ami,ari,aki,bare,ovf,tgz"
285 iniset $GLANCE_API_CONF DEFAULT disk_formats "ami,ari,aki,vhd,raw,iso"
286 fi
Evgeny Antyshev19354582014-11-24 14:20:35 +0400287 if [ "$VIRT_DRIVER" = 'libvirt' ] && [ "$LIBVIRT_TYPE" = 'parallels' ]; then
288 iniset $GLANCE_API_CONF DEFAULT disk_formats "ami,ari,aki,vhd,vmdk,raw,qcow2,vdi,iso,ploop"
289 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500290
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000291 # Configure glance_store
292 configure_glance_store $USE_CINDER_FOR_GLANCE $GLANCE_ENABLE_MULTIPLE_STORES
Flavio Percocofe65e2d2014-09-03 11:51:00 +0200293
Timur Sufieva44dd9a2016-04-29 14:08:51 +0300294 # CORS feature support - to allow calls from Horizon by default
295 if [ -n "$GLANCE_CORS_ALLOWED_ORIGIN" ]; then
296 iniset $GLANCE_API_CONF cors allowed_origin "$GLANCE_CORS_ALLOWED_ORIGIN"
297 else
298 iniset $GLANCE_API_CONF cors allowed_origin "http://$SERVICE_HOST"
299 fi
300
Abhishek Kekane6f91da92019-10-17 09:02:41 +0000301 # No multiple stores for swift yet
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000302 if [[ "$GLANCE_ENABLE_MULTIPLE_STORES" == "False" ]]; then
303 # Store the images in swift if enabled.
304 if is_service_enabled s-proxy; then
305 iniset $GLANCE_API_CONF glance_store default_store swift
306 iniset $GLANCE_API_CONF glance_store swift_store_create_container_on_put True
Jamie Lennoxf4f01c62015-06-19 02:52:41 +0000307
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000308 iniset $GLANCE_API_CONF glance_store swift_store_config_file $GLANCE_SWIFT_STORE_CONF
309 iniset $GLANCE_API_CONF glance_store default_swift_reference ref1
310 iniset $GLANCE_API_CONF glance_store stores "file, http, swift"
311 if is_service_enabled tls-proxy; then
312 iniset $GLANCE_API_CONF glance_store swift_store_cacert $SSL_BUNDLE_FILE
313 fi
314 iniset $GLANCE_API_CONF DEFAULT graceful_shutdown_timeout "$SERVICE_GRACEFUL_SHUTDOWN_TIMEOUT"
315
316 iniset $GLANCE_SWIFT_STORE_CONF ref1 user $SERVICE_PROJECT_NAME:glance-swift
317
318 iniset $GLANCE_SWIFT_STORE_CONF ref1 key $SERVICE_PASSWORD
319 iniset $GLANCE_SWIFT_STORE_CONF ref1 auth_address $KEYSTONE_SERVICE_URI/v3
320 iniset $GLANCE_SWIFT_STORE_CONF ref1 auth_version 3
Vladislav Kuzmin9cbd02d2020-05-20 12:14:04 +0400321 fi
Dean Troyerc77b9322013-03-29 10:51:01 -0500322 fi
323
Matthew Treinish1fa65362017-06-23 22:32:37 +0000324 # We need to tell glance what it's public endpoint is so that the version
325 # discovery document will be correct
326 iniset $GLANCE_API_CONF DEFAULT public_endpoint $GLANCE_URL
327
Rob Crittenden18d47782014-03-19 17:47:42 -0400328 if is_service_enabled tls-proxy; then
329 iniset $GLANCE_API_CONF DEFAULT bind_port $GLANCE_SERVICE_PORT_INT
Jens Harbott32c00892019-04-10 10:33:39 +0000330 iniset $GLANCE_API_CONF keystone_authtoken identity_uri $KEYSTONE_SERVICE_URI
Rob Crittenden18d47782014-03-19 17:47:42 -0400331 fi
332
Louis Taylor701276a2015-02-11 19:34:09 +0000333 # Format logging
Sean Dague9751be62016-04-05 12:08:57 -0400334 setup_logging $GLANCE_API_CONF
Louis Taylor701276a2015-02-11 19:34:09 +0000335
Dean Troyer73f6f252012-09-17 11:22:21 -0500336 cp -p $GLANCE_DIR/etc/glance-api-paste.ini $GLANCE_API_PASTE_INI
337
Brian Rosmaita44a19b42017-12-11 18:07:50 -0500338 # Set non-default configuration options for the glance-cache
Ben Nemec03997942013-08-10 09:56:16 -0500339 iniset $GLANCE_CACHE_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Dean Troyer73f6f252012-09-17 11:22:21 -0500340 iniset $GLANCE_CACHE_CONF DEFAULT use_syslog $SYSLOG
Dean Troyer73f6f252012-09-17 11:22:21 -0500341 iniset $GLANCE_CACHE_CONF DEFAULT image_cache_dir $GLANCE_CACHE_DIR/
Jens Harbott32c00892019-04-10 10:33:39 +0000342 iniset $GLANCE_CACHE_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Sean Dague7580a0c2016-02-17 06:23:36 -0500343 iniset $GLANCE_CACHE_CONF DEFAULT admin_tenant_name $SERVICE_PROJECT_NAME
Dean Troyer73f6f252012-09-17 11:22:21 -0500344 iniset $GLANCE_CACHE_CONF DEFAULT admin_user glance
Dean Troyer73f6f252012-09-17 11:22:21 -0500345 iniset $GLANCE_CACHE_CONF DEFAULT admin_password $SERVICE_PASSWORD
346
Flavio Percocofe65e2d2014-09-03 11:51:00 +0200347 # Store specific confs
Flavio Percocofe65e2d2014-09-03 11:51:00 +0200348 iniset $GLANCE_CACHE_CONF glance_store filesystem_store_datadir $GLANCE_IMAGE_DIR/
349
bhagyashris6a25fb92017-12-14 13:23:41 +0530350 # Set default configuration options for the glance-image-import
351 iniset $GLANCE_IMAGE_IMPORT_CONF image_import_opts image_import_plugins []
352 iniset $GLANCE_IMAGE_IMPORT_CONF inject_metadata_properties ignore_user_roles admin
353 iniset $GLANCE_IMAGE_IMPORT_CONF inject_metadata_properties inject
354
Dirk Mueller46d1ba62013-09-09 14:31:37 +0200355 cp -p $GLANCE_DIR/etc/schema-image.json $GLANCE_SCHEMA_JSON
Pawel Koniszewski76e39252014-09-06 07:06:46 -0400356
357 cp -p $GLANCE_DIR/etc/metadefs/*.json $GLANCE_METADEF_DIR
Rob Crittenden18d47782014-03-19 17:47:42 -0400358
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400359 if is_service_enabled tls-proxy; then
Rob Crittenden18d47782014-03-19 17:47:42 -0400360 CINDER_SERVICE_HOST=${CINDER_SERVICE_HOST:-$SERVICE_HOST}
361 CINDER_SERVICE_PORT=${CINDER_SERVICE_PORT:-8776}
362
Brian Rosmaitab43810a2019-02-07 16:46:49 -0500363 iniset $GLANCE_API_CONF DEFAULT cinder_endpoint_template "https://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v3/%(project_id)s"
364 iniset $GLANCE_CACHE_CONF DEFAULT cinder_endpoint_template "https://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v3/%(project_id)s"
Rob Crittenden18d47782014-03-19 17:47:42 -0400365 fi
Matthew Treinish1fa65362017-06-23 22:32:37 +0000366
Dan Smith09eea0b2020-07-09 08:31:51 -0700367 if [[ "$GLANCE_STANDALONE" == False ]]; then
Matthew Treinish1fa65362017-06-23 22:32:37 +0000368 write_local_uwsgi_http_config "$GLANCE_UWSGI_CONF" "$GLANCE_UWSGI" "/image"
Dan Smith802259a2021-01-12 22:55:57 +0000369 # Grab our uwsgi listen address and use that to fill out our
370 # worker_self_reference_url config
371 iniset $GLANCE_API_CONF DEFAULT worker_self_reference_url \
372 $(awk '-F= ' '/^http-socket/ { print "http://"$2}' \
373 $GLANCE_UWSGI_CONF)
Matthew Treinish1fa65362017-06-23 22:32:37 +0000374 else
Dan Smith09eea0b2020-07-09 08:31:51 -0700375 write_local_proxy_http_config glance "http://$GLANCE_SERVICE_HOST:$GLANCE_SERVICE_PORT_INT" "/image"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000376 iniset $GLANCE_API_CONF DEFAULT bind_host $GLANCE_SERVICE_LISTEN_ADDRESS
Dan Smithfcbf3e92020-07-17 10:14:14 -0700377 iniset $GLANCE_API_CONF DEFAULT bind_port $GLANCE_SERVICE_PORT_INT
Matthew Treinish1fa65362017-06-23 22:32:37 +0000378 iniset $GLANCE_API_CONF DEFAULT workers "$API_WORKERS"
379 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500380}
381
Dean Troyer42a59c22014-03-03 14:31:29 -0600382# create_glance_accounts() - Set up common required glance accounts
383
Wayne Okumadd622932015-03-31 00:28:39 -0700384# Project User Roles
385# ---------------------------------------------------------------------
Sean Dague7580a0c2016-02-17 06:23:36 -0500386# SERVICE_PROJECT_NAME glance service
387# SERVICE_PROJECT_NAME glance-swift ResellerAdmin (if Swift is enabled)
388# SERVICE_PROJECT_NAME glance-search search (if Search is enabled)
Dean Troyer42a59c22014-03-03 14:31:29 -0600389
390function create_glance_accounts {
391 if is_service_enabled g-api; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100392
Jamie Lennox85ff5322015-01-28 14:28:01 +1000393 create_service_user "glance"
Bartosz Górski0abde392014-02-28 14:15:19 +0100394
Dean Troyer42a59c22014-03-03 14:31:29 -0600395 # required for swift access
396 if is_service_enabled s-proxy; then
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600397 create_service_user "glance-swift" "ResellerAdmin"
Dean Troyer42a59c22014-03-03 14:31:29 -0600398 fi
Bartosz Górski0abde392014-02-28 14:15:19 +0100399
Sean Dague985e9582016-02-10 07:25:24 -0500400 get_or_create_service "glance" "image" "Glance Image Service"
Matt Riedemannae4578b2016-04-23 01:45:40 +0000401 get_or_create_endpoint \
Sean Dague985e9582016-02-10 07:25:24 -0500402 "image" \
403 "$REGION_NAME" \
Matthew Treinish1fa65362017-06-23 22:32:37 +0000404 "$GLANCE_URL"
Jens Rosenboom890342e2016-09-13 22:41:41 +0200405
406 # Note(frickler): Crude workaround for https://bugs.launchpad.net/glance-store/+bug/1620999
407 service_domain_id=$(get_or_create_domain $SERVICE_DOMAIN_NAME)
408 iniset $GLANCE_SWIFT_STORE_CONF ref1 project_domain_id $service_domain_id
409 iniset $GLANCE_SWIFT_STORE_CONF ref1 user_domain_id $service_domain_id
Dean Troyer42a59c22014-03-03 14:31:29 -0600410 fi
411}
412
Dean Troyer73f6f252012-09-17 11:22:21 -0500413# init_glance() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +1100414function init_glance {
Dean Troyer73f6f252012-09-17 11:22:21 -0500415 # Delete existing images
416 rm -rf $GLANCE_IMAGE_DIR
417 mkdir -p $GLANCE_IMAGE_DIR
418
Radosław Piliszek09e860f2020-01-19 12:41:14 +0100419 # (Re)create glance database
420 recreate_database glance
Dean Troyer73f6f252012-09-17 11:22:21 -0500421
Radosław Piliszek09e860f2020-01-19 12:41:14 +0100422 time_start "dbsync"
423 # Migrate glance database
424 $GLANCE_BIN_DIR/glance-manage --config-file $GLANCE_CONF_DIR/glance-api.conf db_sync
Dean Troyerbc071bc2012-10-01 14:06:44 -0500425
Radosław Piliszek09e860f2020-01-19 12:41:14 +0100426 # Load metadata definitions
427 $GLANCE_BIN_DIR/glance-manage --config-file $GLANCE_CONF_DIR/glance-api.conf db_load_metadefs
428 time_stop "dbsync"
Dean Troyer73f6f252012-09-17 11:22:21 -0500429}
430
431# install_glanceclient() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100432function install_glanceclient {
Sean Daguee08ab102014-11-13 17:09:28 -0500433 if use_library_from_git "python-glanceclient"; then
434 git_clone_by_name "python-glanceclient"
435 setup_dev_lib "python-glanceclient"
Louis Taylor8df690c2014-11-20 13:09:03 +0000436 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-glanceclient"]}/tools/,/etc/bash_completion.d/}glance.bash_completion
Sean Dague5cb19062014-11-01 01:37:45 +0100437 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500438}
439
440# install_glance() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100441function install_glance {
Radosław Piliszekbe263062020-03-30 09:56:53 +0200442 local glance_store_extras=()
443
444 if is_service_enabled cinder; then
445 glance_store_extras=("cinder" "${glance_store_extras[@]}")
446 fi
447
448 if is_service_enabled swift; then
449 glance_store_extras=("swift" "${glance_store_extras[@]}")
450 fi
451
Flavio Percoco4f78f8f2014-09-09 09:37:42 +0200452 # Install glance_store from git so we make sure we're testing
453 # the latest code.
Sean Dagueee5ae7b2014-11-13 13:23:27 -0500454 if use_library_from_git "glance_store"; then
455 git_clone_by_name "glance_store"
Radosław Piliszekbe263062020-03-30 09:56:53 +0200456 setup_dev_lib "glance_store" $(join_extras "${glance_store_extras[@]}")
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000457 copy_rootwrap ${DEST}/glance_store/etc/glance
Radosław Piliszekbe263062020-03-30 09:56:53 +0200458 else
459 # we still need to pass extras
460 pip_install_gr_extras glance-store $(join_extras "${glance_store_extras[@]}")
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000461 copy_rootwrap $GLANCE_STORE_ROOTWRAP_BASE_DIR
Sean Dagueee5ae7b2014-11-13 13:23:27 -0500462 fi
Flavio Percoco4f78f8f2014-09-09 09:37:42 +0200463
Dean Troyer73f6f252012-09-17 11:22:21 -0500464 git_clone $GLANCE_REPO $GLANCE_DIR $GLANCE_BRANCH
Wayne Okumadd622932015-03-31 00:28:39 -0700465
Wayne Okumadd622932015-03-31 00:28:39 -0700466 setup_develop $GLANCE_DIR
Dean Troyer73f6f252012-09-17 11:22:21 -0500467}
468
Dan Smith802259a2021-01-12 22:55:57 +0000469# glance_remote_conf() - Return the path to an alternate config file for
470# the remote glance clone
471function glance_remote_conf {
Dan Smith61b4fbf2021-03-09 08:05:37 -0800472 echo $(dirname "${GLANCE_CONF_DIR}")/glance-remote/$(basename "$1")
Dan Smith802259a2021-01-12 22:55:57 +0000473}
474
475# start_glance_remote_clone() - Clone the regular glance api worker
476function start_glance_remote_clone {
Dan Smith61b4fbf2021-03-09 08:05:37 -0800477 local glance_remote_conf_dir glance_remote_port remote_data
478 local glance_remote_uwsgi
Dan Smith802259a2021-01-12 22:55:57 +0000479
Dan Smith61b4fbf2021-03-09 08:05:37 -0800480 glance_remote_conf_dir="$(glance_remote_conf "")"
Dan Smith802259a2021-01-12 22:55:57 +0000481 glance_remote_port=$(get_random_port)
Dan Smith61b4fbf2021-03-09 08:05:37 -0800482 glance_remote_uwsgi="$(glance_remote_conf $GLANCE_UWSGI_CONF)"
Dan Smith802259a2021-01-12 22:55:57 +0000483
484 # Clone the existing ready-to-go glance-api setup
Dan Smith61b4fbf2021-03-09 08:05:37 -0800485 sudo rm -Rf "$glance_remote_conf_dir"
486 sudo cp -r "$GLANCE_CONF_DIR" "$glance_remote_conf_dir"
487 sudo chown $STACK_USER -R "$glance_remote_conf_dir"
Dan Smith802259a2021-01-12 22:55:57 +0000488
489 # Point this worker at different data dirs
490 remote_data="${DATA_DIR}/glance-remote"
491 mkdir -p $remote_data/os_glance_tasks_store \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800492 "${remote_data}/os_glance_staging_store"
493 iniset $(glance_remote_conf "$GLANCE_API_CONF") os_glance_staging_store \
494 filesystem_store_datadir "${remote_data}/os_glance_staging_store"
495 iniset $(glance_remote_conf "$GLANCE_API_CONF") os_glance_tasks_store \
496 filesystem_store_datadir "${remote_data}/os_glance_tasks_store"
Dan Smith802259a2021-01-12 22:55:57 +0000497
498 # Change our uwsgi to our new port
499 sed -ri "s/^(http-socket.*):[0-9]+/\1:$glance_remote_port/" \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800500 "$glance_remote_uwsgi"
Dan Smith802259a2021-01-12 22:55:57 +0000501
502 # Update the self-reference url with our new port
503 iniset $(glance_remote_conf $GLANCE_API_CONF) DEFAULT \
504 worker_self_reference_url \
505 $(awk '-F= ' '/^http-socket/ { print "http://"$2 }' \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800506 "$glance_remote_uwsgi")
Dan Smith802259a2021-01-12 22:55:57 +0000507
508 # We need to create the systemd service for the clone, but then
509 # change it to include an Environment line to point the WSGI app
510 # at the alternate config directory.
511 write_uwsgi_user_unit_file devstack@g-api-r.service "$(which uwsgi) \
512 --procname-prefix \
513 glance-api-remote \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800514 --ini $glance_remote_uwsgi" \
Dan Smith802259a2021-01-12 22:55:57 +0000515 "" "$STACK_USER"
516 iniset -sudo ${SYSTEMD_DIR}/devstack@g-api-r.service \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800517 "Service" "Environment" \
518 "OS_GLANCE_CONFIG_DIR=$glance_remote_conf_dir"
Dan Smith802259a2021-01-12 22:55:57 +0000519
520 # Reload and restart with the new config
521 $SYSTEMCTL daemon-reload
522 $SYSTEMCTL restart devstack@g-api-r
523
524 get_or_create_service glance_remote image_remote "Alternate glance"
525 get_or_create_endpoint image_remote $REGION_NAME \
526 $(awk '-F= ' '/^http-socket/ { print "http://"$2 }' \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800527 $glance_remote_uwsgi)
Dan Smith802259a2021-01-12 22:55:57 +0000528}
529
Sean Dague0eebeb42017-08-30 14:16:58 -0400530# start_glance() - Start running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100531function start_glance {
Rob Crittenden18d47782014-03-19 17:47:42 -0400532 local service_protocol=$GLANCE_SERVICE_PROTOCOL
533 if is_service_enabled tls-proxy; then
Matthew Treinish1fa65362017-06-23 22:32:37 +0000534 if [[ "$WSGI_MODE" != "uwsgi" ]]; then
535 start_tls_proxy glance-service '*' $GLANCE_SERVICE_PORT $GLANCE_SERVICE_HOST $GLANCE_SERVICE_PORT_INT
536 fi
Rob Crittenden18d47782014-03-19 17:47:42 -0400537 fi
538
Dan Smith09eea0b2020-07-09 08:31:51 -0700539 if [[ "$GLANCE_STANDALONE" == False ]]; then
Ian Wienand312517d2018-06-22 22:23:29 +1000540 run_process g-api "$(which uwsgi) --procname-prefix glance-api --ini $GLANCE_UWSGI_CONF"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000541 else
Brian Rosmaita96269d82018-12-17 10:38:42 -0500542 run_process g-api "$GLANCE_BIN_DIR/glance-api --config-dir=$GLANCE_CONF_DIR"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000543 fi
Rob Crittenden18d47782014-03-19 17:47:42 -0400544
Dan Smith802259a2021-01-12 22:55:57 +0000545 if is_service_enabled g-api-r; then
546 echo "Starting the g-api-r clone service..."
547 start_glance_remote_clone
548 fi
549
Matthew Treinish1fa65362017-06-23 22:32:37 +0000550 echo "Waiting for g-api ($GLANCE_SERVICE_HOST) to start..."
551 if ! wait_for_service $SERVICE_TIMEOUT $GLANCE_URL; then
Sean Dague101b4242013-10-22 08:47:11 -0400552 die $LINENO "g-api did not start"
Dean Troyer73f6f252012-09-17 11:22:21 -0500553 fi
554}
555
Dean Troyer699a29f2012-09-10 14:10:27 -0500556# stop_glance() - Stop running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100557function stop_glance {
Chris Dent2f27a0e2014-09-09 13:46:02 +0100558 stop_process g-api
Dan Smith802259a2021-01-12 22:55:57 +0000559 stop_process g-api-r
Dean Troyer73f6f252012-09-17 11:22:21 -0500560}
561
562# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100563$_XTRACE_GLANCE
Sean Dague584d90e2013-03-29 14:34:53 -0400564
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100565# Tell emacs to use shell-script-mode
566## Local variables:
567## mode: shell-script
568## End: