99c81d9c60
This change makes it possible to run Grenade jobs on ironic-inspector. The only thing tested in this patch is that ironic-inspector actually comes up after upgrade from a previous version. We will make it run actual introspection tests in the next patch. Co-Authored-By: Dmitry Tantsur <dtantsur@redhat.com> Change-Id: I79e7ecaa89936144b63a72baf8460ae6ad139890
78 lines
1.5 KiB
Bash
Executable File
78 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2015 Hewlett-Packard Development Company, L.P.
|
|
# Copyright 2016 Intel Corporation
|
|
# Copyright 2016 Red Hat, Inc.
|
|
#
|
|
# 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.
|
|
## based on Ironic/devstack/upgrade/resources.sh
|
|
|
|
set -o errexit
|
|
|
|
source $GRENADE_DIR/grenaderc
|
|
source $GRENADE_DIR/functions
|
|
|
|
source $TOP_DIR/openrc admin admin
|
|
|
|
# Inspector relies on a couple of Ironic variables
|
|
source $TARGET_RELEASE_DIR/ironic/devstack/lib/ironic
|
|
|
|
INSPECTOR_DEVSTACK_DIR=$(cd $(dirname "$0")/.. && pwd)
|
|
source $INSPECTOR_DEVSTACK_DIR/plugin.sh
|
|
|
|
set -o xtrace
|
|
|
|
|
|
function early_create {
|
|
:
|
|
}
|
|
|
|
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
|