Merge "Add clean configuration files to upgrade from H to I"
This commit is contained in:
commit
ed1bc8a928
9
from-havana/upgrade-cinder
Executable file
9
from-havana/upgrade-cinder
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-cinder``
|
||||
|
||||
function configure_cinder_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here
|
||||
set +o xtrace
|
||||
}
|
9
from-havana/upgrade-devstack
Executable file
9
from-havana/upgrade-devstack
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-devstack``
|
||||
|
||||
function configure_devstack_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here yet
|
||||
set +o xtrace
|
||||
}
|
9
from-havana/upgrade-glance
Executable file
9
from-havana/upgrade-glance
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-glance``
|
||||
|
||||
function configure_glance_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here
|
||||
set +o xtrace
|
||||
}
|
10
from-havana/upgrade-keystone
Executable file
10
from-havana/upgrade-keystone
Executable file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-keystone``
|
||||
|
||||
configure_keystone_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here yet
|
||||
set +o xtrace
|
||||
}
|
||||
|
10
from-havana/upgrade-nova
Executable file
10
from-havana/upgrade-nova
Executable file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-nova``
|
||||
|
||||
function configure_nova_upgrade(){
|
||||
set -o xtrace
|
||||
# upgrade rootwrap configs
|
||||
configure_nova_rootwrap
|
||||
set +o xtrace
|
||||
}
|
9
from-havana/upgrade-oslo
Executable file
9
from-havana/upgrade-oslo
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-oslo``
|
||||
|
||||
function configure_oslo_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here yet
|
||||
set +o xtrace
|
||||
}
|
18
from-havana/upgrade-packages
Executable file
18
from-havana/upgrade-packages
Executable file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade_packages``
|
||||
|
||||
# Upgrade Dependencies
|
||||
# ====================
|
||||
|
||||
# Glance
|
||||
GLANCE_PIPS=""
|
||||
|
||||
# Nova
|
||||
NOVA_PIPS=""
|
||||
|
||||
# Horizon
|
||||
HORIZON_PIPS=""
|
||||
|
||||
# Quantum
|
||||
QUANTUM_PIPS=""
|
9
from-havana/upgrade-swift
Executable file
9
from-havana/upgrade-swift
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-swift``
|
||||
|
||||
function configure_swift_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here yet
|
||||
set +o xtrace
|
||||
}
|
9
from-havana/upgrade-tempest
Executable file
9
from-havana/upgrade-tempest
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# ``upgrade-tempest``
|
||||
|
||||
function configure_tempest_upgrade(){
|
||||
set -o xtrace
|
||||
# nothing to see here yet
|
||||
set +o xtrace
|
||||
}
|
@ -636,11 +636,10 @@ function git_update_tag() {
|
||||
|
||||
|
||||
# Returns openstack release name for a given branch name
|
||||
# At first it return master for a not released version
|
||||
function get_release_name_from_branch(){
|
||||
local branch=$1
|
||||
if [ $branch == "stable/grizzly" ]; then
|
||||
echo "grizzly"
|
||||
if [[ $branch =~ "stable/" ]]; then
|
||||
echo ${branch#*/}
|
||||
else
|
||||
echo "master"
|
||||
fi
|
||||
|
@ -13,10 +13,10 @@ STACK_ROOT=/opt/stack
|
||||
DATA_DIR=${STACK_ROOT}/data
|
||||
|
||||
# Release info
|
||||
BASE_RELEASE=grizzly
|
||||
BASE_RELEASE=havana
|
||||
BASE_RELEASE_DIR=${STACK_ROOT}/$BASE_RELEASE
|
||||
|
||||
TARGET_RELEASE=havana
|
||||
TARGET_RELEASE=icehouse
|
||||
TARGET_RELEASE_DIR=${STACK_ROOT}/$TARGET_RELEASE
|
||||
|
||||
# DevStack sources
|
||||
|
Loading…
x
Reference in New Issue
Block a user