blob: 430d94d3a4b1568a143decc23283609eadd556d9 [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
Brian Rosmaita6e9f7c22020-10-13 14:20:38 -040050# When Cinder is used as a glance store, you can optionally configure cinder to
51# optimize bootable volume creation by allowing volumes to be cloned directly
52# in the backend instead of transferring data via Glance. To use this feature,
53# set CINDER_ALLOWED_DIRECT_URL_SCHEMES for cinder.conf and enable
54# GLANCE_SHOW_DIRECT_URL and/or GLANCE_SHOW_MULTIPLE_LOCATIONS for Glance. The
55# default value for both of these is False, because for some backends they
56# present a grave security risk (though not for Cinder, because all that's
57# exposed is the volume_id where the image data is stored.) See OSSN-0065 for
58# more information: https://wiki.openstack.org/wiki/OSSN/OSSN-0065
59GLANCE_SHOW_DIRECT_URL=$(trueorfalse False GLANCE_SHOW_DIRECT_URL)
60GLANCE_SHOW_MULTIPLE_LOCATIONS=$(trueorfalse False GLANCE_SHOW_MULTIPLE_LOCATIONS)
61
Abhishek Kekane6f91da92019-10-17 09:02:41 +000062# Glance multi-store configuration
63# Boolean flag to enable multiple store configuration for glance
64GLANCE_ENABLE_MULTIPLE_STORES=$(trueorfalse False GLANCE_ENABLE_MULTIPLE_STORES)
65
66# Comma separated list for configuring multiple file stores of glance,
67# for example; GLANCE_MULTIPLE_FILE_STORES = fast,cheap,slow
68GLANCE_MULTIPLE_FILE_STORES=${GLANCE_MULTIPLE_FILE_STORES:-fast}
69
70# Default store/backend for glance, must be one of the store specified
71# in GLANCE_MULTIPLE_FILE_STORES option.
72GLANCE_DEFAULT_BACKEND=${GLANCE_DEFAULT_BACKEND:-fast}
73
Dean Troyer73f6f252012-09-17 11:22:21 -050074GLANCE_CACHE_DIR=${GLANCE_CACHE_DIR:=$DATA_DIR/glance/cache}
Abhishek Kekane6f91da92019-10-17 09:02:41 +000075
Dan Smith09eea0b2020-07-09 08:31:51 -070076# Full Glance functionality requires running in standalone mode. If we are
77# not in uwsgi mode, then we are standalone, otherwise allow separate control.
78if [[ "$WSGI_MODE" != "uwsgi" ]]; then
79 GLANCE_STANDALONE=True
80fi
Dan Smith155109d2020-07-24 06:49:01 -070081GLANCE_STANDALONE=${GLANCE_STANDALONE:-False}
Dan Smith09eea0b2020-07-09 08:31:51 -070082
Abhishek Kekane6f91da92019-10-17 09:02:41 +000083# File path for each store specified in GLANCE_MULTIPLE_FILE_STORES, the store
84# identifier will be appended to this path at runtime. If GLANCE_MULTIPLE_FILE_STORES
85# has fast,cheap specified then filepath will be generated like $DATA_DIR/glance/fast
86# and $DATA_DIR/glance/cheap.
87GLANCE_MULTISTORE_FILE_IMAGE_DIR=${GLANCE_MULTISTORE_FILE_IMAGE_DIR:=$DATA_DIR/glance}
Dean Troyer73f6f252012-09-17 11:22:21 -050088GLANCE_IMAGE_DIR=${GLANCE_IMAGE_DIR:=$DATA_DIR/glance/images}
Abhishek Kekane057aaa62020-07-29 07:37:16 +000089GLANCE_NFS_MOUNTPOINT=$GLANCE_IMAGE_DIR/mnt
Matthew Treinishfa898f52017-04-25 01:30:10 -040090GLANCE_LOCK_DIR=${GLANCE_LOCK_DIR:=$DATA_DIR/glance/locks}
Abhishek Kekane6f91da92019-10-17 09:02:41 +000091GLANCE_STAGING_DIR=${GLANCE_MULTISTORE_FILE_IMAGE_DIR:=$DATA_DIR/os_glance_staging_store}
92GLANCE_TASKS_DIR=${GLANCE_MULTISTORE_FILE_IMAGE_DIR:=$DATA_DIR/os_glance_tasks_store}
Dean Troyer73f6f252012-09-17 11:22:21 -050093
Abhishek Kekane73ad9762020-06-16 15:20:48 +000094GLANCE_USE_IMPORT_WORKFLOW=$(trueorfalse False GLANCE_USE_IMPORT_WORKFLOW)
Dan Smith4e916ae2021-04-26 08:52:23 -070095GLANCE_ENABLE_QUOTAS=$(trueorfalse True GLANCE_ENABLE_QUOTAS)
Abhishek Kekane73ad9762020-06-16 15:20:48 +000096
Ghanshyam Mann8c930492021-03-05 09:40:39 -060097# Flag to set the oslo_policy.enforce_scope. This is used to switch
Ghanshyam Manncb1ec182023-05-18 19:58:41 -050098# This is used to disable the Image API policies scope and new defaults.
99# By Default, it is True.
Ghanshyam Mann8c930492021-03-05 09:40:39 -0600100# For more detail: https://docs.openstack.org/oslo.policy/latest/configuration/index.html#oslo_policy.enforce_scope
Ghanshyam Manncb1ec182023-05-18 19:58:41 -0500101GLANCE_ENFORCE_SCOPE=$(trueorfalse True GLANCE_ENFORCE_SCOPE)
Ghanshyam Mann8c930492021-03-05 09:40:39 -0600102
Dean Troyer73f6f252012-09-17 11:22:21 -0500103GLANCE_CONF_DIR=${GLANCE_CONF_DIR:-/etc/glance}
Pawel Koniszewski76e39252014-09-06 07:06:46 -0400104GLANCE_METADEF_DIR=$GLANCE_CONF_DIR/metadefs
Dean Troyer73f6f252012-09-17 11:22:21 -0500105GLANCE_API_CONF=$GLANCE_CONF_DIR/glance-api.conf
Dean Troyer73f6f252012-09-17 11:22:21 -0500106GLANCE_API_PASTE_INI=$GLANCE_CONF_DIR/glance-api-paste.ini
107GLANCE_CACHE_CONF=$GLANCE_CONF_DIR/glance-cache.conf
Dirk Mueller46d1ba62013-09-09 14:31:37 +0200108GLANCE_SCHEMA_JSON=$GLANCE_CONF_DIR/schema-image.json
Jamie Lennoxf4f01c62015-06-19 02:52:41 +0000109GLANCE_SWIFT_STORE_CONF=$GLANCE_CONF_DIR/glance-swift-store.conf
bhagyashris6a25fb92017-12-14 13:23:41 +0530110GLANCE_IMAGE_IMPORT_CONF=$GLANCE_CONF_DIR/glance-image-import.conf
Dean Troyer73f6f252012-09-17 11:22:21 -0500111
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400112if is_service_enabled tls-proxy; then
Rob Crittenden18d47782014-03-19 17:47:42 -0400113 GLANCE_SERVICE_PROTOCOL="https"
114fi
115
Dean Troyer73f6f252012-09-17 11:22:21 -0500116# Glance connection info. Note the port must be specified.
Rob Crittenden18d47782014-03-19 17:47:42 -0400117GLANCE_SERVICE_HOST=${GLANCE_SERVICE_HOST:-$SERVICE_HOST}
Jens Harbottdc7b4292017-09-19 10:52:32 +0000118GLANCE_SERVICE_LISTEN_ADDRESS=${GLANCE_SERVICE_LISTEN_ADDRESS:-$(ipv6_unquote $SERVICE_LISTEN_ADDRESS)}
Rob Crittenden18d47782014-03-19 17:47:42 -0400119GLANCE_SERVICE_PORT=${GLANCE_SERVICE_PORT:-9292}
120GLANCE_SERVICE_PORT_INT=${GLANCE_SERVICE_PORT_INT:-19292}
121GLANCE_HOSTPORT=${GLANCE_HOSTPORT:-$GLANCE_SERVICE_HOST:$GLANCE_SERVICE_PORT}
122GLANCE_SERVICE_PROTOCOL=${GLANCE_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
Matthew Treinish1fa65362017-06-23 22:32:37 +0000123GLANCE_UWSGI=$GLANCE_BIN_DIR/glance-wsgi-api
Jeremy Liu2f7df512017-07-12 10:09:48 +0800124GLANCE_UWSGI_CONF=$GLANCE_CONF_DIR/glance-uwsgi.ini
Julia Kreger5a642452021-07-19 07:01:29 -0700125
126# Glance default limit for Devstack
127GLANCE_LIMIT_IMAGE_SIZE_TOTAL=${GLANCE_LIMIT_IMAGE_SIZE_TOTAL:-1000}
128
Matthew Treinish1fa65362017-06-23 22:32:37 +0000129# If wsgi mode is uwsgi run glance under uwsgi, else default to eventlet
130# TODO(mtreinish): Remove the eventlet path here and in all the similar
131# conditionals below after the Pike release
132if [[ "$WSGI_MODE" == "uwsgi" ]]; then
133 GLANCE_URL="$GLANCE_SERVICE_PROTOCOL://$GLANCE_SERVICE_HOST/image"
134else
135 GLANCE_URL="$GLANCE_SERVICE_PROTOCOL://$GLANCE_HOSTPORT"
136fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500137
Dean Troyercc6b4432013-04-08 15:38:03 -0500138# Functions
139# ---------
Dean Troyer73f6f252012-09-17 11:22:21 -0500140
Dean Troyere4fa7212014-01-15 15:04:49 -0600141# Test if any Glance services are enabled
142# is_glance_enabled
143function is_glance_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700144 [[ ,${DISABLED_SERVICES} =~ ,"glance" ]] && return 1
Dean Troyere4fa7212014-01-15 15:04:49 -0600145 [[ ,${ENABLED_SERVICES} =~ ,"g-" ]] && return 0
146 return 1
147}
148
Dean Troyer73f6f252012-09-17 11:22:21 -0500149# cleanup_glance() - Remove residual data files, anything left over from previous
150# runs that a clean run would need to clean up
Ian Wienandaee18c72014-02-21 15:35:08 +1100151function cleanup_glance {
Dan Smith61b4fbf2021-03-09 08:05:37 -0800152 # delete image files (glance) and all of the glance-remote temporary
153 # storage
154 sudo rm -rf $GLANCE_CACHE_DIR $GLANCE_IMAGE_DIR "${DATA_DIR}/glance-remote"
Abhishek Kekane6f91da92019-10-17 09:02:41 +0000155
156 # Cleanup multiple stores directories
157 if [[ "$GLANCE_ENABLE_MULTIPLE_STORES" == "True" ]]; then
158 local store file_dir
159 for store in $(echo $GLANCE_MULTIPLE_FILE_STORES | tr "," "\n"); do
160 file_dir="${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/${store}/"
161 sudo rm -rf $file_dir
162 done
163
164 # Cleanup reserved stores directories
165 sudo rm -rf $GLANCE_STAGING_DIR $GLANCE_TASKS_DIR
166 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500167}
168
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000169# Set multiple cinder store related config options for each of the cinder store
170#
171function configure_multiple_cinder_stores {
172
173 local be be_name be_type enabled_backends
174 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
175 be_type=${be%%:*}
176 be_name=${be##*:}
177 enabled_backends+="${be_name}:cinder,"
178
179 set_common_cinder_store_params $be_name
180 iniset $GLANCE_API_CONF $be_name cinder_volume_type ${be_name}
181 if [[ "$be_type" == "nfs" ]]; then
182 mkdir -p "$GLANCE_NFS_MOUNTPOINT"
183 iniset $GLANCE_API_CONF $be_name cinder_mount_point_base "$GLANCE_NFS_MOUNTPOINT"
184 fi
185 done
186 iniset $GLANCE_API_CONF DEFAULT enabled_backends ${enabled_backends::-1}
187 iniset $GLANCE_API_CONF glance_store default_backend $GLANCE_CINDER_DEFAULT_BACKEND
188}
189
190# Set common cinder store options to given config section
191#
192# Arguments:
193# config_section
194#
195function set_common_cinder_store_params {
196 local config_section="$1"
197 iniset $GLANCE_API_CONF $config_section cinder_store_auth_address $KEYSTONE_SERVICE_URI_V3
198 iniset $GLANCE_API_CONF $config_section cinder_store_user_name glance
199 iniset $GLANCE_API_CONF $config_section cinder_store_password $SERVICE_PASSWORD
200 iniset $GLANCE_API_CONF $config_section cinder_store_project_name $SERVICE_PROJECT_NAME
201}
202
203# Configure multiple file stores options for each file store
204#
205# Arguments:
206#
207function configure_multiple_file_stores {
208 local store enabled_backends
209 enabled_backends=""
210 for store in $(echo $GLANCE_MULTIPLE_FILE_STORES | tr "," "\n"); do
211 enabled_backends+="${store}:file,"
212 done
213 iniset $GLANCE_API_CONF DEFAULT enabled_backends ${enabled_backends::-1}
214
215 # Glance multiple store Store specific configs
216 iniset $GLANCE_API_CONF glance_store default_backend $GLANCE_DEFAULT_BACKEND
217 local store
218 for store in $(echo $glance_multiple_file_stores | tr "," "\n"); do
219 iniset $GLANCE_API_CONF $store filesystem_store_datadir "${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/${store}/"
220 done
221}
222
223# Set reserved stores for glance
224function configure_reserved_stores {
225 iniset $GLANCE_API_CONF os_glance_staging_store filesystem_store_datadir "${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/os_glance_staging_store/"
226 iniset $GLANCE_API_CONF os_glance_tasks_store filesystem_store_datadir "${GLANCE_MULTISTORE_FILE_IMAGE_DIR}/os_glance_tasks_store/"
227}
228
229# Copy rootwrap file from glance_store/etc/glance to /etc/glance
230#
231# Arguments:
232# source_path Source path to copy rootwrap files from
233#
234function copy_rootwrap {
235 local source_path="$1"
236 # Make glance configuration directory if it is not exists
237 sudo install -d -o $STACK_USER $GLANCE_CONF_DIR
238 cp -r $source_path/rootwrap.* $GLANCE_CONF_DIR/
239}
240
241# Set glance_store related config options
242#
243# Arguments:
244# USE_CINDER_FOR_GLANCE
245# GLANCE_ENABLE_MULTIPLE_STORES
246#
247function configure_glance_store {
248 local use_cinder_for_glance="$1"
249 local glance_enable_multiple_stores="$2"
250 local be
251
252 if [[ "$glance_enable_multiple_stores" == "False" ]]; then
253 # Configure traditional glance_store
254 if [[ "$use_cinder_for_glance" == "True" ]]; then
255 # set common glance_store parameters
256 iniset $GLANCE_API_CONF glance_store stores "cinder,file,http"
257 iniset $GLANCE_API_CONF glance_store default_store cinder
258
259 # set cinder related store parameters
260 set_common_cinder_store_params glance_store
261 # set nfs mount_point dir
262 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
263 local be_name=${be##*:}
264 if [[ "$be_name" == "nfs" ]]; then
265 mkdir -p $GLANCE_NFS_MOUNTPOINT
266 iniset $GLANCE_API_CONF glance_store cinder_mount_point_base $GLANCE_NFS_MOUNTPOINT
267 fi
268 done
269 fi
270 # Store specific configs
271 iniset $GLANCE_API_CONF glance_store filesystem_store_datadir $GLANCE_IMAGE_DIR/
272 else
273 if [[ "$use_cinder_for_glance" == "True" ]]; then
274 # Configure multiple cinder stores for glance
275 configure_multiple_cinder_stores
276 else
277 # Configure multiple file stores for glance
278 configure_multiple_file_stores
279 fi
280 # Configure reserved stores
281 configure_reserved_stores
282 fi
283}
284
Dan Smith4e916ae2021-04-26 08:52:23 -0700285function configure_glance_quotas {
286
Lance Bragstadafd0f842021-11-08 19:53:40 +0000287 # Registered limit resources in keystone are system-specific resources.
288 # Make sure we use a system-scoped token to interact with this API.
Dan Smith4e916ae2021-04-26 08:52:23 -0700289
Lance Bragstadafd0f842021-11-08 19:53:40 +0000290 openstack --os-cloud devstack-system-admin registered limit create --service glance \
291 --default-limit $GLANCE_LIMIT_IMAGE_SIZE_TOTAL --region $REGION_NAME image_size_total
292 openstack --os-cloud devstack-system-admin registered limit create --service glance \
293 --default-limit $GLANCE_LIMIT_IMAGE_SIZE_TOTAL --region $REGION_NAME image_stage_total
294 openstack --os-cloud devstack-system-admin registered limit create --service glance \
295 --default-limit 100 --region $REGION_NAME image_count_total
296 openstack --os-cloud devstack-system-admin registered limit create --service glance \
297 --default-limit 100 --region $REGION_NAME image_count_uploading
Dan Smith4e916ae2021-04-26 08:52:23 -0700298
299 # Tell glance to use these limits
300 iniset $GLANCE_API_CONF DEFAULT use_keystone_limits True
301
302 # Configure oslo_limit so it can talk to keystone
303 iniset $GLANCE_API_CONF oslo_limit user_domain_name $SERVICE_DOMAIN_NAME
304 iniset $GLANCE_API_CONF oslo_limit password $SERVICE_PASSWORD
305 iniset $GLANCE_API_CONF oslo_limit username glance
306 iniset $GLANCE_API_CONF oslo_limit auth_type password
307 iniset $GLANCE_API_CONF oslo_limit auth_url $KEYSTONE_SERVICE_URI
melanie witt2c961802022-03-03 23:54:49 +0000308 iniset $GLANCE_API_CONF oslo_limit system_scope all
Dan Smith4e916ae2021-04-26 08:52:23 -0700309 iniset $GLANCE_API_CONF oslo_limit endpoint_id \
Grzegorz Graszaae408252021-10-26 10:37:07 +0200310 $(openstack --os-cloud devstack-system-admin endpoint list --service glance -f value -c ID)
Dan Smith4e916ae2021-04-26 08:52:23 -0700311
312 # Allow the glance service user to read quotas
melanie witt2c961802022-03-03 23:54:49 +0000313 openstack --os-cloud devstack-system-admin role add --user glance \
314 --user-domain $SERVICE_DOMAIN_NAME --system all reader
Dan Smith4e916ae2021-04-26 08:52:23 -0700315}
316
Dean Troyer73f6f252012-09-17 11:22:21 -0500317# configure_glance() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +1100318function configure_glance {
Dean Troyer8421c2b2015-03-16 13:52:19 -0500319 sudo install -d -o $STACK_USER $GLANCE_CONF_DIR $GLANCE_METADEF_DIR
Pawel Koniszewski76e39252014-09-06 07:06:46 -0400320
Abhishek Kekane0ae57872020-02-17 06:11:15 +0000321 # Set non-default configuration options for the API server
Ian Wienandada886d2015-10-07 14:06:26 +1100322 local dburl
323 dburl=`database_connection_url glance`
Dean Troyer73f6f252012-09-17 11:22:21 -0500324
Ben Nemec03997942013-08-10 09:56:16 -0500325 iniset $GLANCE_API_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Jordan Pittierceca15d2015-06-19 11:46:36 +0200326 iniset $GLANCE_API_CONF database connection $dburl
Dean Troyer73f6f252012-09-17 11:22:21 -0500327 iniset $GLANCE_API_CONF DEFAULT use_syslog $SYSLOG
Dean Troyer73f6f252012-09-17 11:22:21 -0500328 iniset $GLANCE_API_CONF DEFAULT image_cache_dir $GLANCE_CACHE_DIR/
ZhongShengping5fe60c12019-04-30 10:12:51 +0800329 iniset $GLANCE_API_CONF oslo_concurrency lock_path $GLANCE_LOCK_DIR
Dean Troyer73f6f252012-09-17 11:22:21 -0500330 iniset $GLANCE_API_CONF paste_deploy flavor keystone+cachemanagement
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100331 configure_keystone_authtoken_middleware $GLANCE_API_CONF glance
Matt Riedemann45da7772017-03-05 13:07:39 -0500332 iniset $GLANCE_API_CONF oslo_messaging_notifications driver messagingv2
Brant Knudson2dd110c2015-03-14 12:39:14 -0500333 iniset_rpc_backend glance $GLANCE_API_CONF
Evgeny Antyshev19354582014-11-24 14:20:35 +0400334 if [ "$VIRT_DRIVER" = 'libvirt' ] && [ "$LIBVIRT_TYPE" = 'parallels' ]; then
335 iniset $GLANCE_API_CONF DEFAULT disk_formats "ami,ari,aki,vhd,vmdk,raw,qcow2,vdi,iso,ploop"
336 fi
Brian Rosmaita6e9f7c22020-10-13 14:20:38 -0400337 # Only use these if you know what you are doing! See OSSN-0065
338 iniset $GLANCE_API_CONF DEFAULT show_image_direct_url $GLANCE_SHOW_DIRECT_URL
339 iniset $GLANCE_API_CONF DEFAULT show_multiple_locations $GLANCE_SHOW_MULTIPLE_LOCATIONS
Dean Troyer73f6f252012-09-17 11:22:21 -0500340
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000341 # Configure glance_store
342 configure_glance_store $USE_CINDER_FOR_GLANCE $GLANCE_ENABLE_MULTIPLE_STORES
Flavio Percocofe65e2d2014-09-03 11:51:00 +0200343
Timur Sufieva44dd9a2016-04-29 14:08:51 +0300344 # CORS feature support - to allow calls from Horizon by default
345 if [ -n "$GLANCE_CORS_ALLOWED_ORIGIN" ]; then
346 iniset $GLANCE_API_CONF cors allowed_origin "$GLANCE_CORS_ALLOWED_ORIGIN"
347 else
348 iniset $GLANCE_API_CONF cors allowed_origin "http://$SERVICE_HOST"
349 fi
350
Abhishek Kekane6f91da92019-10-17 09:02:41 +0000351 # No multiple stores for swift yet
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000352 if [[ "$GLANCE_ENABLE_MULTIPLE_STORES" == "False" ]]; then
353 # Store the images in swift if enabled.
354 if is_service_enabled s-proxy; then
355 iniset $GLANCE_API_CONF glance_store default_store swift
356 iniset $GLANCE_API_CONF glance_store swift_store_create_container_on_put True
Jamie Lennoxf4f01c62015-06-19 02:52:41 +0000357
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000358 iniset $GLANCE_API_CONF glance_store swift_store_config_file $GLANCE_SWIFT_STORE_CONF
359 iniset $GLANCE_API_CONF glance_store default_swift_reference ref1
360 iniset $GLANCE_API_CONF glance_store stores "file, http, swift"
361 if is_service_enabled tls-proxy; then
362 iniset $GLANCE_API_CONF glance_store swift_store_cacert $SSL_BUNDLE_FILE
363 fi
364 iniset $GLANCE_API_CONF DEFAULT graceful_shutdown_timeout "$SERVICE_GRACEFUL_SHUTDOWN_TIMEOUT"
365
366 iniset $GLANCE_SWIFT_STORE_CONF ref1 user $SERVICE_PROJECT_NAME:glance-swift
367
368 iniset $GLANCE_SWIFT_STORE_CONF ref1 key $SERVICE_PASSWORD
369 iniset $GLANCE_SWIFT_STORE_CONF ref1 auth_address $KEYSTONE_SERVICE_URI/v3
370 iniset $GLANCE_SWIFT_STORE_CONF ref1 auth_version 3
Vladislav Kuzmin9cbd02d2020-05-20 12:14:04 +0400371 fi
Dean Troyerc77b9322013-03-29 10:51:01 -0500372 fi
373
Matthew Treinish1fa65362017-06-23 22:32:37 +0000374 # We need to tell glance what it's public endpoint is so that the version
375 # discovery document will be correct
376 iniset $GLANCE_API_CONF DEFAULT public_endpoint $GLANCE_URL
377
Rob Crittenden18d47782014-03-19 17:47:42 -0400378 if is_service_enabled tls-proxy; then
379 iniset $GLANCE_API_CONF DEFAULT bind_port $GLANCE_SERVICE_PORT_INT
Jens Harbott32c00892019-04-10 10:33:39 +0000380 iniset $GLANCE_API_CONF keystone_authtoken identity_uri $KEYSTONE_SERVICE_URI
Rob Crittenden18d47782014-03-19 17:47:42 -0400381 fi
382
Louis Taylor701276a2015-02-11 19:34:09 +0000383 # Format logging
Sean Dague9751be62016-04-05 12:08:57 -0400384 setup_logging $GLANCE_API_CONF
Louis Taylor701276a2015-02-11 19:34:09 +0000385
Dean Troyer73f6f252012-09-17 11:22:21 -0500386 cp -p $GLANCE_DIR/etc/glance-api-paste.ini $GLANCE_API_PASTE_INI
387
Brian Rosmaita44a19b42017-12-11 18:07:50 -0500388 # Set non-default configuration options for the glance-cache
Ben Nemec03997942013-08-10 09:56:16 -0500389 iniset $GLANCE_CACHE_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
Dean Troyer73f6f252012-09-17 11:22:21 -0500390 iniset $GLANCE_CACHE_CONF DEFAULT use_syslog $SYSLOG
Dean Troyer73f6f252012-09-17 11:22:21 -0500391 iniset $GLANCE_CACHE_CONF DEFAULT image_cache_dir $GLANCE_CACHE_DIR/
Jens Harbott32c00892019-04-10 10:33:39 +0000392 iniset $GLANCE_CACHE_CONF DEFAULT auth_url $KEYSTONE_SERVICE_URI
Sean Dague7580a0c2016-02-17 06:23:36 -0500393 iniset $GLANCE_CACHE_CONF DEFAULT admin_tenant_name $SERVICE_PROJECT_NAME
Dean Troyer73f6f252012-09-17 11:22:21 -0500394 iniset $GLANCE_CACHE_CONF DEFAULT admin_user glance
Dean Troyer73f6f252012-09-17 11:22:21 -0500395 iniset $GLANCE_CACHE_CONF DEFAULT admin_password $SERVICE_PASSWORD
396
Flavio Percocofe65e2d2014-09-03 11:51:00 +0200397 # Store specific confs
Flavio Percocofe65e2d2014-09-03 11:51:00 +0200398 iniset $GLANCE_CACHE_CONF glance_store filesystem_store_datadir $GLANCE_IMAGE_DIR/
399
bhagyashris6a25fb92017-12-14 13:23:41 +0530400 # Set default configuration options for the glance-image-import
401 iniset $GLANCE_IMAGE_IMPORT_CONF image_import_opts image_import_plugins []
402 iniset $GLANCE_IMAGE_IMPORT_CONF inject_metadata_properties ignore_user_roles admin
403 iniset $GLANCE_IMAGE_IMPORT_CONF inject_metadata_properties inject
404
Dirk Mueller46d1ba62013-09-09 14:31:37 +0200405 cp -p $GLANCE_DIR/etc/schema-image.json $GLANCE_SCHEMA_JSON
Pawel Koniszewski76e39252014-09-06 07:06:46 -0400406
407 cp -p $GLANCE_DIR/etc/metadefs/*.json $GLANCE_METADEF_DIR
Rob Crittenden18d47782014-03-19 17:47:42 -0400408
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400409 if is_service_enabled tls-proxy; then
Rob Crittenden18d47782014-03-19 17:47:42 -0400410 CINDER_SERVICE_HOST=${CINDER_SERVICE_HOST:-$SERVICE_HOST}
411 CINDER_SERVICE_PORT=${CINDER_SERVICE_PORT:-8776}
412
Brian Rosmaitab43810a2019-02-07 16:46:49 -0500413 iniset $GLANCE_API_CONF DEFAULT cinder_endpoint_template "https://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v3/%(project_id)s"
414 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 -0400415 fi
Matthew Treinish1fa65362017-06-23 22:32:37 +0000416
Dan Smith09eea0b2020-07-09 08:31:51 -0700417 if [[ "$GLANCE_STANDALONE" == False ]]; then
Matthew Treinish1fa65362017-06-23 22:32:37 +0000418 write_local_uwsgi_http_config "$GLANCE_UWSGI_CONF" "$GLANCE_UWSGI" "/image"
Dan Smith802259a2021-01-12 22:55:57 +0000419 # Grab our uwsgi listen address and use that to fill out our
420 # worker_self_reference_url config
421 iniset $GLANCE_API_CONF DEFAULT worker_self_reference_url \
422 $(awk '-F= ' '/^http-socket/ { print "http://"$2}' \
423 $GLANCE_UWSGI_CONF)
Matthew Treinish1fa65362017-06-23 22:32:37 +0000424 else
Dan Smith09eea0b2020-07-09 08:31:51 -0700425 write_local_proxy_http_config glance "http://$GLANCE_SERVICE_HOST:$GLANCE_SERVICE_PORT_INT" "/image"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000426 iniset $GLANCE_API_CONF DEFAULT bind_host $GLANCE_SERVICE_LISTEN_ADDRESS
Dan Smithfcbf3e92020-07-17 10:14:14 -0700427 iniset $GLANCE_API_CONF DEFAULT bind_port $GLANCE_SERVICE_PORT_INT
Matthew Treinish1fa65362017-06-23 22:32:37 +0000428 iniset $GLANCE_API_CONF DEFAULT workers "$API_WORKERS"
429 fi
Ghanshyam Mann8c930492021-03-05 09:40:39 -0600430
Grzegorz Grasza86155632021-10-18 16:52:06 +0200431 if [[ "$GLANCE_ENFORCE_SCOPE" == True || "$ENFORCE_SCOPE" == True ]] ; then
Ghanshyam Mann8c930492021-03-05 09:40:39 -0600432 iniset $GLANCE_API_CONF oslo_policy enforce_scope true
433 iniset $GLANCE_API_CONF oslo_policy enforce_new_defaults true
434 iniset $GLANCE_API_CONF DEFAULT enforce_secure_rbac true
Ghanshyam Mann69d71cf2023-01-10 20:13:47 -0600435 else
436 iniset $GLANCE_API_CONF oslo_policy enforce_scope false
437 iniset $GLANCE_API_CONF oslo_policy enforce_new_defaults false
438 iniset $GLANCE_API_CONF DEFAULT enforce_secure_rbac false
Ghanshyam Mann8c930492021-03-05 09:40:39 -0600439 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500440}
441
Dean Troyer42a59c22014-03-03 14:31:29 -0600442# create_glance_accounts() - Set up common required glance accounts
443
Wayne Okumadd622932015-03-31 00:28:39 -0700444# Project User Roles
445# ---------------------------------------------------------------------
Sean Dague7580a0c2016-02-17 06:23:36 -0500446# SERVICE_PROJECT_NAME glance service
447# SERVICE_PROJECT_NAME glance-swift ResellerAdmin (if Swift is enabled)
448# SERVICE_PROJECT_NAME glance-search search (if Search is enabled)
Dean Troyer42a59c22014-03-03 14:31:29 -0600449
450function create_glance_accounts {
451 if is_service_enabled g-api; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100452
Jamie Lennox85ff5322015-01-28 14:28:01 +1000453 create_service_user "glance"
Bartosz Górski0abde392014-02-28 14:15:19 +0100454
Dean Troyer42a59c22014-03-03 14:31:29 -0600455 # required for swift access
456 if is_service_enabled s-proxy; then
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600457 create_service_user "glance-swift" "ResellerAdmin"
Dean Troyer42a59c22014-03-03 14:31:29 -0600458 fi
Bartosz Górski0abde392014-02-28 14:15:19 +0100459
Sean Dague985e9582016-02-10 07:25:24 -0500460 get_or_create_service "glance" "image" "Glance Image Service"
Matt Riedemannae4578b2016-04-23 01:45:40 +0000461 get_or_create_endpoint \
Sean Dague985e9582016-02-10 07:25:24 -0500462 "image" \
463 "$REGION_NAME" \
Matthew Treinish1fa65362017-06-23 22:32:37 +0000464 "$GLANCE_URL"
Jens Rosenboom890342e2016-09-13 22:41:41 +0200465
466 # Note(frickler): Crude workaround for https://bugs.launchpad.net/glance-store/+bug/1620999
467 service_domain_id=$(get_or_create_domain $SERVICE_DOMAIN_NAME)
468 iniset $GLANCE_SWIFT_STORE_CONF ref1 project_domain_id $service_domain_id
469 iniset $GLANCE_SWIFT_STORE_CONF ref1 user_domain_id $service_domain_id
Dan Smith4e916ae2021-04-26 08:52:23 -0700470
471 if [[ "$GLANCE_ENABLE_QUOTAS" = True ]]; then
472 configure_glance_quotas
473 fi
474
Dean Troyer42a59c22014-03-03 14:31:29 -0600475 fi
476}
477
Dean Troyer73f6f252012-09-17 11:22:21 -0500478# init_glance() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +1100479function init_glance {
Dean Troyer73f6f252012-09-17 11:22:21 -0500480 # Delete existing images
481 rm -rf $GLANCE_IMAGE_DIR
482 mkdir -p $GLANCE_IMAGE_DIR
483
Radosław Piliszek09e860f2020-01-19 12:41:14 +0100484 # (Re)create glance database
485 recreate_database glance
Dean Troyer73f6f252012-09-17 11:22:21 -0500486
Radosław Piliszek09e860f2020-01-19 12:41:14 +0100487 time_start "dbsync"
488 # Migrate glance database
489 $GLANCE_BIN_DIR/glance-manage --config-file $GLANCE_CONF_DIR/glance-api.conf db_sync
Dean Troyerbc071bc2012-10-01 14:06:44 -0500490
Radosław Piliszek09e860f2020-01-19 12:41:14 +0100491 # Load metadata definitions
492 $GLANCE_BIN_DIR/glance-manage --config-file $GLANCE_CONF_DIR/glance-api.conf db_load_metadefs
493 time_stop "dbsync"
Dean Troyer73f6f252012-09-17 11:22:21 -0500494}
495
496# install_glanceclient() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100497function install_glanceclient {
Sean Daguee08ab102014-11-13 17:09:28 -0500498 if use_library_from_git "python-glanceclient"; then
499 git_clone_by_name "python-glanceclient"
500 setup_dev_lib "python-glanceclient"
Louis Taylor8df690c2014-11-20 13:09:03 +0000501 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 +0100502 fi
Dean Troyer73f6f252012-09-17 11:22:21 -0500503}
504
505# install_glance() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100506function install_glance {
Radosław Piliszekbe263062020-03-30 09:56:53 +0200507 local glance_store_extras=()
508
509 if is_service_enabled cinder; then
510 glance_store_extras=("cinder" "${glance_store_extras[@]}")
511 fi
512
513 if is_service_enabled swift; then
514 glance_store_extras=("swift" "${glance_store_extras[@]}")
515 fi
516
Flavio Percoco4f78f8f2014-09-09 09:37:42 +0200517 # Install glance_store from git so we make sure we're testing
518 # the latest code.
Sean Dagueee5ae7b2014-11-13 13:23:27 -0500519 if use_library_from_git "glance_store"; then
520 git_clone_by_name "glance_store"
Radosław Piliszekbe263062020-03-30 09:56:53 +0200521 setup_dev_lib "glance_store" $(join_extras "${glance_store_extras[@]}")
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000522 copy_rootwrap ${DEST}/glance_store/etc/glance
Radosław Piliszekbe263062020-03-30 09:56:53 +0200523 else
524 # we still need to pass extras
525 pip_install_gr_extras glance-store $(join_extras "${glance_store_extras[@]}")
Abhishek Kekane057aaa62020-07-29 07:37:16 +0000526 copy_rootwrap $GLANCE_STORE_ROOTWRAP_BASE_DIR
Sean Dagueee5ae7b2014-11-13 13:23:27 -0500527 fi
Flavio Percoco4f78f8f2014-09-09 09:37:42 +0200528
Dean Troyer73f6f252012-09-17 11:22:21 -0500529 git_clone $GLANCE_REPO $GLANCE_DIR $GLANCE_BRANCH
Wayne Okumadd622932015-03-31 00:28:39 -0700530
Wayne Okumadd622932015-03-31 00:28:39 -0700531 setup_develop $GLANCE_DIR
Dean Troyer73f6f252012-09-17 11:22:21 -0500532}
533
Dan Smith802259a2021-01-12 22:55:57 +0000534# glance_remote_conf() - Return the path to an alternate config file for
535# the remote glance clone
536function glance_remote_conf {
Dan Smith61b4fbf2021-03-09 08:05:37 -0800537 echo $(dirname "${GLANCE_CONF_DIR}")/glance-remote/$(basename "$1")
Dan Smith802259a2021-01-12 22:55:57 +0000538}
539
540# start_glance_remote_clone() - Clone the regular glance api worker
541function start_glance_remote_clone {
Dan Smith61b4fbf2021-03-09 08:05:37 -0800542 local glance_remote_conf_dir glance_remote_port remote_data
543 local glance_remote_uwsgi
Dan Smith802259a2021-01-12 22:55:57 +0000544
Dan Smith61b4fbf2021-03-09 08:05:37 -0800545 glance_remote_conf_dir="$(glance_remote_conf "")"
Dan Smith802259a2021-01-12 22:55:57 +0000546 glance_remote_port=$(get_random_port)
Dan Smith61b4fbf2021-03-09 08:05:37 -0800547 glance_remote_uwsgi="$(glance_remote_conf $GLANCE_UWSGI_CONF)"
Dan Smith802259a2021-01-12 22:55:57 +0000548
549 # Clone the existing ready-to-go glance-api setup
Dan Smith61b4fbf2021-03-09 08:05:37 -0800550 sudo rm -Rf "$glance_remote_conf_dir"
551 sudo cp -r "$GLANCE_CONF_DIR" "$glance_remote_conf_dir"
552 sudo chown $STACK_USER -R "$glance_remote_conf_dir"
Dan Smith802259a2021-01-12 22:55:57 +0000553
554 # Point this worker at different data dirs
555 remote_data="${DATA_DIR}/glance-remote"
556 mkdir -p $remote_data/os_glance_tasks_store \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800557 "${remote_data}/os_glance_staging_store"
558 iniset $(glance_remote_conf "$GLANCE_API_CONF") os_glance_staging_store \
559 filesystem_store_datadir "${remote_data}/os_glance_staging_store"
560 iniset $(glance_remote_conf "$GLANCE_API_CONF") os_glance_tasks_store \
561 filesystem_store_datadir "${remote_data}/os_glance_tasks_store"
Dan Smith802259a2021-01-12 22:55:57 +0000562
Abhishek Kekane00ac5472021-08-09 05:54:32 +0000563 # Point this worker to use different cache dir
564 mkdir -p "$remote_data/cache"
565 iniset $(glance_remote_conf "$GLANCE_API_CONF") DEFAULT \
566 image_cache_dir "${remote_data}/cache"
567
Dan Smith802259a2021-01-12 22:55:57 +0000568 # Change our uwsgi to our new port
569 sed -ri "s/^(http-socket.*):[0-9]+/\1:$glance_remote_port/" \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800570 "$glance_remote_uwsgi"
Dan Smith802259a2021-01-12 22:55:57 +0000571
572 # Update the self-reference url with our new port
573 iniset $(glance_remote_conf $GLANCE_API_CONF) DEFAULT \
574 worker_self_reference_url \
575 $(awk '-F= ' '/^http-socket/ { print "http://"$2 }' \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800576 "$glance_remote_uwsgi")
Dan Smith802259a2021-01-12 22:55:57 +0000577
578 # We need to create the systemd service for the clone, but then
579 # change it to include an Environment line to point the WSGI app
580 # at the alternate config directory.
581 write_uwsgi_user_unit_file devstack@g-api-r.service "$(which uwsgi) \
582 --procname-prefix \
583 glance-api-remote \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800584 --ini $glance_remote_uwsgi" \
Dan Smith802259a2021-01-12 22:55:57 +0000585 "" "$STACK_USER"
586 iniset -sudo ${SYSTEMD_DIR}/devstack@g-api-r.service \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800587 "Service" "Environment" \
588 "OS_GLANCE_CONFIG_DIR=$glance_remote_conf_dir"
Dan Smith802259a2021-01-12 22:55:57 +0000589
590 # Reload and restart with the new config
591 $SYSTEMCTL daemon-reload
592 $SYSTEMCTL restart devstack@g-api-r
593
594 get_or_create_service glance_remote image_remote "Alternate glance"
595 get_or_create_endpoint image_remote $REGION_NAME \
596 $(awk '-F= ' '/^http-socket/ { print "http://"$2 }' \
Dan Smith61b4fbf2021-03-09 08:05:37 -0800597 $glance_remote_uwsgi)
Dan Smith802259a2021-01-12 22:55:57 +0000598}
599
Sean Dague0eebeb42017-08-30 14:16:58 -0400600# start_glance() - Start running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100601function start_glance {
Rob Crittenden18d47782014-03-19 17:47:42 -0400602 local service_protocol=$GLANCE_SERVICE_PROTOCOL
603 if is_service_enabled tls-proxy; then
Matthew Treinish1fa65362017-06-23 22:32:37 +0000604 if [[ "$WSGI_MODE" != "uwsgi" ]]; then
605 start_tls_proxy glance-service '*' $GLANCE_SERVICE_PORT $GLANCE_SERVICE_HOST $GLANCE_SERVICE_PORT_INT
606 fi
Rob Crittenden18d47782014-03-19 17:47:42 -0400607 fi
608
Dan Smith09eea0b2020-07-09 08:31:51 -0700609 if [[ "$GLANCE_STANDALONE" == False ]]; then
Ian Wienand312517d2018-06-22 22:23:29 +1000610 run_process g-api "$(which uwsgi) --procname-prefix glance-api --ini $GLANCE_UWSGI_CONF"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000611 else
Brian Rosmaita96269d82018-12-17 10:38:42 -0500612 run_process g-api "$GLANCE_BIN_DIR/glance-api --config-dir=$GLANCE_CONF_DIR"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000613 fi
Rob Crittenden18d47782014-03-19 17:47:42 -0400614
Dan Smith802259a2021-01-12 22:55:57 +0000615 if is_service_enabled g-api-r; then
616 echo "Starting the g-api-r clone service..."
617 start_glance_remote_clone
618 fi
619
Matthew Treinish1fa65362017-06-23 22:32:37 +0000620 echo "Waiting for g-api ($GLANCE_SERVICE_HOST) to start..."
621 if ! wait_for_service $SERVICE_TIMEOUT $GLANCE_URL; then
Sean Dague101b4242013-10-22 08:47:11 -0400622 die $LINENO "g-api did not start"
Dean Troyer73f6f252012-09-17 11:22:21 -0500623 fi
624}
625
Dean Troyer699a29f2012-09-10 14:10:27 -0500626# stop_glance() - Stop running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100627function stop_glance {
Chris Dent2f27a0e2014-09-09 13:46:02 +0100628 stop_process g-api
Dan Smith802259a2021-01-12 22:55:57 +0000629 stop_process g-api-r
Dean Troyer73f6f252012-09-17 11:22:21 -0500630}
631
632# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100633$_XTRACE_GLANCE
Sean Dague584d90e2013-03-29 14:34:53 -0400634
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100635# Tell emacs to use shell-script-mode
636## Local variables:
637## mode: shell-script
638## End: