Series Upgrade
Implement the series-upgrade feature allowing to move between Ubuntu series. Change-Id: I218d86b0650ccdbe8638e5154d30a3757862180c
This commit is contained in:
parent
aba9c6ae93
commit
94c8e9ce02
@ -1736,7 +1736,12 @@ def is_unit_upgrading_set():
|
|||||||
|
|
||||||
|
|
||||||
def series_upgrade_prepare(pause_unit_helper=None, configs=None):
|
def series_upgrade_prepare(pause_unit_helper=None, configs=None):
|
||||||
""" Run common series upgrade prepare tasks."""
|
""" Run common series upgrade prepare tasks.
|
||||||
|
|
||||||
|
:param pause_unit_helper: function: Function to pause unit
|
||||||
|
:param configs: OSConfigRenderer object: Configurations
|
||||||
|
:returns None:
|
||||||
|
"""
|
||||||
set_unit_upgrading()
|
set_unit_upgrading()
|
||||||
if pause_unit_helper and configs:
|
if pause_unit_helper and configs:
|
||||||
if not is_unit_paused_set():
|
if not is_unit_paused_set():
|
||||||
@ -1744,8 +1749,15 @@ def series_upgrade_prepare(pause_unit_helper=None, configs=None):
|
|||||||
|
|
||||||
|
|
||||||
def series_upgrade_complete(resume_unit_helper=None, configs=None):
|
def series_upgrade_complete(resume_unit_helper=None, configs=None):
|
||||||
""" Run common series upgrade complete tasks."""
|
""" Run common series upgrade complete tasks.
|
||||||
|
|
||||||
|
:param resume_unit_helper: function: Function to resume unit
|
||||||
|
:param configs: OSConfigRenderer object: Configurations
|
||||||
|
:returns None:
|
||||||
|
"""
|
||||||
clear_unit_paused()
|
clear_unit_paused()
|
||||||
clear_unit_upgrading()
|
clear_unit_upgrading()
|
||||||
if resume_unit_helper and configs:
|
if configs:
|
||||||
resume_unit_helper(configs)
|
configs.write_all()
|
||||||
|
if resume_unit_helper:
|
||||||
|
resume_unit_helper(configs)
|
||||||
|
@ -84,6 +84,7 @@ module = "charmhelpers.fetch.%s" % __platform__
|
|||||||
fetch = importlib.import_module(module)
|
fetch = importlib.import_module(module)
|
||||||
|
|
||||||
filter_installed_packages = fetch.filter_installed_packages
|
filter_installed_packages = fetch.filter_installed_packages
|
||||||
|
filter_missing_packages = fetch.filter_missing_packages
|
||||||
install = fetch.apt_install
|
install = fetch.apt_install
|
||||||
upgrade = fetch.apt_upgrade
|
upgrade = fetch.apt_upgrade
|
||||||
update = _fetch_update = fetch.apt_update
|
update = _fetch_update = fetch.apt_update
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from subprocess import check_call
|
from subprocess import STDOUT, check_output
|
||||||
from charmhelpers.fetch import (
|
from charmhelpers.fetch import (
|
||||||
BaseFetchHandler,
|
BaseFetchHandler,
|
||||||
UnhandledSource,
|
UnhandledSource,
|
||||||
@ -55,7 +55,7 @@ class BzrUrlFetchHandler(BaseFetchHandler):
|
|||||||
cmd = ['bzr', 'branch']
|
cmd = ['bzr', 'branch']
|
||||||
cmd += cmd_opts
|
cmd += cmd_opts
|
||||||
cmd += [source, dest]
|
cmd += [source, dest]
|
||||||
check_call(cmd)
|
check_output(cmd, stderr=STDOUT)
|
||||||
|
|
||||||
def install(self, source, dest=None, revno=None):
|
def install(self, source, dest=None, revno=None):
|
||||||
url_parts = self.parse_url(source)
|
url_parts = self.parse_url(source)
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from subprocess import check_call, CalledProcessError
|
from subprocess import check_output, CalledProcessError, STDOUT
|
||||||
from charmhelpers.fetch import (
|
from charmhelpers.fetch import (
|
||||||
BaseFetchHandler,
|
BaseFetchHandler,
|
||||||
UnhandledSource,
|
UnhandledSource,
|
||||||
@ -50,7 +50,7 @@ class GitUrlFetchHandler(BaseFetchHandler):
|
|||||||
cmd = ['git', 'clone', source, dest, '--branch', branch]
|
cmd = ['git', 'clone', source, dest, '--branch', branch]
|
||||||
if depth:
|
if depth:
|
||||||
cmd.extend(['--depth', depth])
|
cmd.extend(['--depth', depth])
|
||||||
check_call(cmd)
|
check_output(cmd, stderr=STDOUT)
|
||||||
|
|
||||||
def install(self, source, branch="master", dest=None, depth=None):
|
def install(self, source, branch="master", dest=None, depth=None):
|
||||||
url_parts = self.parse_url(source)
|
url_parts = self.parse_url(source)
|
||||||
|
@ -189,6 +189,18 @@ def filter_installed_packages(packages):
|
|||||||
return _pkgs
|
return _pkgs
|
||||||
|
|
||||||
|
|
||||||
|
def filter_missing_packages(packages):
|
||||||
|
"""Return a list of packages that are installed.
|
||||||
|
|
||||||
|
:param packages: list of packages to evaluate.
|
||||||
|
:returns list: Packages that are installed.
|
||||||
|
"""
|
||||||
|
return list(
|
||||||
|
set(packages) -
|
||||||
|
set(filter_installed_packages(packages))
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def apt_cache(in_memory=True, progress=None):
|
def apt_cache(in_memory=True, progress=None):
|
||||||
"""Build and return an apt cache."""
|
"""Build and return an apt cache."""
|
||||||
from apt import apt_pkg
|
from apt import apt_pkg
|
||||||
|
@ -59,6 +59,8 @@ from charmhelpers.contrib.openstack.utils import (
|
|||||||
is_unit_paused_set,
|
is_unit_paused_set,
|
||||||
pausable_restart_on_change as restart_on_change,
|
pausable_restart_on_change as restart_on_change,
|
||||||
CompareOpenStackReleases,
|
CompareOpenStackReleases,
|
||||||
|
series_upgrade_prepare,
|
||||||
|
series_upgrade_complete,
|
||||||
)
|
)
|
||||||
|
|
||||||
from neutron_api_utils import (
|
from neutron_api_utils import (
|
||||||
@ -82,6 +84,8 @@ from neutron_api_utils import (
|
|||||||
services,
|
services,
|
||||||
setup_ipv6,
|
setup_ipv6,
|
||||||
check_local_db_actions_complete,
|
check_local_db_actions_complete,
|
||||||
|
pause_unit_helper,
|
||||||
|
resume_unit_helper,
|
||||||
)
|
)
|
||||||
from neutron_api_context import (
|
from neutron_api_context import (
|
||||||
get_dns_domain,
|
get_dns_domain,
|
||||||
@ -250,6 +254,12 @@ def vsd_changed(relation_id=None, remote_unit=None):
|
|||||||
@restart_on_change(restart_map(), stopstart=True)
|
@restart_on_change(restart_map(), stopstart=True)
|
||||||
@harden()
|
@harden()
|
||||||
def config_changed():
|
def config_changed():
|
||||||
|
# if we are paused, delay doing any config changed hooks.
|
||||||
|
# It is forced on the resume.
|
||||||
|
if is_unit_paused_set():
|
||||||
|
log("Unit is pause or upgrading. Skipping config_changed", "WARN")
|
||||||
|
return
|
||||||
|
|
||||||
# If neutron is ready to be queried then check for incompatability between
|
# If neutron is ready to be queried then check for incompatability between
|
||||||
# existing neutron objects and charm settings
|
# existing neutron objects and charm settings
|
||||||
if neutron_ready():
|
if neutron_ready():
|
||||||
@ -714,6 +724,20 @@ def certs_changed(relation_id=None, unit=None):
|
|||||||
configure_https()
|
configure_https()
|
||||||
|
|
||||||
|
|
||||||
|
@hooks.hook('pre-series-upgrade')
|
||||||
|
def pre_series_upgrade():
|
||||||
|
log("Running prepare series upgrade hook", "INFO")
|
||||||
|
series_upgrade_prepare(
|
||||||
|
pause_unit_helper, CONFIGS)
|
||||||
|
|
||||||
|
|
||||||
|
@hooks.hook('post-series-upgrade')
|
||||||
|
def post_series_upgrade():
|
||||||
|
log("Running complete series upgrade hook", "INFO")
|
||||||
|
series_upgrade_complete(
|
||||||
|
resume_unit_helper, CONFIGS)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
try:
|
try:
|
||||||
hooks.execute(sys.argv)
|
hooks.execute(sys.argv)
|
||||||
|
1
hooks/post-series-upgrade
Symbolic link
1
hooks/post-series-upgrade
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
neutron_api_hooks.py
|
1
hooks/pre-series-upgrade
Symbolic link
1
hooks/pre-series-upgrade
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
neutron_api_hooks.py
|
Loading…
Reference in New Issue
Block a user