blob: b684b4410ffac374b66860cce19f2ca6de34c628 [file] [log] [blame]
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +03001# lib/ironic
2# Functions to control the configuration and operation of the **Ironic** service
3
4# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01005#
6# - ``functions`` file
7# - ``DEST``, ``DATA_DIR``, ``STACK_USER`` must be defined
8# - ``SERVICE_{TENANT_NAME|PASSWORD}`` must be defined
9# - ``SERVICE_HOST``
10# - ``KEYSTONE_TOKEN_FORMAT`` must be defined
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030011
12# ``stack.sh`` calls the entry points in this order:
13#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010014# - install_ironic
15# - install_ironicclient
16# - init_ironic
17# - start_ironic
18# - stop_ironic
19# - cleanup_ironic
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030020
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040021# Save trace and pipefail settings
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030022XTRACE=$(set +o | grep xtrace)
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040023PIPEFAIL=$(set +o | grep pipefail)
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030024set +o xtrace
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040025set +o pipefail
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030026
27# Defaults
28# --------
29
30# Set up default directories
31IRONIC_DIR=$DEST/ironic
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040032IRONIC_DATA_DIR=$DATA_DIR/ironic
33IRONIC_STATE_PATH=/var/lib/ironic
Roman Prykhodchenko43e00662013-10-15 17:03:15 +030034IRONICCLIENT_DIR=$DEST/python-ironicclient
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030035IRONIC_AUTH_CACHE_DIR=${IRONIC_AUTH_CACHE_DIR:-/var/cache/ironic}
36IRONIC_CONF_DIR=${IRONIC_CONF_DIR:-/etc/ironic}
37IRONIC_CONF_FILE=$IRONIC_CONF_DIR/ironic.conf
38IRONIC_ROOTWRAP_CONF=$IRONIC_CONF_DIR/rootwrap.conf
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030039IRONIC_POLICY_JSON=$IRONIC_CONF_DIR/policy.json
40
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040041# Set up defaults for functional / integration testing
42IRONIC_SCRIPTS_DIR=${IRONIC_SCRIPTS_DIR:-$TOP_DIR/tools/ironic/scripts}
43IRONIC_TEMPLATES_DIR=${IRONIC_TEMPLATES_DIR:-$TOP_DIR/tools/ironic/templates}
44IRONIC_BAREMETAL_BASIC_OPS=$(trueorfalse False $IRONIC_BAREMETAL_BASIC_OPS)
Roman Prykhodchenkodc97a0e2014-04-08 14:19:58 +030045IRONIC_DRIVERS_WHITELIST=${IRONIC_DRIVERS_WHITELIST:-fake,pxe_ssh}
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040046IRONIC_SSH_USERNAME=${IRONIC_SSH_USERNAME:-`whoami`}
47IRONIC_SSH_KEY_DIR=${IRONIC_SSH_KEY_DIR:-$IRONIC_DATA_DIR/ssh_keys}
48IRONIC_SSH_KEY_FILENAME=${IRONIC_SSH_KEY_FILENAME:-ironic_key}
49IRONIC_KEY_FILE=$IRONIC_SSH_KEY_DIR/$IRONIC_SSH_KEY_FILENAME
50IRONIC_SSH_VIRT_TYPE=${IRONIC_SSH_VIRT_TYPE:-virsh}
51IRONIC_TFTPBOOT_DIR=${IRONIC_TFTPBOOT_DIR:-$IRONIC_DATA_DIR/tftpboot}
52IRONIC_VM_SSH_PORT=${IRONIC_VM_SSH_PORT:-2222}
53IRONIC_VM_SSH_ADDRESS=${IRONIC_VM_SSH_ADDRESS:-$HOST_IP}
54IRONIC_VM_COUNT=${IRONIC_VM_COUNT:-1}
55IRONIC_VM_SPECS_CPU=${IRONIC_VM_SPECS_CPU:-1}
Alexander Gordeev84d0ec52014-03-17 17:58:54 +040056# NOTE(agordeev): both ubuntu and fedora deploy images won't work with 256MB of RAM.
57# System halts and throws kernel panic during initramfs unpacking.
58# Ubuntu needs at least 384MB, but fedora requires 448.
59# So placing 512 here to satisfy both.
60IRONIC_VM_SPECS_RAM=${IRONIC_VM_SPECS_RAM:-512}
Alexander Gordeev06fb29c2014-01-31 18:02:07 +040061IRONIC_VM_SPECS_DISK=${IRONIC_VM_SPECS_DISK:-10}
62IRONIC_VM_EMULATOR=${IRONIC_VM_EMULATOR:-/usr/bin/qemu-system-x86_64}
63IRONIC_VM_NETWORK_BRIDGE=${IRONIC_VM_NETWORK_BRIDGE:-brbm}
64IRONIC_VM_NETWORK_RANGE=${IRONIC_VM_NETWORK_RANGE:-192.0.2.0/24}
65IRONIC_VM_MACS_CSV_FILE=${IRONIC_VM_MACS_CSV_FILE:-$IRONIC_DATA_DIR/ironic_macs.csv}
66IRONIC_AUTHORIZED_KEYS_FILE=${IRONIC_AUTHORIZED_KEYS_FILE:-$HOME/.ssh/authorized_keys}
67
Alexander Gordeevf177f722014-03-14 18:44:48 +040068DIB_DIR=${DIB_DIR:-$DEST/diskimage-builder}
69
70# Use DIB to create deploy ramdisk and kernel.
71IRONIC_BUILD_DEPLOY_RAMDISK=`trueorfalse True $IRONIC_BUILD_DEPLOY_RAMDISK`
72# If not use DIB, these files are used as deploy ramdisk/kernel.
73# (The value must be a absolute path)
74IRONIC_DEPLOY_RAMDISK=${IRONIC_DEPLOY_RAMDISK:-}
75IRONIC_DEPLOY_KERNEL=${IRONIC_DEPLOY_KERNEL:-}
76IRONIC_DEPLOY_ELEMENT=${IRONIC_DEPLOY_ELEMENT:-deploy-ironic}
77
78#TODO(agordeev): replace 'ubuntu' with host distro name getting
79IRONIC_DEPLOY_FLAVOR=${IRONIC_DEPLOY_FLAVOR:-ubuntu $IRONIC_DEPLOY_ELEMENT}
80
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030081# Support entry points installation of console scripts
82IRONIC_BIN_DIR=$(get_python_exec_prefix)
83
84# Ironic connection info. Note the port must be specified.
85IRONIC_SERVICE_PROTOCOL=http
86IRONIC_HOSTPORT=${IRONIC_HOSTPORT:-$SERVICE_HOST:6385}
87
Dean Troyer4237f592014-01-29 16:22:11 -060088# Tell Tempest this project is present
89TEMPEST_SERVICES+=,ironic
90
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +030091
92# Functions
93# ---------
94
Dean Troyer1023ff72014-01-27 14:56:44 -060095# Test if any Ironic services are enabled
96# is_ironic_enabled
97function is_ironic_enabled {
98 [[ ,${ENABLED_SERVICES} =~ ,"ir-" ]] && return 0
99 return 1
100}
101
Roman Prykhodchenko43e00662013-10-15 17:03:15 +0300102# install_ironic() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100103function install_ironic {
Roman Prykhodchenko43e00662013-10-15 17:03:15 +0300104 git_clone $IRONIC_REPO $IRONIC_DIR $IRONIC_BRANCH
105 setup_develop $IRONIC_DIR
106}
107
108# install_ironicclient() - Collect sources and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100109function install_ironicclient {
Roman Prykhodchenko43e00662013-10-15 17:03:15 +0300110 git_clone $IRONICCLIENT_REPO $IRONICCLIENT_DIR $IRONICCLIENT_BRANCH
111 setup_develop $IRONICCLIENT_DIR
112}
113
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300114# cleanup_ironic() - Remove residual data files, anything left over from previous
115# runs that would need to clean up.
Ian Wienandaee18c72014-02-21 15:35:08 +1100116function cleanup_ironic {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300117 sudo rm -rf $IRONIC_AUTH_CACHE_DIR
118}
119
120# configure_ironic() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +1100121function configure_ironic {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300122 if [[ ! -d $IRONIC_CONF_DIR ]]; then
123 sudo mkdir -p $IRONIC_CONF_DIR
124 fi
125 sudo chown $STACK_USER $IRONIC_CONF_DIR
126
127 # Copy over ironic configuration file and configure common parameters.
128 cp $IRONIC_DIR/etc/ironic/ironic.conf.sample $IRONIC_CONF_FILE
129 iniset $IRONIC_CONF_FILE DEFAULT debug True
130 inicomment $IRONIC_CONF_FILE DEFAULT log_file
131 iniset $IRONIC_CONF_FILE DEFAULT sql_connection `database_connection_url ironic`
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400132 iniset $IRONIC_CONF_FILE DEFAULT state_path $IRONIC_STATE_PATH
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300133 iniset $IRONIC_CONF_FILE DEFAULT use_syslog $SYSLOG
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300134 # Configure Ironic conductor, if it was enabled.
135 if is_service_enabled ir-cond; then
136 configure_ironic_conductor
137 fi
138
139 # Configure Ironic API, if it was enabled.
140 if is_service_enabled ir-api; then
141 configure_ironic_api
142 fi
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400143
144 if [[ "$IRONIC_BAREMETAL_BASIC_OPS" == "True" ]]; then
145 configure_ironic_auxiliary
146 fi
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300147}
148
149# configure_ironic_api() - Is used by configure_ironic(). Performs
150# API specific configuration.
Ian Wienandaee18c72014-02-21 15:35:08 +1100151function configure_ironic_api {
Roman Prykhodchenkoc48c3122013-10-01 17:19:05 +0300152 iniset $IRONIC_CONF_FILE DEFAULT auth_strategy keystone
153 iniset $IRONIC_CONF_FILE DEFAULT policy_file $IRONIC_POLICY_JSON
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300154 iniset $IRONIC_CONF_FILE keystone_authtoken auth_host $KEYSTONE_AUTH_HOST
155 iniset $IRONIC_CONF_FILE keystone_authtoken auth_port $KEYSTONE_AUTH_PORT
156 iniset $IRONIC_CONF_FILE keystone_authtoken auth_protocol $KEYSTONE_AUTH_PROTOCOL
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +1000157 iniset $IRONIC_CONF_FILE keystone_authtoken cafile $KEYSTONE_SSL_CA
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300158 iniset $IRONIC_CONF_FILE keystone_authtoken auth_uri $KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:$KEYSTONE_SERVICE_PORT/
159 iniset $IRONIC_CONF_FILE keystone_authtoken admin_tenant_name $SERVICE_TENANT_NAME
160 iniset $IRONIC_CONF_FILE keystone_authtoken admin_user ironic
161 iniset $IRONIC_CONF_FILE keystone_authtoken admin_password $SERVICE_PASSWORD
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300162 iniset_rpc_backend ironic $IRONIC_CONF_FILE DEFAULT
163 iniset $IRONIC_CONF_FILE keystone_authtoken signing_dir $IRONIC_AUTH_CACHE_DIR/api
164
165 cp -p $IRONIC_DIR/etc/ironic/policy.json $IRONIC_POLICY_JSON
166}
167
168# configure_ironic_conductor() - Is used by configure_ironic().
169# Sets conductor specific settings.
Ian Wienandaee18c72014-02-21 15:35:08 +1100170function configure_ironic_conductor {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300171 cp $IRONIC_DIR/etc/ironic/rootwrap.conf $IRONIC_ROOTWRAP_CONF
Lucas Alvares Gomes279295c2014-01-14 11:37:51 +0000172 cp -r $IRONIC_DIR/etc/ironic/rootwrap.d $IRONIC_CONF_DIR
Adam Gandelman3f2a7b72014-04-14 16:14:33 -0700173 IRONIC_ROOTWRAP=$(get_rootwrap_location ironic)
174 ROOTWRAP_ISUDOER_CMD="$IRONIC_ROOTWRAP $IRONIC_CONF_DIR/rootwrap.conf *"
175
176 # Set up the rootwrap sudoers for ironic
177 TEMPFILE=`mktemp`
178 echo "$STACK_USER ALL=(root) NOPASSWD: $ROOTWRAP_ISUDOER_CMD" >$TEMPFILE
179 chmod 0440 $TEMPFILE
180 sudo chown root:root $TEMPFILE
181 sudo mv $TEMPFILE /etc/sudoers.d/ironic-rootwrap
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300182
Alexander Gordeeva67cb1a2014-03-04 18:38:33 +0400183 iniset $IRONIC_CONF_FILE DEFAULT rootwrap_config $IRONIC_ROOTWRAP_CONF
Roman Prykhodchenkodc97a0e2014-04-08 14:19:58 +0300184 iniset $IRONIC_CONF_FILE DEFAULT drivers_whitelist $IRONIC_DRIVERS_WHITELIST
Adam Gandelmand3011982014-03-24 13:55:34 -0700185 iniset $IRONIC_CONF_FILE conductor api_url http://$HOST_IP:6385
186 iniset $IRONIC_CONF_FILE pxe tftp_server $HOST_IP
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400187 iniset $IRONIC_CONF_FILE pxe tftp_root $IRONIC_TFTPBOOT_DIR
188 iniset $IRONIC_CONF_FILE pxe tftp_master_path $IRONIC_TFTPBOOT_DIR/master_images
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300189}
190
191# create_ironic_cache_dir() - Part of the init_ironic() process
Ian Wienandaee18c72014-02-21 15:35:08 +1100192function create_ironic_cache_dir {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300193 # Create cache dir
194 sudo mkdir -p $IRONIC_AUTH_CACHE_DIR/api
195 sudo chown $STACK_USER $IRONIC_AUTH_CACHE_DIR/api
196 rm -f $IRONIC_AUTH_CACHE_DIR/api/*
197 sudo mkdir -p $IRONIC_AUTH_CACHE_DIR/registry
198 sudo chown $STACK_USER $IRONIC_AUTH_CACHE_DIR/registry
199 rm -f $IRONIC_AUTH_CACHE_DIR/registry/*
200}
201
202# create_ironic_accounts() - Set up common required ironic accounts
203
204# Tenant User Roles
205# ------------------------------------------------------------------
206# service ironic admin # if enabled
Ian Wienandaee18c72014-02-21 15:35:08 +1100207function create_ironic_accounts {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300208
Steve Martinelli19685422014-01-24 13:02:26 -0600209 SERVICE_TENANT=$(openstack project list | awk "/ $SERVICE_TENANT_NAME / { print \$2 }")
210 ADMIN_ROLE=$(openstack role list | awk "/ admin / { print \$2 }")
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300211
212 # Ironic
213 if [[ "$ENABLED_SERVICES" =~ "ir-api" ]]; then
Steve Martinelli19685422014-01-24 13:02:26 -0600214 IRONIC_USER=$(openstack user create \
215 ironic \
216 --password "$SERVICE_PASSWORD" \
217 --project $SERVICE_TENANT \
218 --email ironic@example.com \
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300219 | grep " id " | get_field 2)
Steve Martinelli19685422014-01-24 13:02:26 -0600220 openstack role add \
221 $ADMIN_ROLE \
222 --project $SERVICE_TENANT \
223 --user $IRONIC_USER
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300224 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
Steve Martinelli19685422014-01-24 13:02:26 -0600225 IRONIC_SERVICE=$(openstack service create \
226 ironic \
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300227 --type=baremetal \
228 --description="Ironic baremetal provisioning service" \
229 | grep " id " | get_field 2)
Steve Martinelli19685422014-01-24 13:02:26 -0600230 openstack endpoint create \
231 $IRONIC_SERVICE \
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300232 --region RegionOne \
Roman Prykhodchenkof5002ef2013-09-24 19:09:26 +0300233 --publicurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT" \
234 --adminurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT" \
235 --internalurl "$IRONIC_SERVICE_PROTOCOL://$IRONIC_HOSTPORT"
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300236 fi
237 fi
238}
239
240
241# init_ironic() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +1100242function init_ironic {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300243 # (Re)create ironic database
244 recreate_database ironic utf8
245
246 # Migrate ironic database
247 $IRONIC_BIN_DIR/ironic-dbsync
248
249 create_ironic_cache_dir
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300250}
251
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300252# start_ironic() - Start running processes, including screen
Ian Wienandaee18c72014-02-21 15:35:08 +1100253function start_ironic {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300254 # Start Ironic API server, if enabled.
255 if is_service_enabled ir-api; then
256 start_ironic_api
257 fi
258
259 # Start Ironic conductor, if enabled.
260 if is_service_enabled ir-cond; then
261 start_ironic_conductor
262 fi
263}
264
265# start_ironic_api() - Used by start_ironic().
266# Starts Ironic API server.
Ian Wienandaee18c72014-02-21 15:35:08 +1100267function start_ironic_api {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300268 screen_it ir-api "cd $IRONIC_DIR; $IRONIC_BIN_DIR/ironic-api --config-file=$IRONIC_CONF_FILE"
269 echo "Waiting for ir-api ($IRONIC_HOSTPORT) to start..."
JUN JIE NAN0aa85342013-09-13 15:47:09 +0800270 if ! timeout $SERVICE_TIMEOUT sh -c "while ! wget --no-proxy -q -O- http://$IRONIC_HOSTPORT; do sleep 1; done"; then
Sean Dague101b4242013-10-22 08:47:11 -0400271 die $LINENO "ir-api did not start"
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300272 fi
273}
274
275# start_ironic_conductor() - Used by start_ironic().
276# Starts Ironic conductor.
Ian Wienandaee18c72014-02-21 15:35:08 +1100277function start_ironic_conductor {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300278 screen_it ir-cond "cd $IRONIC_DIR; $IRONIC_BIN_DIR/ironic-conductor --config-file=$IRONIC_CONF_FILE"
279 # TODO(romcheg): Find a way to check whether the conductor has started.
280}
281
282# stop_ironic() - Stop running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100283function stop_ironic {
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300284 # Kill the Ironic screen windows
285 screen -S $SCREEN_NAME -p ir-api -X kill
286 screen -S $SCREEN_NAME -p ir-cond -X kill
287}
288
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400289function is_ironic {
290 if ( is_service_enabled ir-cond && is_service_enabled ir-api ); then
291 return 0
292 fi
293 return 1
294}
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300295
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400296function configure_ironic_dirs {
297 sudo mkdir -p $IRONIC_DATA_DIR
298 sudo mkdir -p $IRONIC_STATE_PATH
299 sudo mkdir -p $IRONIC_TFTPBOOT_DIR
300 sudo chown -R $STACK_USER $IRONIC_DATA_DIR $IRONIC_STATE_PATH
301 sudo chown -R $STACK_USER:$LIBVIRT_GROUP $IRONIC_TFTPBOOT_DIR
302 if is_ubuntu; then
303 PXEBIN=/usr/lib/syslinux/pxelinux.0
304 elif is_fedora; then
305 PXEBIN=/usr/share/syslinux/pxelinux.0
306 fi
307 if [ ! -f $PXEBIN ]; then
308 die $LINENO "pxelinux.0 (from SYSLINUX) not found."
309 fi
310
311 cp $PXEBIN $IRONIC_TFTPBOOT_DIR
312 mkdir -p $IRONIC_TFTPBOOT_DIR/pxelinux.cfg
313}
314
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400315function create_bridge_and_vms {
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400316 # Call libvirt setup scripts in a new shell to ensure any new group membership
317 sudo su $STACK_USER -c "$IRONIC_SCRIPTS_DIR/setup-network"
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400318 sudo su $STACK_USER -c "$IRONIC_SCRIPTS_DIR/create-nodes \
319 $IRONIC_VM_SPECS_CPU $IRONIC_VM_SPECS_RAM $IRONIC_VM_SPECS_DISK \
320 amd64 $IRONIC_VM_COUNT $IRONIC_VM_NETWORK_BRIDGE $IRONIC_VM_EMULATOR" >> $IRONIC_VM_MACS_CSV_FILE
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400321}
322
323function enroll_vms {
324
325 CHASSIS_ID=$(ironic chassis-create -d "ironic test chassis" | grep " uuid " | get_field 2)
326 IRONIC_NET_ID=$(neutron net-list | grep private | get_field 1)
327 local idx=0
328
Alexander Gordeev1ab92d92014-04-03 16:17:58 +0400329 # work around; need to know what netns neutron uses for private network.
330 # Without knowing how to interconnect the networks, PXE won't work properly
331 # for fake baremetal instances. The network should be configured prior all
332 # the instances operation. If we don't do this, the first port creation
333 # only happens in the middle of fake baremetal instance's spawning by nova,
334 # so we'll end up with unbootable fake baremetal VM due to broken PXE.
335 PORT_ID=$(neutron port-create private | grep " id " | get_field 2)
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400336
337 while read MAC; do
338
339 NODE_ID=$(ironic node-create --chassis_uuid $CHASSIS_ID --driver pxe_ssh \
340 -i ssh_virt_type=$IRONIC_SSH_VIRT_TYPE \
341 -i ssh_address=$IRONIC_VM_SSH_ADDRESS \
342 -i ssh_port=$IRONIC_VM_SSH_PORT \
343 -i ssh_username=$IRONIC_SSH_USERNAME \
344 -i ssh_key_filename=$IRONIC_SSH_KEY_DIR/$IRONIC_SSH_KEY_FILENAME \
345 -p cpus=$IRONIC_VM_SPECS_CPU \
346 -p memory_mb=$IRONIC_VM_SPECS_RAM \
347 -p local_gb=$IRONIC_VM_SPECS_DISK \
348 -p cpu_arch=x86_64 \
349 | grep " uuid " | get_field 2)
350
351 ironic port-create --address $MAC --node_uuid $NODE_ID
352
353 idx=$((idx+1))
354
355 done < $IRONIC_VM_MACS_CSV_FILE
356
357 # create the nova flavor
358 nova flavor-create baremetal auto $IRONIC_VM_SPECS_RAM $IRONIC_VM_SPECS_DISK $IRONIC_VM_SPECS_CPU
Alexander Gordeevf177f722014-03-14 18:44:48 +0400359 nova flavor-key baremetal set "cpu_arch"="x86_64" "baremetal:deploy_kernel_id"="$IRONIC_DEPLOY_KERNEL_ID" "baremetal:deploy_ramdisk_id"="$IRONIC_DEPLOY_RAMDISK_ID"
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400360
361 # intentional sleep to make sure the tag has been set to port
362 sleep 10
363 TAPDEV=$(sudo ip netns exec qdhcp-${IRONIC_NET_ID} ip link list | grep tap | cut -d':' -f2 | cut -b2-)
364 TAG_ID=$(sudo ovs-vsctl show |grep ${TAPDEV} -A1 -m1 | grep tag | cut -d':' -f2 | cut -b2-)
365
366 # make sure veth pair is not existing, otherwise delete its links
367 sudo ip link show ovs-tap1 && sudo ip link delete ovs-tap1
368 sudo ip link show brbm-tap1 && sudo ip link delete brbm-tap1
369 # create veth pair for future interconnection between br-int and brbm
370 sudo ip link add brbm-tap1 type veth peer name ovs-tap1
371 sudo ip link set dev brbm-tap1 up
372 sudo ip link set dev ovs-tap1 up
373
374 sudo ovs-vsctl -- --if-exists del-port ovs-tap1 -- add-port br-int ovs-tap1 tag=$TAG_ID
375 sudo ovs-vsctl -- --if-exists del-port brbm-tap1 -- add-port $IRONIC_VM_NETWORK_BRIDGE brbm-tap1
Alexander Gordeev1ab92d92014-04-03 16:17:58 +0400376
377 # Remove the port needed only for workaround. For additional info read the
378 # comment at the beginning of this function
379 neutron port-delete $PORT_ID
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400380}
381
Adam Gandelmanc1f0db22014-04-14 13:21:22 -0700382function configure_iptables {
383 # enable tftp natting for allowing connections to HOST_IP's tftp server
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400384 sudo modprobe nf_conntrack_tftp
385 sudo modprobe nf_nat_tftp
Adam Gandelmanc1f0db22014-04-14 13:21:22 -0700386 # nodes boot from TFTP and callback to the API server listening on $HOST_IP
387 sudo iptables -I INPUT -d $HOST_IP -p udp --dport 69 -j ACCEPT || true
388 sudo iptables -I INPUT -d $HOST_IP -p tcp --dport 6385 -j ACCEPT || true
389}
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400390
Adam Gandelmanc1f0db22014-04-14 13:21:22 -0700391function configure_tftpd {
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400392 if is_ubuntu; then
393 PXEBIN=/usr/lib/syslinux/pxelinux.0
394 elif is_fedora; then
395 PXEBIN=/usr/share/syslinux/pxelinux.0
396 fi
397 if [ ! -f $PXEBIN ]; then
398 die $LINENO "pxelinux.0 (from SYSLINUX) not found."
399 fi
400
401 # stop tftpd and setup serving via xinetd
402 stop_service tftpd-hpa || true
403 [ -f /etc/init/tftpd-hpa.conf ] && echo "manual" | sudo tee /etc/init/tftpd-hpa.override
404 sudo cp $IRONIC_TEMPLATES_DIR/tftpd-xinetd.template /etc/xinetd.d/tftp
405 sudo sed -e "s|%TFTPBOOT_DIR%|$IRONIC_TFTPBOOT_DIR|g" -i /etc/xinetd.d/tftp
406
407 # setup tftp file mapping to satisfy requests at the root (booting) and
408 # /tftpboot/ sub-dir (as per deploy-ironic elements)
409 echo "r ^([^/]) $IRONIC_TFTPBOOT_DIR/\1" >$IRONIC_TFTPBOOT_DIR/map-file
410 echo "r ^(/tftpboot/) $IRONIC_TFTPBOOT_DIR/\2" >>$IRONIC_TFTPBOOT_DIR/map-file
411
412 chmod -R 0755 $IRONIC_TFTPBOOT_DIR
413 restart_service xinetd
414}
415
416function configure_ironic_ssh_keypair {
417 # Generating ssh key pair for stack user
418 if [[ ! -d $IRONIC_SSH_KEY_DIR ]]; then
419 mkdir -p $IRONIC_SSH_KEY_DIR
420 fi
421 if [[ ! -d $HOME/.ssh ]]; then
422 mkdir -p $HOME/.ssh
423 chmod 700 $HOME/.ssh
424 fi
425 echo -e 'n\n' | ssh-keygen -q -t rsa -P '' -f $IRONIC_KEY_FILE
426 cat $IRONIC_KEY_FILE.pub | tee -a $IRONIC_AUTHORIZED_KEYS_FILE
427}
428
429function ironic_ssh_check {
430 local KEY_FILE=$1
431 local FLOATING_IP=$2
432 local PORT=$3
433 local DEFAULT_INSTANCE_USER=$4
434 local ACTIVE_TIMEOUT=$5
435 if ! timeout $ACTIVE_TIMEOUT sh -c "while ! ssh -p $PORT -o StrictHostKeyChecking=no -i $KEY_FILE ${DEFAULT_INSTANCE_USER}@$FLOATING_IP echo success; do sleep 1; done"; then
436 die $LINENO "server didn't become ssh-able!"
437 fi
438}
439
440function configure_ironic_sshd {
441 # Ensure sshd server accepts connections from localhost only
442
443 SSH_CONFIG=/etc/ssh/sshd_config
444 HOST_PORT=$IRONIC_VM_SSH_ADDRESS:$IRONIC_VM_SSH_PORT
445 if ! sudo grep ListenAddress $SSH_CONFIG | grep $HOST_PORT; then
446 echo "ListenAddress $HOST_PORT" | sudo tee -a $SSH_CONFIG
447 fi
448
449 SSH_SERVICE_NAME=sshd
450 if is_ubuntu; then
451 SSH_SERVICE_NAME=ssh
452 fi
453
454 restart_service $SSH_SERVICE_NAME
455 # to ensure ssh service is up and running
456 sleep 3
457 ironic_ssh_check $IRONIC_SSH_KEY_DIR/$IRONIC_SSH_KEY_FILENAME $IRONIC_VM_SSH_ADDRESS $IRONIC_VM_SSH_PORT $IRONIC_SSH_USERNAME 10
458
459}
460
461function configure_ironic_auxiliary {
462 configure_ironic_dirs
463 configure_ironic_ssh_keypair
464 configure_ironic_sshd
465}
466
Alexander Gordeevf177f722014-03-14 18:44:48 +0400467# build deploy kernel+ramdisk, then upload them to glance
468# this function sets IRONIC_DEPLOY_KERNEL_ID and IRONIC_DEPLOY_RAMDISK_ID
469function upload_baremetal_ironic_deploy {
470 token=$1
471
472 if [ -z "$IRONIC_DEPLOY_KERNEL" -o -z "$IRONIC_DEPLOY_RAMDISK" ]; then
473 IRONIC_DEPLOY_KERNEL_PATH=$TOP_DIR/files/ir-deploy.kernel
474 IRONIC_DEPLOY_RAMDISK_PATH=$TOP_DIR/files/ir-deploy.initramfs
475 else
476 IRONIC_DEPLOY_KERNEL_PATH=$IRONIC_DEPLOY_KERNEL
477 IRONIC_DEPLOY_RAMDISK_PATH=$IRONIC_DEPLOY_RAMDISK
478 fi
479
480 if [ ! -e "$IRONIC_DEPLOY_RAMDISK_PATH" -o ! -e "$IRONIC_DEPLOY_KERNEL_PATH" ]; then
481 # files don't exist, need to build them
482 if [ "$IRONIC_BUILD_DEPLOY_RAMDISK" = "True" ]; then
483 # we can build them only if we're not offline
484 if [ "$OFFLINE" != "True" ]; then
485 $DIB_DIR/bin/ramdisk-image-create $IRONIC_DEPLOY_FLAVOR \
486 -o $TOP_DIR/files/ir-deploy
487 else
488 die $LINENO "Deploy kernel+ramdisk files don't exist and cannot be build in OFFLINE mode"
489 fi
490 else
491 die $LINENO "Deploy kernel+ramdisk files don't exist and their building was disabled explicitly by IRONIC_BUILD_DEPLOY_RAMDISK"
492 fi
493 fi
494
495 # load them into glance
496 IRONIC_DEPLOY_KERNEL_ID=$(glance \
497 --os-auth-token $token \
498 --os-image-url http://$GLANCE_HOSTPORT \
499 image-create \
500 --name $(basename $IRONIC_DEPLOY_KERNEL_PATH) \
501 --is-public True --disk-format=aki \
502 < $IRONIC_DEPLOY_KERNEL_PATH | grep ' id ' | get_field 2)
503 IRONIC_DEPLOY_RAMDISK_ID=$(glance \
504 --os-auth-token $token \
505 --os-image-url http://$GLANCE_HOSTPORT \
506 image-create \
507 --name $(basename $IRONIC_DEPLOY_RAMDISK_PATH) \
508 --is-public True --disk-format=ari \
509 < $IRONIC_DEPLOY_RAMDISK_PATH | grep ' id ' | get_field 2)
510}
511
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400512function prepare_baremetal_basic_ops {
513
514 # install diskimage-builder
Alexander Gordeevf177f722014-03-14 18:44:48 +0400515 git_clone $DIB_REPO $DIB_DIR $DIB_BRANCH
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400516
517 # make sure all needed service were enabled
518 for srv in nova glance key neutron; do
519 if ! is_service_enabled "$srv"; then
520 die $LINENO "$srv should be enabled for ironic tests"
521 fi
522 done
523
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400524 TOKEN=$(keystone token-get | grep ' id ' | get_field 2)
525 die_if_not_set $LINENO TOKEN "Keystone fail to get token"
526
527 echo_summary "Creating and uploading baremetal images for ironic"
528
529 # build and upload separate deploy kernel & ramdisk
Alexander Gordeevf177f722014-03-14 18:44:48 +0400530 upload_baremetal_ironic_deploy $TOKEN
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400531
532 create_bridge_and_vms
533 enroll_vms
534 configure_tftpd
Adam Gandelmanc1f0db22014-04-14 13:21:22 -0700535 configure_iptables
Adam Gandelman5f060e62014-04-08 11:52:05 -0700536
537 # restart nova-compute to ensure its resource tracking is up to
538 # date with newly enrolled nodes
539 stop_nova_compute || true
540 start_nova_compute
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400541}
542
543function cleanup_baremetal_basic_ops {
544 rm -f $IRONIC_VM_MACS_CSV_FILE
545 if [ -f $IRONIC_KEY_FILE ]; then
546 KEY=`cat $IRONIC_KEY_FILE.pub`
547 # remove public key from authorized_keys
548 grep -v "$KEY" $IRONIC_AUTHORIZED_KEYS_FILE > temp && mv temp $IRONIC_AUTHORIZED_KEYS_FILE
549 chmod 0600 $IRONIC_AUTHORIZED_KEYS_FILE
550 fi
551 sudo rm -rf $IRONIC_DATA_DIR $IRONIC_STATE_PATH
552 sudo su $STACK_USER -c "$IRONIC_SCRIPTS_DIR/cleanup-nodes $IRONIC_VM_COUNT $IRONIC_VM_NETWORK_BRIDGE"
553 sudo rm -rf /etc/xinetd.d/tftp /etc/init/tftpd-hpa.override
554 restart_service xinetd
Adam Gandelmanc1f0db22014-04-14 13:21:22 -0700555 sudo iptables -D INPUT -d $HOST_IP -p udp --dport 69 -j ACCEPT || true
556 sudo iptables -D INPUT -d $HOST_IP -p tcp --dport 6385 -j ACCEPT || true
557 sudo rmmod nf_conntrack_tftp || true
558 sudo rmmod nf_nat_tftp || true
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400559}
560
561# Restore xtrace + pipefail
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300562$XTRACE
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400563$PIPEFAIL
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300564
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100565# Tell emacs to use shell-script-mode
566## Local variables:
567## mode: shell-script
568## End: