
Includes dropping support for quantum, nvp plugin (renamed nsx long ago) and generally refactoring the unit tests around no longer having to deal with neutron and quantum in the same codebase. Drop support for database connections - these are no longer required as all DB access is now via RPC to nova-conductor or neutron-server. Roll-up configuration file templates < icehouse, remove any that are no longer required. Refactor basic_deployment a bit as it was using the shared-db relation to retrieve the n-gateway units private-address. Change-Id: I22957c0e21c4dd49e5aa74795173b4fc8f043f55
37 lines
825 B
Python
Executable File
37 lines
825 B
Python
Executable File
#!/usr/bin/python
|
|
import sys
|
|
|
|
sys.path.append('hooks/')
|
|
|
|
from charmhelpers.contrib.openstack.utils import (
|
|
do_action_openstack_upgrade,
|
|
)
|
|
|
|
from neutron_utils import (
|
|
do_openstack_upgrade,
|
|
NEUTRON_COMMON,
|
|
)
|
|
|
|
from neutron_hooks import (
|
|
config_changed,
|
|
CONFIGS,
|
|
)
|
|
|
|
|
|
def openstack_upgrade():
|
|
"""Upgrade packages to config-set Openstack version.
|
|
|
|
If the charm was installed from source we cannot upgrade it.
|
|
For backwards compatibility a config flag must be set for this
|
|
code to run, otherwise a full service level upgrade will fire
|
|
on config-changed."""
|
|
|
|
if do_action_openstack_upgrade(NEUTRON_COMMON,
|
|
do_openstack_upgrade,
|
|
CONFIGS):
|
|
config_changed()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
openstack_upgrade()
|