ironic/devstack/upgrade/resources.sh
John L. Villalovos f0beeada9d Setup for using the Grenade 'early_create' phase
* Create a 'devstack/upgrade/resources.sh' file to be used by
   Grenade.
 * Create an 'early_create' phase to call the create_ovs_tap()
   function.
 * Refactor the create_ovs_tap() function to accept an argument for
   the network to use.

Change-Id: I0efe427a7023d0336f25856c362c655c138102df
2016-05-16 12:59:42 -07:00

76 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
#
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# Copyright 2016 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
set -o errexit
source $GRENADE_DIR/grenaderc
source $GRENADE_DIR/functions
source $TOP_DIR/openrc admin admin
IRONIC_DEVSTACK_DIR=$(cd $(dirname "$0")/.. && pwd)
source $IRONIC_DEVSTACK_DIR/lib/ironic
set -o xtrace
function early_create {
local net_id
net_id=$(resource_get network net_id)
create_ovs_taps $net_id
}
function create {
:
}
function verify {
:
}
function verify_noapi {
:
}
function destroy {
:
}
# Dispatcher
case $1 in
"early_create")
early_create
;;
"create")
create
;;
"verify_noapi")
verify_noapi
;;
"verify")
verify
;;
"destroy")
destroy
;;
"force_destroy")
set +o errexit
destroy
;;
esac