Sean Dague | e263c82 | 2014-12-05 14:25:28 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 3 | # lib/swift |
Dean Troyer | 6d04fd7 | 2012-12-21 11:03:37 -0600 | [diff] [blame] | 4 | # Functions to control the configuration and operation of the **Swift** service |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 5 | |
| 6 | # Dependencies: |
Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 7 | # |
| 8 | # - ``functions`` file |
| 9 | # - ``apache`` file |
| 10 | # - ``DEST``, ``SCREEN_NAME``, `SWIFT_HASH` must be defined |
| 11 | # - ``STACK_USER`` must be defined |
| 12 | # - ``SWIFT_DATA_DIR`` or ``DATA_DIR`` must be defined |
| 13 | # - ``lib/keystone`` file |
| 14 | # |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 15 | # ``stack.sh`` calls the entry points in this order: |
| 16 | # |
Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 17 | # - install_swift |
| 18 | # - _config_swift_apache_wsgi |
| 19 | # - configure_swift |
| 20 | # - init_swift |
| 21 | # - start_swift |
| 22 | # - stop_swift |
| 23 | # - cleanup_swift |
| 24 | # - _cleanup_swift_apache_wsgi |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 25 | |
| 26 | # Save trace setting |
| 27 | XTRACE=$(set +o | grep xtrace) |
| 28 | set +o xtrace |
| 29 | |
| 30 | |
| 31 | # Defaults |
| 32 | # -------- |
| 33 | |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 34 | if is_ssl_enabled_service "s-proxy" || is_service_enabled tls-proxy; then |
| 35 | SWIFT_SERVICE_PROTOCOL="https" |
| 36 | fi |
| 37 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 38 | # Set up default directories |
Sean Dague | e08ab10 | 2014-11-13 17:09:28 -0500 | [diff] [blame] | 39 | GITDIR["python-swiftclient"]=$DEST/python-swiftclient |
Sean Dague | 5cb1906 | 2014-11-01 01:37:45 +0100 | [diff] [blame] | 40 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 41 | SWIFT_DIR=$DEST/swift |
Dean Troyer | 64ab774 | 2012-12-28 15:38:28 -0600 | [diff] [blame] | 42 | SWIFT_AUTH_CACHE_DIR=${SWIFT_AUTH_CACHE_DIR:-/var/cache/swift} |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 43 | SWIFT_APACHE_WSGI_DIR=${SWIFT_APACHE_WSGI_DIR:-/var/www/swift} |
Dean Troyer | b7490da | 2013-03-18 16:07:56 -0500 | [diff] [blame] | 44 | SWIFT3_DIR=$DEST/swift3 |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 45 | |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 46 | SWIFT_SERVICE_PROTOCOL=${SWIFT_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL} |
| 47 | SWIFT_DEFAULT_BIND_PORT_INT=${SWIFT_DEFAULT_BIND_PORT_INT:-8081} |
Brian Haley | 180f5eb | 2015-06-16 13:14:31 -0400 | [diff] [blame] | 48 | SWIFT_SERVICE_LOCAL_HOST=${SWIFT_SERVICE_LOCAL_HOST:-$SERVICE_LOCAL_HOST} |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 49 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 50 | # TODO: add logging to different location. |
| 51 | |
| 52 | # Set ``SWIFT_DATA_DIR`` to the location of swift drives and objects. |
| 53 | # Default is the common DevStack data directory. |
| 54 | SWIFT_DATA_DIR=${SWIFT_DATA_DIR:-${DATA_DIR}/swift} |
Attila Fazekas | e602441 | 2013-09-15 18:38:48 +0200 | [diff] [blame] | 55 | SWIFT_DISK_IMAGE=${SWIFT_DATA_DIR}/drives/images/swift.img |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 56 | |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 57 | # Set ``SWIFT_CONF_DIR`` to the location of the configuration files. |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 58 | # Default is ``/etc/swift``. |
JordanP | a6dfe81 | 2014-11-20 18:06:23 +0100 | [diff] [blame] | 59 | SWIFT_CONF_DIR=${SWIFT_CONF_DIR:-/etc/swift} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 60 | |
Dean Troyer | b7490da | 2013-03-18 16:07:56 -0500 | [diff] [blame] | 61 | if is_service_enabled s-proxy && is_service_enabled swift3; then |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 62 | # If we are using ``swift3``, we can default the S3 port to swift instead |
Dean Troyer | b7490da | 2013-03-18 16:07:56 -0500 | [diff] [blame] | 63 | # of nova-objectstore |
| 64 | S3_SERVICE_PORT=${S3_SERVICE_PORT:-8080} |
| 65 | fi |
| 66 | |
Ivan Kolodyazhny | 9ebd65b | 2015-03-08 23:51:55 +0200 | [diff] [blame] | 67 | if is_service_enabled g-api; then |
| 68 | # Minimum Cinder volume size is 1G so if Swift backend for Glance is |
| 69 | # only 1G we can not upload volume to image. |
| 70 | # Increase Swift disk size up to 2G |
| 71 | SWIFT_LOOPBACK_DISK_SIZE_DEFAULT=2G |
| 72 | else |
| 73 | # DevStack will create a loop-back disk formatted as XFS to store the |
| 74 | # swift data. Set ``SWIFT_LOOPBACK_DISK_SIZE`` to the disk size in |
| 75 | # kilobytes. |
| 76 | # Default is 1 gigabyte. |
| 77 | SWIFT_LOOPBACK_DISK_SIZE_DEFAULT=1G |
| 78 | fi |
| 79 | |
Joe Gordon | 66c5424 | 2013-11-12 16:24:14 -0800 | [diff] [blame] | 80 | # if tempest enabled the default size is 6 Gigabyte. |
Attila Fazekas | 3418c1c | 2013-09-16 18:35:49 +0200 | [diff] [blame] | 81 | if is_service_enabled tempest; then |
Joe Gordon | 66c5424 | 2013-11-12 16:24:14 -0800 | [diff] [blame] | 82 | SWIFT_LOOPBACK_DISK_SIZE_DEFAULT=${SWIFT_LOOPBACK_DISK_SIZE:-6G} |
Attila Fazekas | 3418c1c | 2013-09-16 18:35:49 +0200 | [diff] [blame] | 83 | fi |
| 84 | |
| 85 | SWIFT_LOOPBACK_DISK_SIZE=${SWIFT_LOOPBACK_DISK_SIZE:-$SWIFT_LOOPBACK_DISK_SIZE_DEFAULT} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 86 | |
Chmouel Boudjnah | bc3a339 | 2013-02-23 04:00:51 +0100 | [diff] [blame] | 87 | # Set ``SWIFT_EXTRAS_MIDDLEWARE`` to extras middlewares. |
Samuel Merritt | f19ccb6 | 2014-03-08 07:54:05 -0800 | [diff] [blame] | 88 | # Default is ``staticweb, formpost`` |
| 89 | SWIFT_EXTRAS_MIDDLEWARE=${SWIFT_EXTRAS_MIDDLEWARE:-formpost staticweb} |
Chmouel Boudjnah | bc3a339 | 2013-02-23 04:00:51 +0100 | [diff] [blame] | 90 | |
Cyril Roelandt | d988340 | 2013-09-27 15:16:51 +0000 | [diff] [blame] | 91 | # Set ``SWIFT_EXTRAS_MIDDLEWARE_LAST`` to extras middlewares that need to be at |
| 92 | # the end of the pipeline. |
Sean Dague | 5375329 | 2014-12-04 19:38:15 -0500 | [diff] [blame] | 93 | SWIFT_EXTRAS_MIDDLEWARE_LAST=${SWIFT_EXTRAS_MIDDLEWARE_LAST:-} |
Cyril Roelandt | d988340 | 2013-09-27 15:16:51 +0000 | [diff] [blame] | 94 | |
Joe H. Rahme | 1ce2ffd | 2013-10-22 15:19:09 +0200 | [diff] [blame] | 95 | # Set ``SWIFT_EXTRAS_MIDDLEWARE_NO_AUTH`` to extras middlewares that need to be at |
| 96 | # the beginning of the pipeline, before authentication middlewares. |
| 97 | SWIFT_EXTRAS_MIDDLEWARE_NO_AUTH=${SWIFT_EXTRAS_MIDDLEWARE_NO_AUTH:-crossdomain} |
| 98 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 99 | # The ring uses a configurable number of bits from a path’s MD5 hash as |
| 100 | # a partition index that designates a device. The number of bits kept |
| 101 | # from the hash is known as the partition power, and 2 to the partition |
| 102 | # power indicates the partition count. Partitioning the full MD5 hash |
| 103 | # ring allows other parts of the cluster to work in batches of items at |
| 104 | # once which ends up either more efficient or at least less complex than |
| 105 | # working with each item separately or the entire cluster all at once. |
| 106 | # By default we define 9 for the partition count (which mean 512). |
| 107 | SWIFT_PARTITION_POWER_SIZE=${SWIFT_PARTITION_POWER_SIZE:-9} |
| 108 | |
| 109 | # Set ``SWIFT_REPLICAS`` to configure how many replicas are to be |
Chmouel Boudjnah | 0c3a558 | 2013-03-06 10:58:33 +0100 | [diff] [blame] | 110 | # configured for your Swift cluster. By default we are configuring |
| 111 | # only one replica since this is way less CPU and memory intensive. If |
| 112 | # you are planning to test swift replication you may want to set this |
| 113 | # up to 3. |
| 114 | SWIFT_REPLICAS=${SWIFT_REPLICAS:-1} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 115 | SWIFT_REPLICAS_SEQ=$(seq ${SWIFT_REPLICAS}) |
| 116 | |
Peter Portante | cee4b3b | 2013-11-20 14:33:16 -0500 | [diff] [blame] | 117 | # Set ``SWIFT_LOG_TOKEN_LENGTH`` to configure how many characters of an auth |
| 118 | # token should be placed in the logs. When keystone is used with PKI tokens, |
| 119 | # the token values can be huge, seemingly larger the 2K, at the least. We |
| 120 | # restrict it here to a default of 12 characters, which should be enough to |
| 121 | # trace through the logs when looking for its use. |
| 122 | SWIFT_LOG_TOKEN_LENGTH=${SWIFT_LOG_TOKEN_LENGTH:-12} |
| 123 | |
Julien Vey | 63024d9 | 2014-05-06 15:10:07 +0200 | [diff] [blame] | 124 | # Set ``SWIFT_MAX_HEADER_SIZE`` to configure the maximun length of headers in |
| 125 | # Swift API |
| 126 | SWIFT_MAX_HEADER_SIZE=${SWIFT_MAX_HEADER_SIZE:-16384} |
| 127 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 128 | # Set ``OBJECT_PORT_BASE``, ``CONTAINER_PORT_BASE``, ``ACCOUNT_PORT_BASE`` |
| 129 | # Port bases used in port number calclution for the service "nodes" |
| 130 | # The specified port number will be used, the additinal ports calculated by |
| 131 | # base_port + node_num * 10 |
Dean Troyer | 1151d6f | 2013-03-29 14:06:52 -0500 | [diff] [blame] | 132 | OBJECT_PORT_BASE=${OBJECT_PORT_BASE:-6013} |
| 133 | CONTAINER_PORT_BASE=${CONTAINER_PORT_BASE:-6011} |
| 134 | ACCOUNT_PORT_BASE=${ACCOUNT_PORT_BASE:-6012} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 135 | |
Jim Rollenhagen | abbb0e9 | 2014-08-05 18:01:48 +0000 | [diff] [blame] | 136 | # Enable tempurl feature |
| 137 | SWIFT_ENABLE_TEMPURLS=${SWIFT_ENABLE_TEMPURLS:-False} |
Sean Dague | 5375329 | 2014-12-04 19:38:15 -0500 | [diff] [blame] | 138 | SWIFT_TEMPURL_KEY=${SWIFT_TEMPURL_KEY:-} |
Jim Rollenhagen | abbb0e9 | 2014-08-05 18:01:48 +0000 | [diff] [blame] | 139 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 140 | # Toggle for deploying Swift under HTTPD + mod_wsgi |
| 141 | SWIFT_USE_MOD_WSGI=${SWIFT_USE_MOD_WSGI:-False} |
| 142 | |
Dean Troyer | 4237f59 | 2014-01-29 16:22:11 -0600 | [diff] [blame] | 143 | # Tell Tempest this project is present |
| 144 | TEMPEST_SERVICES+=,swift |
| 145 | |
Dean Troyer | 6d04fd7 | 2012-12-21 11:03:37 -0600 | [diff] [blame] | 146 | |
Dean Troyer | cc6b443 | 2013-04-08 15:38:03 -0500 | [diff] [blame] | 147 | # Functions |
| 148 | # --------- |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 149 | |
Dean Troyer | e4fa721 | 2014-01-15 15:04:49 -0600 | [diff] [blame] | 150 | # Test if any Swift services are enabled |
| 151 | # is_swift_enabled |
| 152 | function is_swift_enabled { |
| 153 | [[ ,${ENABLED_SERVICES} =~ ,"s-" ]] && return 0 |
| 154 | return 1 |
| 155 | } |
| 156 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 157 | # cleanup_swift() - Remove residual data files |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 158 | function cleanup_swift { |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 159 | rm -f ${SWIFT_CONF_DIR}{*.builder,*.ring.gz,backups/*.builder,backups/*.ring.gz} |
| 160 | if egrep -q ${SWIFT_DATA_DIR}/drives/sdb1 /proc/mounts; then |
| 161 | sudo umount ${SWIFT_DATA_DIR}/drives/sdb1 |
| 162 | fi |
| 163 | if [[ -e ${SWIFT_DISK_IMAGE} ]]; then |
| 164 | rm ${SWIFT_DISK_IMAGE} |
| 165 | fi |
| 166 | rm -rf ${SWIFT_DATA_DIR}/run/ |
Morgan Fainberg | 46455a3 | 2014-06-20 10:37:18 -0700 | [diff] [blame] | 167 | if [ "$SWIFT_USE_MOD_WSGI" == "True" ]; then |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 168 | _cleanup_swift_apache_wsgi |
| 169 | fi |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | # _cleanup_swift_apache_wsgi() - Remove wsgi files, disable and remove apache vhost file |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 173 | function _cleanup_swift_apache_wsgi { |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 174 | sudo rm -f $SWIFT_APACHE_WSGI_DIR/*.wsgi |
Jamie Lennox | 5470701 | 2013-09-17 12:07:48 +1000 | [diff] [blame] | 175 | disable_apache_site proxy-server |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 176 | local node_number type |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 177 | for node_number in ${SWIFT_REPLICAS_SEQ}; do |
| 178 | for type in object container account; do |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 179 | local site_name=${type}-server-${node_number} |
Jamie Lennox | 5470701 | 2013-09-17 12:07:48 +1000 | [diff] [blame] | 180 | disable_apache_site ${site_name} |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 181 | sudo rm -f $(apache_site_config_for ${site_name}) |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 182 | done |
| 183 | done |
| 184 | } |
| 185 | |
| 186 | # _config_swift_apache_wsgi() - Set WSGI config files of Swift |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 187 | function _config_swift_apache_wsgi { |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 188 | sudo mkdir -p ${SWIFT_APACHE_WSGI_DIR} |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 189 | local proxy_port=${SWIFT_DEFAULT_BIND_PORT:-8080} |
| 190 | |
| 191 | # copy proxy vhost and wsgi file |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 192 | sudo cp ${SWIFT_DIR}/examples/apache2/proxy-server.template $(apache_site_config_for proxy-server) |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 193 | sudo sed -e " |
| 194 | /^#/d;/^$/d; |
| 195 | s/%PORT%/$proxy_port/g; |
| 196 | s/%SERVICENAME%/proxy-server/g; |
| 197 | s/%APACHE_NAME%/${APACHE_NAME}/g; |
Jamie Lennox | d582460 | 2013-09-17 11:44:37 +1000 | [diff] [blame] | 198 | s/%USER%/${STACK_USER}/g; |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 199 | " -i $(apache_site_config_for proxy-server) |
Jamie Lennox | 5470701 | 2013-09-17 12:07:48 +1000 | [diff] [blame] | 200 | enable_apache_site proxy-server |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 201 | |
| 202 | sudo cp ${SWIFT_DIR}/examples/wsgi/proxy-server.wsgi.template ${SWIFT_APACHE_WSGI_DIR}/proxy-server.wsgi |
| 203 | sudo sed -e " |
| 204 | /^#/d;/^$/d; |
| 205 | s/%SERVICECONF%/proxy-server.conf/g; |
| 206 | " -i ${SWIFT_APACHE_WSGI_DIR}/proxy-server.wsgi |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 207 | |
| 208 | # copy apache vhost file and set name and port |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 209 | local node_number |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 210 | for node_number in ${SWIFT_REPLICAS_SEQ}; do |
Ian Wienand | 761c456 | 2014-10-21 11:41:37 +1100 | [diff] [blame] | 211 | local object_port=$(( OBJECT_PORT_BASE + 10 * (node_number - 1) )) |
| 212 | local container_port=$(( CONTAINER_PORT_BASE + 10 * (node_number - 1) )) |
| 213 | local account_port=$(( ACCOUNT_PORT_BASE + 10 * (node_number - 1) )) |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 214 | |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 215 | sudo cp ${SWIFT_DIR}/examples/apache2/object-server.template $(apache_site_config_for object-server-${node_number}) |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 216 | sudo sed -e " |
| 217 | s/%PORT%/$object_port/g; |
| 218 | s/%SERVICENAME%/object-server-${node_number}/g; |
| 219 | s/%APACHE_NAME%/${APACHE_NAME}/g; |
Jamie Lennox | d582460 | 2013-09-17 11:44:37 +1000 | [diff] [blame] | 220 | s/%USER%/${STACK_USER}/g; |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 221 | " -i $(apache_site_config_for object-server-${node_number}) |
Jamie Lennox | 5470701 | 2013-09-17 12:07:48 +1000 | [diff] [blame] | 222 | enable_apache_site object-server-${node_number} |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 223 | |
| 224 | sudo cp ${SWIFT_DIR}/examples/wsgi/object-server.wsgi.template ${SWIFT_APACHE_WSGI_DIR}/object-server-${node_number}.wsgi |
| 225 | sudo sed -e " |
| 226 | /^#/d;/^$/d; |
| 227 | s/%SERVICECONF%/object-server\/${node_number}.conf/g; |
| 228 | " -i ${SWIFT_APACHE_WSGI_DIR}/object-server-${node_number}.wsgi |
| 229 | |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 230 | sudo cp ${SWIFT_DIR}/examples/apache2/container-server.template $(apache_site_config_for container-server-${node_number}) |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 231 | sudo sed -e " |
| 232 | /^#/d;/^$/d; |
| 233 | s/%PORT%/$container_port/g; |
| 234 | s/%SERVICENAME%/container-server-${node_number}/g; |
| 235 | s/%APACHE_NAME%/${APACHE_NAME}/g; |
Jamie Lennox | d582460 | 2013-09-17 11:44:37 +1000 | [diff] [blame] | 236 | s/%USER%/${STACK_USER}/g; |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 237 | " -i $(apache_site_config_for container-server-${node_number}) |
Jamie Lennox | 5470701 | 2013-09-17 12:07:48 +1000 | [diff] [blame] | 238 | enable_apache_site container-server-${node_number} |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 239 | |
| 240 | sudo cp ${SWIFT_DIR}/examples/wsgi/container-server.wsgi.template ${SWIFT_APACHE_WSGI_DIR}/container-server-${node_number}.wsgi |
| 241 | sudo sed -e " |
| 242 | /^#/d;/^$/d; |
| 243 | s/%SERVICECONF%/container-server\/${node_number}.conf/g; |
| 244 | " -i ${SWIFT_APACHE_WSGI_DIR}/container-server-${node_number}.wsgi |
| 245 | |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 246 | sudo cp ${SWIFT_DIR}/examples/apache2/account-server.template $(apache_site_config_for account-server-${node_number}) |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 247 | sudo sed -e " |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 248 | /^#/d;/^$/d; |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 249 | s/%PORT%/$account_port/g; |
| 250 | s/%SERVICENAME%/account-server-${node_number}/g; |
| 251 | s/%APACHE_NAME%/${APACHE_NAME}/g; |
Jamie Lennox | d582460 | 2013-09-17 11:44:37 +1000 | [diff] [blame] | 252 | s/%USER%/${STACK_USER}/g; |
Gabriel Assis Bezerra | a688bc6 | 2014-05-27 20:58:22 +0000 | [diff] [blame] | 253 | " -i $(apache_site_config_for account-server-${node_number}) |
Jamie Lennox | 5470701 | 2013-09-17 12:07:48 +1000 | [diff] [blame] | 254 | enable_apache_site account-server-${node_number} |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 255 | |
| 256 | sudo cp ${SWIFT_DIR}/examples/wsgi/account-server.wsgi.template ${SWIFT_APACHE_WSGI_DIR}/account-server-${node_number}.wsgi |
| 257 | sudo sed -e " |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 258 | /^#/d;/^$/d; |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 259 | s/%SERVICECONF%/account-server\/${node_number}.conf/g; |
| 260 | " -i ${SWIFT_APACHE_WSGI_DIR}/account-server-${node_number}.wsgi |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 261 | done |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 262 | } |
| 263 | |
Ian Wienand | f8e86bb | 2014-02-21 15:16:31 +1100 | [diff] [blame] | 264 | # This function generates an object/container/account configuration |
| 265 | # emulating 4 nodes on different ports |
Chmouel Boudjnah | 6c585d7 | 2014-10-04 08:14:30 +0200 | [diff] [blame] | 266 | function generate_swift_config_services { |
Ian Wienand | f8e86bb | 2014-02-21 15:16:31 +1100 | [diff] [blame] | 267 | local swift_node_config=$1 |
| 268 | local node_id=$2 |
| 269 | local bind_port=$3 |
| 270 | local server_type=$4 |
| 271 | |
Ian Wienand | 761c456 | 2014-10-21 11:41:37 +1100 | [diff] [blame] | 272 | log_facility=$(( node_id - 1 )) |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 273 | local node_path=${SWIFT_DATA_DIR}/${node_number} |
Ian Wienand | f8e86bb | 2014-02-21 15:16:31 +1100 | [diff] [blame] | 274 | |
| 275 | iniuncomment ${swift_node_config} DEFAULT user |
| 276 | iniset ${swift_node_config} DEFAULT user ${STACK_USER} |
| 277 | |
| 278 | iniuncomment ${swift_node_config} DEFAULT bind_port |
| 279 | iniset ${swift_node_config} DEFAULT bind_port ${bind_port} |
| 280 | |
| 281 | iniuncomment ${swift_node_config} DEFAULT swift_dir |
| 282 | iniset ${swift_node_config} DEFAULT swift_dir ${SWIFT_CONF_DIR} |
| 283 | |
| 284 | iniuncomment ${swift_node_config} DEFAULT devices |
| 285 | iniset ${swift_node_config} DEFAULT devices ${node_path} |
| 286 | |
| 287 | iniuncomment ${swift_node_config} DEFAULT log_facility |
| 288 | iniset ${swift_node_config} DEFAULT log_facility LOG_LOCAL${log_facility} |
| 289 | |
| 290 | iniuncomment ${swift_node_config} DEFAULT workers |
Chmouel Boudjnah | 55dc2c2 | 2014-09-12 09:34:20 +0200 | [diff] [blame] | 291 | iniset ${swift_node_config} DEFAULT workers ${API_WORKERS:-1} |
Ian Wienand | f8e86bb | 2014-02-21 15:16:31 +1100 | [diff] [blame] | 292 | |
| 293 | iniuncomment ${swift_node_config} DEFAULT disable_fallocate |
| 294 | iniset ${swift_node_config} DEFAULT disable_fallocate true |
| 295 | |
| 296 | iniuncomment ${swift_node_config} DEFAULT mount_check |
| 297 | iniset ${swift_node_config} DEFAULT mount_check false |
| 298 | |
| 299 | iniuncomment ${swift_node_config} ${server_type}-replicator vm_test_mode |
| 300 | iniset ${swift_node_config} ${server_type}-replicator vm_test_mode yes |
Chmouel Boudjnah | 6c585d7 | 2014-10-04 08:14:30 +0200 | [diff] [blame] | 301 | |
| 302 | # Using a sed and not iniset/iniuncomment because we want to a global |
| 303 | # modification and make sure it works for new sections. |
| 304 | sed -i -e "s,#[ ]*recon_cache_path .*,recon_cache_path = ${SWIFT_DATA_DIR}/cache," ${swift_node_config} |
Ian Wienand | f8e86bb | 2014-02-21 15:16:31 +1100 | [diff] [blame] | 305 | } |
| 306 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 307 | # configure_swift() - Set config files, create data dirs and loop image |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 308 | function configure_swift { |
Joe H. Rahme | 1ce2ffd | 2013-10-22 15:19:09 +0200 | [diff] [blame] | 309 | local swift_pipeline="${SWIFT_EXTRAS_MIDDLEWARE_NO_AUTH}" |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 310 | local node_number |
| 311 | local swift_node_config |
| 312 | local swift_log_dir |
Geronimo Orozco | 2f6576b | 2015-03-19 12:08:23 -0600 | [diff] [blame] | 313 | local user_group |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 314 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 315 | # Make sure to kill all swift processes first |
Chmouel Boudjnah | ad8b276 | 2013-01-10 15:40:01 +0100 | [diff] [blame] | 316 | swift-init --run-dir=${SWIFT_DATA_DIR}/run all stop || true |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 317 | |
Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 318 | sudo install -d -o ${STACK_USER} ${SWIFT_CONF_DIR} |
| 319 | sudo install -d -o ${STACK_USER} ${SWIFT_CONF_DIR}/{object,container,account}-server |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 320 | |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 321 | if [[ "$SWIFT_CONF_DIR" != "/etc/swift" ]]; then |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 322 | # Some swift tools are hard-coded to use ``/etc/swift`` and are apparently not going to be fixed. |
| 323 | # Create a symlink if the config dir is moved |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 324 | sudo ln -sf ${SWIFT_CONF_DIR} /etc/swift |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 325 | fi |
| 326 | |
| 327 | # Swift use rsync to synchronize between all the different |
| 328 | # partitions (which make more sense when you have a multi-node |
| 329 | # setup) we configure it with our version of rsync. |
| 330 | sed -e " |
| 331 | s/%GROUP%/${USER_GROUP}/; |
Stephan Renatus | e578eff | 2013-11-19 13:31:04 +0100 | [diff] [blame] | 332 | s/%USER%/${STACK_USER}/; |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 333 | s,%SWIFT_DATA_DIR%,$SWIFT_DATA_DIR,; |
| 334 | " $FILES/swift/rsyncd.conf | sudo tee /etc/rsyncd.conf |
| 335 | # rsyncd.conf just prepared for 4 nodes |
Vincent Untz | c18b965 | 2012-12-04 12:36:34 +0100 | [diff] [blame] | 336 | if is_ubuntu; then |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 337 | sudo sed -i '/^RSYNC_ENABLE=false/ { s/false/true/ }' /etc/default/rsync |
Attila Fazekas | 0e57b96 | 2014-02-28 09:09:52 +0100 | [diff] [blame] | 338 | elif [ -e /etc/xinetd.d/rsync ]; then |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 339 | sudo sed -i '/disable *= *yes/ { s/yes/no/ }' /etc/xinetd.d/rsync |
| 340 | fi |
| 341 | |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 342 | SWIFT_CONFIG_PROXY_SERVER=${SWIFT_CONF_DIR}/proxy-server.conf |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 343 | cp ${SWIFT_DIR}/etc/proxy-server.conf-sample ${SWIFT_CONFIG_PROXY_SERVER} |
| 344 | |
Daisuke Morita | d03915f | 2014-10-08 06:52:21 +0000 | [diff] [blame] | 345 | # To run container sync feature introduced in Swift ver 1.12.0, |
| 346 | # container sync "realm" is added in container-sync-realms.conf |
| 347 | local csyncfile=${SWIFT_CONF_DIR}/container-sync-realms.conf |
| 348 | cp ${SWIFT_DIR}/etc/container-sync-realms.conf-sample ${csyncfile} |
| 349 | iniset ${csyncfile} realm1 key realm1key |
| 350 | iniset ${csyncfile} realm1 cluster_name1 "$SWIFT_SERVICE_PROTOCOL://$SERVICE_HOST:8080/v1/" |
Chmouel Boudjnah | f2c1a71 | 2014-01-29 21:38:14 +0000 | [diff] [blame] | 351 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 352 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT user |
Stephan Renatus | e578eff | 2013-11-19 13:31:04 +0100 | [diff] [blame] | 353 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT user ${STACK_USER} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 354 | |
| 355 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT swift_dir |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 356 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT swift_dir ${SWIFT_CONF_DIR} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 357 | |
| 358 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT workers |
| 359 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT workers 1 |
| 360 | |
| 361 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT log_level |
| 362 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT log_level DEBUG |
| 363 | |
| 364 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT bind_port |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 365 | if is_service_enabled tls-proxy; then |
| 366 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT bind_port ${SWIFT_DEFAULT_BIND_PORT_INT} |
| 367 | else |
| 368 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT bind_port ${SWIFT_DEFAULT_BIND_PORT:-8080} |
| 369 | fi |
| 370 | |
| 371 | if is_ssl_enabled_service s-proxy; then |
| 372 | ensure_certificates SWIFT |
| 373 | |
| 374 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT cert_file "$SWIFT_SSL_CERT" |
| 375 | iniset ${SWIFT_CONFIG_PROXY_SERVER} DEFAULT key_file "$SWIFT_SSL_KEY" |
| 376 | fi |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 377 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 378 | # DevStack is commonly run in a small slow environment, so bump the timeouts up. |
| 379 | # ``node_timeout`` is the node read operation response time to the proxy server |
| 380 | # ``conn_timeout`` is how long it takes a connect() system call to return |
Joe Gordon | d254da5 | 2013-11-19 21:06:29 -0800 | [diff] [blame] | 381 | iniset ${SWIFT_CONFIG_PROXY_SERVER} app:proxy-server node_timeout 120 |
| 382 | iniset ${SWIFT_CONFIG_PROXY_SERVER} app:proxy-server conn_timeout 20 |
| 383 | |
Dina Belova | eedfdee | 2014-06-24 16:52:46 +0400 | [diff] [blame] | 384 | # Configure Ceilometer |
| 385 | if is_service_enabled ceilometer; then |
| 386 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:ceilometer "set log_level" "WARN" |
gordon chung | b6197e6 | 2015-02-12 15:33:35 -0500 | [diff] [blame] | 387 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:ceilometer paste.filter_factory "ceilometermiddleware.swift:filter_factory" |
| 388 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:ceilometer control_exchange "swift" |
| 389 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:ceilometer url $(get_transport_url) |
| 390 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:ceilometer driver "messaging" |
| 391 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:ceilometer topic "notifications" |
Dina Belova | eedfdee | 2014-06-24 16:52:46 +0400 | [diff] [blame] | 392 | SWIFT_EXTRAS_MIDDLEWARE_LAST="${SWIFT_EXTRAS_MIDDLEWARE_LAST} ceilometer" |
| 393 | fi |
Cyril Roelandt | d988340 | 2013-09-27 15:16:51 +0000 | [diff] [blame] | 394 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 395 | # Restrict the length of auth tokens in the Swift ``proxy-server`` logs. |
Peter Portante | cee4b3b | 2013-11-20 14:33:16 -0500 | [diff] [blame] | 396 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:proxy-logging reveal_sensitive_prefix ${SWIFT_LOG_TOKEN_LENGTH} |
| 397 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 398 | # By default Swift will be installed with Keystone and tempauth middleware |
Chmouel Boudjnah | 5cac378 | 2013-07-17 15:13:44 +0000 | [diff] [blame] | 399 | # and add the swift3 middleware if its configured for it. The token for |
Adam Spiers | cb96159 | 2013-10-05 12:11:07 +0100 | [diff] [blame] | 400 | # tempauth would be prefixed with the reseller_prefix setting `TEMPAUTH_` the |
| 401 | # token for keystoneauth would have the standard reseller_prefix `AUTH_` |
Chmouel Boudjnah | 5cac378 | 2013-07-17 15:13:44 +0000 | [diff] [blame] | 402 | if is_service_enabled swift3;then |
Joe H. Rahme | 1ce2ffd | 2013-10-22 15:19:09 +0200 | [diff] [blame] | 403 | swift_pipeline+=" swift3 s3token " |
Chmouel Boudjnah | bc3a339 | 2013-02-23 04:00:51 +0100 | [diff] [blame] | 404 | fi |
Chmouel Boudjnah | 254fd55 | 2014-06-30 12:22:59 +0000 | [diff] [blame] | 405 | |
Dean Troyer | 5ce44cd | 2015-02-12 22:18:33 -0600 | [diff] [blame] | 406 | if is_service_enabled keystone; then |
Chmouel Boudjnah | 254fd55 | 2014-06-30 12:22:59 +0000 | [diff] [blame] | 407 | swift_pipeline+=" authtoken keystoneauth" |
| 408 | fi |
| 409 | swift_pipeline+=" tempauth " |
| 410 | |
Chmouel Boudjnah | bc3a339 | 2013-02-23 04:00:51 +0100 | [diff] [blame] | 411 | sed -i "/^pipeline/ { s/tempauth/${swift_pipeline} ${SWIFT_EXTRAS_MIDDLEWARE}/ ;}" ${SWIFT_CONFIG_PROXY_SERVER} |
Cyril Roelandt | d988340 | 2013-09-27 15:16:51 +0000 | [diff] [blame] | 412 | sed -i "/^pipeline/ { s/proxy-server/${SWIFT_EXTRAS_MIDDLEWARE_LAST} proxy-server/ ; }" ${SWIFT_CONFIG_PROXY_SERVER} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 413 | |
| 414 | iniset ${SWIFT_CONFIG_PROXY_SERVER} app:proxy-server account_autocreate true |
| 415 | |
Joe H. Rahme | 1ce2ffd | 2013-10-22 15:19:09 +0200 | [diff] [blame] | 416 | # Configure Crossdomain |
| 417 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:crossdomain use "egg:swift#crossdomain" |
| 418 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 419 | # Configure authtoken middleware to use the same Python logging |
| 420 | # adapter provided by the Swift ``proxy-server``, so that request transaction |
Peter Portante | 8afc893 | 2013-11-20 17:34:39 -0500 | [diff] [blame] | 421 | # IDs will included in all of its log messages. |
| 422 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:authtoken log_name swift |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 423 | |
Jamie Lennox | 38c95b8 | 2015-01-30 02:15:42 +0000 | [diff] [blame] | 424 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:authtoken paste.filter_factory keystonemiddleware.auth_token:filter_factory |
Jamie Lennox | 6ac97de | 2015-03-12 09:03:28 +1100 | [diff] [blame] | 425 | configure_auth_token_middleware $SWIFT_CONFIG_PROXY_SERVER swift $SWIFT_AUTH_CACHE_DIR filter:authtoken |
Jamie Lennox | 38c95b8 | 2015-01-30 02:15:42 +0000 | [diff] [blame] | 426 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:authtoken delay_auth_decision 1 |
| 427 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:authtoken cache swift.cache |
| 428 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:authtoken include_service_catalog False |
| 429 | |
| 430 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:keystoneauth use "egg:swift#keystoneauth" |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 431 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:keystoneauth operator_roles "Member, admin" |
| 432 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 433 | # Configure Tempauth. In the sample config file Keystoneauth is commented |
Donagh McCabe | 7faceb6 | 2014-12-19 13:20:45 +0000 | [diff] [blame] | 434 | # out. Make sure we uncomment Tempauth after we uncomment Keystoneauth |
| 435 | # otherwise, this code also sets the reseller_prefix for Keystoneauth. |
| 436 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} filter:tempauth account_autocreate |
| 437 | iniuncomment ${SWIFT_CONFIG_PROXY_SERVER} filter:tempauth reseller_prefix |
| 438 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:tempauth reseller_prefix "TEMPAUTH" |
| 439 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 440 | if is_service_enabled swift3; then |
| 441 | cat <<EOF >>${SWIFT_CONFIG_PROXY_SERVER} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 442 | [filter:s3token] |
Cyril Roelandt | e8a2fa4 | 2015-05-06 17:30:48 +0200 | [diff] [blame] | 443 | paste.filter_factory = keystonemiddleware.s3_token:filter_factory |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 444 | auth_port = ${KEYSTONE_AUTH_PORT} |
| 445 | auth_host = ${KEYSTONE_AUTH_HOST} |
| 446 | auth_protocol = ${KEYSTONE_AUTH_PROTOCOL} |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 447 | cafile = ${SSL_BUNDLE_FILE} |
Attila Fazekas | fbb3e77 | 2015-03-03 15:08:28 +0100 | [diff] [blame] | 448 | admin_user = swift |
| 449 | admin_tenant_name = ${SERVICE_TENANT_NAME} |
| 450 | admin_password = ${SERVICE_PASSWORD} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 451 | |
| 452 | [filter:swift3] |
| 453 | use = egg:swift3#swift3 |
| 454 | EOF |
| 455 | fi |
| 456 | |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 457 | cp ${SWIFT_DIR}/etc/swift.conf-sample ${SWIFT_CONF_DIR}/swift.conf |
| 458 | iniset ${SWIFT_CONF_DIR}/swift.conf swift-hash swift_hash_path_suffix ${SWIFT_HASH} |
Julien Vey | 63024d9 | 2014-05-06 15:10:07 +0200 | [diff] [blame] | 459 | iniset ${SWIFT_CONF_DIR}/swift.conf swift-constraints max_header_size ${SWIFT_MAX_HEADER_SIZE} |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 460 | |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 461 | local node_number |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 462 | for node_number in ${SWIFT_REPLICAS_SEQ}; do |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 463 | local swift_node_config=${SWIFT_CONF_DIR}/object-server/${node_number}.conf |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 464 | cp ${SWIFT_DIR}/etc/object-server.conf-sample ${swift_node_config} |
Chmouel Boudjnah | 6c585d7 | 2014-10-04 08:14:30 +0200 | [diff] [blame] | 465 | generate_swift_config_services ${swift_node_config} ${node_number} $(( OBJECT_PORT_BASE + 10 * (node_number - 1) )) object |
Chmouel Boudjnah | 8e5d2f0 | 2012-12-20 13:11:43 +0000 | [diff] [blame] | 466 | iniset ${swift_node_config} filter:recon recon_cache_path ${SWIFT_DATA_DIR}/cache |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 467 | |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 468 | swift_node_config=${SWIFT_CONF_DIR}/container-server/${node_number}.conf |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 469 | cp ${SWIFT_DIR}/etc/container-server.conf-sample ${swift_node_config} |
Chmouel Boudjnah | 6c585d7 | 2014-10-04 08:14:30 +0200 | [diff] [blame] | 470 | generate_swift_config_services ${swift_node_config} ${node_number} $(( CONTAINER_PORT_BASE + 10 * (node_number - 1) )) container |
Attila Fazekas | 83e1095 | 2012-11-30 23:28:07 +0100 | [diff] [blame] | 471 | iniuncomment ${swift_node_config} app:container-server allow_versions |
| 472 | iniset ${swift_node_config} app:container-server allow_versions "true" |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 473 | |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 474 | swift_node_config=${SWIFT_CONF_DIR}/account-server/${node_number}.conf |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 475 | cp ${SWIFT_DIR}/etc/account-server.conf-sample ${swift_node_config} |
Chmouel Boudjnah | 6c585d7 | 2014-10-04 08:14:30 +0200 | [diff] [blame] | 476 | generate_swift_config_services ${swift_node_config} ${node_number} $(( ACCOUNT_PORT_BASE + 10 * (node_number - 1) )) account |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 477 | done |
| 478 | |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 479 | # Set new accounts in tempauth to match keystone tenant/user (to make testing easier) |
| 480 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:tempauth user_swifttenanttest1_swiftusertest1 "testing .admin" |
| 481 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:tempauth user_swifttenanttest2_swiftusertest2 "testing2 .admin" |
| 482 | iniset ${SWIFT_CONFIG_PROXY_SERVER} filter:tempauth user_swifttenanttest1_swiftusertest3 "testing3 .admin" |
| 483 | |
| 484 | testfile=${SWIFT_CONF_DIR}/test.conf |
| 485 | cp ${SWIFT_DIR}/test/sample.conf ${testfile} |
| 486 | |
| 487 | # Set accounts for functional tests |
| 488 | iniset ${testfile} func_test account swifttenanttest1 |
| 489 | iniset ${testfile} func_test username swiftusertest1 |
| 490 | iniset ${testfile} func_test username3 swiftusertest3 |
| 491 | iniset ${testfile} func_test account2 swifttenanttest2 |
| 492 | iniset ${testfile} func_test username2 swiftusertest2 |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 493 | iniset ${testfile} func_test account4 swifttenanttest4 |
| 494 | iniset ${testfile} func_test username4 swiftusertest4 |
| 495 | iniset ${testfile} func_test password4 testing4 |
| 496 | iniset ${testfile} func_test domain4 swift_test |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 497 | |
Dean Troyer | 5ce44cd | 2015-02-12 22:18:33 -0600 | [diff] [blame] | 498 | if is_service_enabled keystone; then |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 499 | iniuncomment ${testfile} func_test auth_version |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 500 | local auth_vers=$(iniget ${testfile} func_test auth_version) |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 501 | iniset ${testfile} func_test auth_host ${KEYSTONE_SERVICE_HOST} |
| 502 | iniset ${testfile} func_test auth_port ${KEYSTONE_AUTH_PORT} |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 503 | if [[ $auth_vers == "3" ]]; then |
| 504 | iniset ${testfile} func_test auth_prefix /v3/ |
| 505 | else |
| 506 | iniset ${testfile} func_test auth_prefix /v2.0/ |
| 507 | fi |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 508 | fi |
| 509 | |
Geronimo Orozco | 2f6576b | 2015-03-19 12:08:23 -0600 | [diff] [blame] | 510 | local user_group=$(id -g ${STACK_USER}) |
| 511 | sudo install -d -o ${STACK_USER} -g ${user_group} ${SWIFT_DATA_DIR} |
| 512 | |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 513 | local swift_log_dir=${SWIFT_DATA_DIR}/logs |
Geronimo Orozco | 2f6576b | 2015-03-19 12:08:23 -0600 | [diff] [blame] | 514 | sudo rm -rf ${swift_log_dir} |
| 515 | sudo install -d -o ${STACK_USER} -g adm ${swift_log_dir}/hourly |
Yves-Gwenael Bourhis | f894c2a | 2014-04-16 13:37:46 +0200 | [diff] [blame] | 516 | |
| 517 | if [[ $SYSLOG != "False" ]]; then |
| 518 | sed "s,%SWIFT_LOGDIR%,${swift_log_dir}," $FILES/swift/rsyslog.conf | sudo \ |
| 519 | tee /etc/rsyslog.d/10-swift.conf |
| 520 | # restart syslog to take the changes |
| 521 | sudo killall -HUP rsyslogd |
| 522 | fi |
Sean Dague | ad7e8c6 | 2014-03-19 19:13:20 -0400 | [diff] [blame] | 523 | |
Morgan Fainberg | 46455a3 | 2014-06-20 10:37:18 -0700 | [diff] [blame] | 524 | if [ "$SWIFT_USE_MOD_WSGI" == "True" ]; then |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 525 | _config_swift_apache_wsgi |
| 526 | fi |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 527 | } |
| 528 | |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 529 | # create_swift_disk - Create Swift backing disk |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 530 | function create_swift_disk { |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 531 | local node_number |
| 532 | |
| 533 | # First do a bit of setup by creating the directories and |
| 534 | # changing the permissions so we can run it as our user. |
| 535 | |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 536 | local user_group=$(id -g ${STACK_USER}) |
Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 537 | sudo install -d -o ${STACK_USER} -g ${user_group} ${SWIFT_DATA_DIR}/{drives,cache,run,logs} |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 538 | |
| 539 | # Create a loopback disk and format it to XFS. |
Attila Fazekas | e602441 | 2013-09-15 18:38:48 +0200 | [diff] [blame] | 540 | if [[ -e ${SWIFT_DISK_IMAGE} ]]; then |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 541 | if egrep -q ${SWIFT_DATA_DIR}/drives/sdb1 /proc/mounts; then |
| 542 | sudo umount ${SWIFT_DATA_DIR}/drives/sdb1 |
Attila Fazekas | e602441 | 2013-09-15 18:38:48 +0200 | [diff] [blame] | 543 | sudo rm -f ${SWIFT_DISK_IMAGE} |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 544 | fi |
| 545 | fi |
| 546 | |
| 547 | mkdir -p ${SWIFT_DATA_DIR}/drives/images |
Attila Fazekas | e602441 | 2013-09-15 18:38:48 +0200 | [diff] [blame] | 548 | sudo touch ${SWIFT_DISK_IMAGE} |
Stephan Renatus | e578eff | 2013-11-19 13:31:04 +0100 | [diff] [blame] | 549 | sudo chown ${STACK_USER}: ${SWIFT_DISK_IMAGE} |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 550 | |
Attila Fazekas | e602441 | 2013-09-15 18:38:48 +0200 | [diff] [blame] | 551 | truncate -s ${SWIFT_LOOPBACK_DISK_SIZE} ${SWIFT_DISK_IMAGE} |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 552 | |
| 553 | # Make a fresh XFS filesystem |
Longgeek | fd034f0 | 2014-03-24 17:32:02 +0800 | [diff] [blame] | 554 | /sbin/mkfs.xfs -f -i size=1024 ${SWIFT_DISK_IMAGE} |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 555 | |
| 556 | # Mount the disk with mount options to make it as efficient as possible |
| 557 | mkdir -p ${SWIFT_DATA_DIR}/drives/sdb1 |
| 558 | if ! egrep -q ${SWIFT_DATA_DIR}/drives/sdb1 /proc/mounts; then |
| 559 | sudo mount -t xfs -o loop,noatime,nodiratime,nobarrier,logbufs=8 \ |
Attila Fazekas | e602441 | 2013-09-15 18:38:48 +0200 | [diff] [blame] | 560 | ${SWIFT_DISK_IMAGE} ${SWIFT_DATA_DIR}/drives/sdb1 |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 561 | fi |
| 562 | |
| 563 | # Create a link to the above mount and |
| 564 | # create all of the directories needed to emulate a few different servers |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 565 | local node_number |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 566 | for node_number in ${SWIFT_REPLICAS_SEQ}; do |
| 567 | sudo ln -sf ${SWIFT_DATA_DIR}/drives/sdb1/$node_number ${SWIFT_DATA_DIR}/$node_number; |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 568 | local drive=${SWIFT_DATA_DIR}/drives/sdb1/${node_number} |
| 569 | local node=${SWIFT_DATA_DIR}/${node_number}/node |
| 570 | local node_device=${node}/sdb1 |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 571 | [[ -d $node ]] && continue |
| 572 | [[ -d $drive ]] && continue |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 573 | sudo install -o ${STACK_USER} -g $user_group -d $drive |
| 574 | sudo install -o ${STACK_USER} -g $user_group -d $node_device |
Stephan Renatus | e578eff | 2013-11-19 13:31:04 +0100 | [diff] [blame] | 575 | sudo chown -R ${STACK_USER}: ${node} |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 576 | done |
| 577 | } |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 578 | |
| 579 | # create_swift_accounts() - Set up standard Swift accounts and extra |
Chmouel Boudjnah | ba31305 | 2013-07-10 21:03:43 +0200 | [diff] [blame] | 580 | # one for tests we do this by attaching all words in the account name |
| 581 | # since we want to make it compatible with tempauth which use |
| 582 | # underscores for separators. |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 583 | |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 584 | # Tenant User Roles Domain |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 585 | # ------------------------------------------------------------------ |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 586 | # service swift service default |
| 587 | # swifttenanttest1 swiftusertest1 admin default |
| 588 | # swifttenanttest1 swiftusertest3 anotherrole default |
| 589 | # swifttenanttest2 swiftusertest2 admin default |
| 590 | # swifttenanttest4 swiftusertest4 admin swift_test |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 591 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 592 | function create_swift_accounts { |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 593 | # Defines specific passwords used by ``tools/create_userrc.sh`` |
| 594 | # As these variables are used by ``create_userrc.sh,`` they must be exported |
| 595 | # The _password suffix is expected by ``create_userrc.sh``. |
JordanP | 7c6d005 | 2014-10-06 23:08:50 +0200 | [diff] [blame] | 596 | export swiftusertest1_password=testing |
| 597 | export swiftusertest2_password=testing2 |
| 598 | export swiftusertest3_password=testing3 |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 599 | export swiftusertest4_password=testing4 |
Sahid Orentino Ferdjaoui | 1814e67 | 2014-02-11 17:56:07 +0100 | [diff] [blame] | 600 | |
Chmouel Boudjnah | ba31305 | 2013-07-10 21:03:43 +0200 | [diff] [blame] | 601 | KEYSTONE_CATALOG_BACKEND=${KEYSTONE_CATALOG_BACKEND:-sql} |
| 602 | |
Masayuki Igawa | d365405 | 2014-09-01 17:30:05 +0900 | [diff] [blame] | 603 | local another_role=$(openstack role list | awk "/ anotherrole / { print \$2 }") |
Chmouel Boudjnah | ba31305 | 2013-07-10 21:03:43 +0200 | [diff] [blame] | 604 | |
Jim Rollenhagen | ae74ed7 | 2015-02-12 07:33:36 -0800 | [diff] [blame] | 605 | # NOTE(jroll): Swift doesn't need the admin role here, however Ironic uses |
| 606 | # temp urls, which break when uploaded by a non-admin role |
| 607 | create_service_user "swift" "admin" |
Chmouel Boudjnah | ba31305 | 2013-07-10 21:03:43 +0200 | [diff] [blame] | 608 | |
| 609 | if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then |
Bartosz GĂ³rski | 0abde39 | 2014-02-28 14:15:19 +0100 | [diff] [blame] | 610 | |
Jamie Lennox | b17ad75 | 2015-05-29 06:04:47 +0000 | [diff] [blame] | 611 | get_or_create_service "swift" "object-store" "Swift Service" |
| 612 | get_or_create_endpoint "object-store" \ |
Bartosz GĂ³rski | 0abde39 | 2014-02-28 14:15:19 +0100 | [diff] [blame] | 613 | "$REGION_NAME" \ |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 614 | "$SWIFT_SERVICE_PROTOCOL://$SERVICE_HOST:8080/v1/AUTH_\$(tenant_id)s" \ |
| 615 | "$SWIFT_SERVICE_PROTOCOL://$SERVICE_HOST:8080" \ |
| 616 | "$SWIFT_SERVICE_PROTOCOL://$SERVICE_HOST:8080/v1/AUTH_\$(tenant_id)s" |
Chmouel Boudjnah | ba31305 | 2013-07-10 21:03:43 +0200 | [diff] [blame] | 617 | fi |
| 618 | |
Jamie Lennox | b632c9e | 2015-05-28 23:36:15 +0000 | [diff] [blame] | 619 | local swift_tenant_test1=$(get_or_create_project swifttenanttest1 default) |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 620 | die_if_not_set $LINENO swift_tenant_test1 "Failure creating swift_tenant_test1" |
Jamie Lennox | 9d7e776 | 2015-05-29 01:08:53 +0000 | [diff] [blame] | 621 | SWIFT_USER_TEST1=$(get_or_create_user swiftusertest1 $swiftusertest1_password \ |
| 622 | "default" "test@example.com") |
DennyZhang | 23178a9 | 2013-10-22 17:07:32 -0500 | [diff] [blame] | 623 | die_if_not_set $LINENO SWIFT_USER_TEST1 "Failure creating SWIFT_USER_TEST1" |
Jamie Lennox | 9b215db | 2015-02-10 18:19:57 +1100 | [diff] [blame] | 624 | get_or_add_user_project_role admin $SWIFT_USER_TEST1 $swift_tenant_test1 |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 625 | |
Jamie Lennox | 9d7e776 | 2015-05-29 01:08:53 +0000 | [diff] [blame] | 626 | local swift_user_test3=$(get_or_create_user swiftusertest3 $swiftusertest3_password \ |
| 627 | "default" "test3@example.com") |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 628 | die_if_not_set $LINENO swift_user_test3 "Failure creating swift_user_test3" |
Jamie Lennox | 9b215db | 2015-02-10 18:19:57 +1100 | [diff] [blame] | 629 | get_or_add_user_project_role $another_role $swift_user_test3 $swift_tenant_test1 |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 630 | |
Jamie Lennox | b632c9e | 2015-05-28 23:36:15 +0000 | [diff] [blame] | 631 | local swift_tenant_test2=$(get_or_create_project swifttenanttest2 default) |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 632 | die_if_not_set $LINENO swift_tenant_test2 "Failure creating swift_tenant_test2" |
Steve Martinelli | 1968542 | 2014-01-24 13:02:26 -0600 | [diff] [blame] | 633 | |
Jamie Lennox | 9d7e776 | 2015-05-29 01:08:53 +0000 | [diff] [blame] | 634 | local swift_user_test2=$(get_or_create_user swiftusertest2 $swiftusertest2_password \ |
| 635 | "default" "test2@example.com") |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 636 | die_if_not_set $LINENO swift_user_test2 "Failure creating swift_user_test2" |
Jamie Lennox | 9b215db | 2015-02-10 18:19:57 +1100 | [diff] [blame] | 637 | get_or_add_user_project_role admin $swift_user_test2 $swift_tenant_test2 |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 638 | |
| 639 | local swift_domain=$(get_or_create_domain swift_test 'Used for swift functional testing') |
| 640 | die_if_not_set $LINENO swift_domain "Failure creating swift_test domain" |
| 641 | |
| 642 | local swift_tenant_test4=$(get_or_create_project swifttenanttest4 $swift_domain) |
| 643 | die_if_not_set $LINENO swift_tenant_test4 "Failure creating swift_tenant_test4" |
Jamie Lennox | 18f39bf | 2015-01-28 13:38:32 +1000 | [diff] [blame] | 644 | |
Jamie Lennox | 9d7e776 | 2015-05-29 01:08:53 +0000 | [diff] [blame] | 645 | local swift_user_test4=$(get_or_create_user swiftusertest4 $swiftusertest4_password \ |
| 646 | $swift_domain "test4@example.com") |
Alistair Coles | 24779f6 | 2014-10-15 18:57:59 +0100 | [diff] [blame] | 647 | die_if_not_set $LINENO swift_user_test4 "Failure creating swift_user_test4" |
Jamie Lennox | 9b215db | 2015-02-10 18:19:57 +1100 | [diff] [blame] | 648 | get_or_add_user_project_role admin $swift_user_test4 $swift_tenant_test4 |
Chmouel Boudjnah | 0ce91a5 | 2013-07-05 11:59:24 +0000 | [diff] [blame] | 649 | } |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 650 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 651 | # init_swift() - Initialize rings |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 652 | function init_swift { |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 653 | local node_number |
| 654 | # Make sure to kill all swift processes first |
Chmouel Boudjnah | ad8b276 | 2013-01-10 15:40:01 +0100 | [diff] [blame] | 655 | swift-init --run-dir=${SWIFT_DATA_DIR}/run all stop || true |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 656 | |
Dean Troyer | 1c6c112 | 2013-03-27 17:40:53 -0500 | [diff] [blame] | 657 | # Forcibly re-create the backing filesystem |
| 658 | create_swift_disk |
| 659 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 660 | # This is where we create three different rings for swift with |
| 661 | # different object servers binding on different ports. |
Dean Troyer | 6ec72fa | 2013-03-13 11:44:53 -0500 | [diff] [blame] | 662 | pushd ${SWIFT_CONF_DIR} >/dev/null && { |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 663 | |
| 664 | rm -f *.builder *.ring.gz backups/*.builder backups/*.ring.gz |
| 665 | |
| 666 | swift-ring-builder object.builder create ${SWIFT_PARTITION_POWER_SIZE} ${SWIFT_REPLICAS} 1 |
| 667 | swift-ring-builder container.builder create ${SWIFT_PARTITION_POWER_SIZE} ${SWIFT_REPLICAS} 1 |
| 668 | swift-ring-builder account.builder create ${SWIFT_PARTITION_POWER_SIZE} ${SWIFT_REPLICAS} 1 |
| 669 | |
| 670 | for node_number in ${SWIFT_REPLICAS_SEQ}; do |
Brian Haley | 180f5eb | 2015-06-16 13:14:31 -0400 | [diff] [blame] | 671 | swift-ring-builder object.builder add z${node_number}-${SWIFT_SERVICE_LOCAL_HOST}:$(( OBJECT_PORT_BASE + 10 * (node_number - 1) ))/sdb1 1 |
| 672 | swift-ring-builder container.builder add z${node_number}-${SWIFT_SERVICE_LOCAL_HOST}:$(( CONTAINER_PORT_BASE + 10 * (node_number - 1) ))/sdb1 1 |
| 673 | swift-ring-builder account.builder add z${node_number}-${SWIFT_SERVICE_LOCAL_HOST}:$(( ACCOUNT_PORT_BASE + 10 * (node_number - 1) ))/sdb1 1 |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 674 | done |
| 675 | swift-ring-builder object.builder rebalance |
| 676 | swift-ring-builder container.builder rebalance |
| 677 | swift-ring-builder account.builder rebalance |
| 678 | } && popd >/dev/null |
| 679 | |
Dean Troyer | 64ab774 | 2012-12-28 15:38:28 -0600 | [diff] [blame] | 680 | # Create cache dir |
Dean Troyer | 8421c2b | 2015-03-16 13:52:19 -0500 | [diff] [blame] | 681 | sudo install -d -o ${STACK_USER} $SWIFT_AUTH_CACHE_DIR |
Dean Troyer | 64ab774 | 2012-12-28 15:38:28 -0600 | [diff] [blame] | 682 | rm -f $SWIFT_AUTH_CACHE_DIR/* |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 683 | } |
| 684 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 685 | function install_swift { |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 686 | git_clone $SWIFT_REPO $SWIFT_DIR $SWIFT_BRANCH |
Dean Troyer | 253a1a3 | 2013-04-01 18:23:22 -0500 | [diff] [blame] | 687 | setup_develop $SWIFT_DIR |
Morgan Fainberg | 46455a3 | 2014-06-20 10:37:18 -0700 | [diff] [blame] | 688 | if [ "$SWIFT_USE_MOD_WSGI" == "True" ]; then |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 689 | install_apache_wsgi |
| 690 | fi |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 691 | } |
| 692 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 693 | function install_swiftclient { |
Sean Dague | e08ab10 | 2014-11-13 17:09:28 -0500 | [diff] [blame] | 694 | if use_library_from_git "python-swiftclient"; then |
| 695 | git_clone_by_name "python-swiftclient" |
| 696 | setup_dev_lib "python-swiftclient" |
Sean Dague | 5cb1906 | 2014-11-01 01:37:45 +0100 | [diff] [blame] | 697 | fi |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 698 | } |
| 699 | |
Chris Dent | 1848b83 | 2015-06-27 15:05:17 +0100 | [diff] [blame] | 700 | # install_ceilometermiddleware() - Collect source and prepare |
| 701 | # note that this doesn't really have anything to do with ceilometer; |
| 702 | # though ceilometermiddleware has ceilometer in its name as an |
| 703 | # artifact of history, it is not a ceilometer specific tool. It |
| 704 | # simply generates pycadf-based notifications about requests and |
| 705 | # responses on the swift proxy |
| 706 | function install_ceilometermiddleware { |
| 707 | if use_library_from_git "ceilometermiddleware"; then |
| 708 | git_clone_by_name "ceilometermiddleware" |
| 709 | setup_dev_lib "ceilometermiddleware" |
| 710 | else |
| 711 | pip_install_gr ceilometermiddleware |
| 712 | fi |
| 713 | } |
| 714 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 715 | # start_swift() - Start running processes, including screen |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 716 | function start_swift { |
Chmouel Boudjnah | 8ecbb38 | 2013-03-12 12:15:17 +0100 | [diff] [blame] | 717 | # (re)start memcached to make sure we have a clean memcache. |
| 718 | restart_service memcached |
| 719 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 720 | # Start rsync |
Vincent Untz | c18b965 | 2012-12-04 12:36:34 +0100 | [diff] [blame] | 721 | if is_ubuntu; then |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 722 | sudo /etc/init.d/rsync restart || : |
Attila Fazekas | 0e57b96 | 2014-02-28 09:09:52 +0100 | [diff] [blame] | 723 | elif [ -e /etc/xinetd.d/rsync ]; then |
| 724 | start_service xinetd |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 725 | else |
Attila Fazekas | 0e57b96 | 2014-02-28 09:09:52 +0100 | [diff] [blame] | 726 | start_service rsyncd |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 727 | fi |
| 728 | |
Morgan Fainberg | 46455a3 | 2014-06-20 10:37:18 -0700 | [diff] [blame] | 729 | if [ "$SWIFT_USE_MOD_WSGI" == "True" ]; then |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 730 | restart_apache_server |
| 731 | swift-init --run-dir=${SWIFT_DATA_DIR}/run rest start |
Chris Dent | 2f27a0e | 2014-09-09 13:46:02 +0100 | [diff] [blame] | 732 | tail_log s-proxy /var/log/$APACHE_NAME/proxy-server |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 733 | if [[ ${SWIFT_REPLICAS} == 1 ]]; then |
| 734 | for type in object container account; do |
Chris Dent | 2f27a0e | 2014-09-09 13:46:02 +0100 | [diff] [blame] | 735 | tail_log s-${type} /var/log/$APACHE_NAME/${type}-server-1 |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 736 | done |
| 737 | fi |
| 738 | return 0 |
| 739 | fi |
| 740 | |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 741 | # By default with only one replica we are launching the proxy, |
| 742 | # container, account and object server in screen in foreground and |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 743 | # other services in background. If we have ``SWIFT_REPLICAS`` set to something |
| 744 | # greater than one we first spawn all the Swift services then kill the proxy |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 745 | # service so we can run it in foreground in screen. ``swift-init ... |
| 746 | # {stop|restart}`` exits with '1' if no servers are running, ignore it just |
| 747 | # in case |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 748 | local todo type |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 749 | swift-init --run-dir=${SWIFT_DATA_DIR}/run all restart || true |
| 750 | if [[ ${SWIFT_REPLICAS} == 1 ]]; then |
Chmouel Boudjnah | 0c3a558 | 2013-03-06 10:58:33 +0100 | [diff] [blame] | 751 | todo="object container account" |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 752 | fi |
| 753 | for type in proxy ${todo}; do |
| 754 | swift-init --run-dir=${SWIFT_DATA_DIR}/run ${type} stop || true |
| 755 | done |
Rob Crittenden | 18d4778 | 2014-03-19 17:47:42 -0400 | [diff] [blame] | 756 | if is_service_enabled tls-proxy; then |
| 757 | local proxy_port=${SWIFT_DEFAULT_BIND_PORT:-8080} |
| 758 | start_tls_proxy '*' $proxy_port $SERVICE_HOST $SWIFT_DEFAULT_BIND_PORT_INT & |
| 759 | fi |
Chris Dent | 2f27a0e | 2014-09-09 13:46:02 +0100 | [diff] [blame] | 760 | run_process s-proxy "$SWIFT_DIR/bin/swift-proxy-server ${SWIFT_CONF_DIR}/proxy-server.conf -v" |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 761 | if [[ ${SWIFT_REPLICAS} == 1 ]]; then |
| 762 | for type in object container account; do |
Chris Dent | 2f27a0e | 2014-09-09 13:46:02 +0100 | [diff] [blame] | 763 | run_process s-${type} "$SWIFT_DIR/bin/swift-${type}-server ${SWIFT_CONF_DIR}/${type}-server/1.conf -v" |
Sean Dague | 101b424 | 2013-10-22 08:47:11 -0400 | [diff] [blame] | 764 | done |
| 765 | fi |
Jim Rollenhagen | abbb0e9 | 2014-08-05 18:01:48 +0000 | [diff] [blame] | 766 | |
| 767 | if [[ "$SWIFT_ENABLE_TEMPURLS" == "True" ]]; then |
| 768 | swift_configure_tempurls |
| 769 | fi |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | # stop_swift() - Stop running processes (non-screen) |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 773 | function stop_swift { |
Dean Troyer | 084f51f | 2014-07-25 15:08:52 -0500 | [diff] [blame] | 774 | local type |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 775 | |
Morgan Fainberg | 46455a3 | 2014-06-20 10:37:18 -0700 | [diff] [blame] | 776 | if [ "$SWIFT_USE_MOD_WSGI" == "True" ]; then |
zhang-hare | d98a5d0 | 2013-06-21 18:18:02 +0800 | [diff] [blame] | 777 | swift-init --run-dir=${SWIFT_DATA_DIR}/run rest stop && return 0 |
| 778 | fi |
| 779 | |
Dean Troyer | dc97cb7 | 2015-03-28 08:20:50 -0500 | [diff] [blame] | 780 | # screen normally killed by ``unstack.sh`` |
Dean Troyer | 995eb92 | 2013-03-07 16:11:40 -0600 | [diff] [blame] | 781 | if type -p swift-init >/dev/null; then |
Chmouel Boudjnah | 0c3a558 | 2013-03-06 10:58:33 +0100 | [diff] [blame] | 782 | swift-init --run-dir=${SWIFT_DATA_DIR}/run all stop || true |
| 783 | fi |
Chmouel Boudjnah | f36a9b2 | 2014-02-03 23:44:47 +0100 | [diff] [blame] | 784 | # Dump all of the servers |
Chris Dent | 2f27a0e | 2014-09-09 13:46:02 +0100 | [diff] [blame] | 785 | # Maintain the iteration as stop_process() has some desirable side-effects |
Dean Troyer | 1eae3e1 | 2014-03-06 11:49:22 -0600 | [diff] [blame] | 786 | for type in proxy object container account; do |
Chris Dent | 2f27a0e | 2014-09-09 13:46:02 +0100 | [diff] [blame] | 787 | stop_process s-${type} |
Dean Troyer | 1eae3e1 | 2014-03-06 11:49:22 -0600 | [diff] [blame] | 788 | done |
| 789 | # Blast out any stragglers |
Attila Fazekas | f750a6f | 2015-07-01 12:17:35 +0200 | [diff] [blame] | 790 | pkill -f swift- || true |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 791 | } |
| 792 | |
Jim Rollenhagen | abbb0e9 | 2014-08-05 18:01:48 +0000 | [diff] [blame] | 793 | function swift_configure_tempurls { |
| 794 | OS_USERNAME=swift \ |
| 795 | OS_TENANT_NAME=$SERVICE_TENANT_NAME \ |
| 796 | OS_PASSWORD=$SERVICE_PASSWORD \ |
| 797 | swift post -m "Temp-URL-Key: $SWIFT_TEMPURL_KEY" |
| 798 | } |
| 799 | |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 800 | # Restore xtrace |
| 801 | $XTRACE |
Sean Dague | 584d90e | 2013-03-29 14:34:53 -0400 | [diff] [blame] | 802 | |
Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 803 | # Tell emacs to use shell-script-mode |
| 804 | ## Local variables: |
| 805 | ## mode: shell-script |
| 806 | ## End: |