summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rw-r--r--ci/PR_revision.log2
-rwxr-xr-xci/util.sh8
2 files changed, 9 insertions, 1 deletions
diff --git a/ci/PR_revision.log b/ci/PR_revision.log
index 73542c8c..de684ef5 100644
--- a/ci/PR_revision.log
+++ b/ci/PR_revision.log
@@ -14,3 +14,5 @@
38,Fixes nova default floating pool to be 'external'
39,removing extra whitespace from congress parameter
40,Move mongo to step 1
+42, congress typo
+44,Fixes nova host/ip bug
diff --git a/ci/util.sh b/ci/util.sh
index ad7f0788..f48dcd74 100755
--- a/ci/util.sh
+++ b/ci/util.sh
@@ -5,7 +5,7 @@
CONFIG=${CONFIG:-'/var/opt/opnfv'}
RESOURCES=${RESOURCES:-"$CONFIG/images"}
LIB=${LIB:-"$CONFIG/lib"}
-VALID_CMDS="undercloud overcloud debug-stack -h --help"
+VALID_CMDS="undercloud overcloud opendaylight debug-stack -h --help"
source $LIB/utility-functions.sh
@@ -27,6 +27,8 @@ display_usage() {
echo -e " user Optional: Defaults to 'stack'\n"
echo -e " command Optional: Defaults to none\n"
echo -e ""
+ echo -e " opendaylight Connect to OpenDaylight Karaf console\n"
+ echo -e ""
echo -e " overcloud [ node [ command ] ] Connect to an Overcloud node and optionally execute a command\n"
echo -e " node Required: in format controller|compute<number>. Example: controller0\n"
echo -e " command Optional: Defaults to none\n"
@@ -79,6 +81,10 @@ parse_cmdline() {
fi
exit 0
;;
+ opendaylight)
+ opendaylight_connect
+ exit 0
+ ;;
debug-stack)
undercloud_connect stack "$(typeset -f debug_stack); debug_stack"
exit 0