Sync charm-helpers to ensure Rocky support
Change-Id: I40ca34add5d0f0d59895bfbb67000642c57c8fc5
This commit is contained in:
parent
9fb8252a00
commit
a1d1203cff
@ -410,16 +410,21 @@ def add_init_service_checks(nrpe, services, unit_name, immediate_check=True):
|
|||||||
os.chmod(checkpath, 0o644)
|
os.chmod(checkpath, 0o644)
|
||||||
|
|
||||||
|
|
||||||
def copy_nrpe_checks():
|
def copy_nrpe_checks(nrpe_files_dir=None):
|
||||||
"""
|
"""
|
||||||
Copy the nrpe checks into place
|
Copy the nrpe checks into place
|
||||||
|
|
||||||
"""
|
"""
|
||||||
NAGIOS_PLUGINS = '/usr/local/lib/nagios/plugins'
|
NAGIOS_PLUGINS = '/usr/local/lib/nagios/plugins'
|
||||||
nrpe_files_dir = os.path.join(os.getenv('CHARM_DIR'), 'hooks',
|
default_nrpe_files_dir = os.path.join(
|
||||||
'charmhelpers', 'contrib', 'openstack',
|
os.getenv('CHARM_DIR'),
|
||||||
|
'hooks',
|
||||||
|
'charmhelpers',
|
||||||
|
'contrib',
|
||||||
|
'openstack',
|
||||||
'files')
|
'files')
|
||||||
|
if not nrpe_files_dir:
|
||||||
|
nrpe_files_dir = default_nrpe_files_dir
|
||||||
if not os.path.exists(NAGIOS_PLUGINS):
|
if not os.path.exists(NAGIOS_PLUGINS):
|
||||||
os.makedirs(NAGIOS_PLUGINS)
|
os.makedirs(NAGIOS_PLUGINS)
|
||||||
for fname in glob.glob(os.path.join(nrpe_files_dir, "check_*")):
|
for fname in glob.glob(os.path.join(nrpe_files_dir, "check_*")):
|
||||||
|
@ -133,6 +133,7 @@ UBUNTU_OPENSTACK_RELEASE = OrderedDict([
|
|||||||
('zesty', 'ocata'),
|
('zesty', 'ocata'),
|
||||||
('artful', 'pike'),
|
('artful', 'pike'),
|
||||||
('bionic', 'queens'),
|
('bionic', 'queens'),
|
||||||
|
('cosmic', 'rocky'),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
@ -151,6 +152,7 @@ OPENSTACK_CODENAMES = OrderedDict([
|
|||||||
('2017.1', 'ocata'),
|
('2017.1', 'ocata'),
|
||||||
('2017.2', 'pike'),
|
('2017.2', 'pike'),
|
||||||
('2018.1', 'queens'),
|
('2018.1', 'queens'),
|
||||||
|
('2018.2', 'rocky'),
|
||||||
])
|
])
|
||||||
|
|
||||||
# The ugly duckling - must list releases oldest to newest
|
# The ugly duckling - must list releases oldest to newest
|
||||||
@ -183,6 +185,8 @@ SWIFT_CODENAMES = OrderedDict([
|
|||||||
['2.13.0', '2.15.0']),
|
['2.13.0', '2.15.0']),
|
||||||
('queens',
|
('queens',
|
||||||
['2.16.0', '2.17.0']),
|
['2.16.0', '2.17.0']),
|
||||||
|
('rocky',
|
||||||
|
['2.18.0']),
|
||||||
])
|
])
|
||||||
|
|
||||||
# >= Liberty version->codename mapping
|
# >= Liberty version->codename mapping
|
||||||
|
@ -972,6 +972,20 @@ def is_container():
|
|||||||
|
|
||||||
|
|
||||||
def add_to_updatedb_prunepath(path, updatedb_path=UPDATEDB_PATH):
|
def add_to_updatedb_prunepath(path, updatedb_path=UPDATEDB_PATH):
|
||||||
|
"""Adds the specified path to the mlocate's udpatedb.conf PRUNEPATH list.
|
||||||
|
|
||||||
|
This method has no effect if the path specified by updatedb_path does not
|
||||||
|
exist or is not a file.
|
||||||
|
|
||||||
|
@param path: string the path to add to the updatedb.conf PRUNEPATHS value
|
||||||
|
@param updatedb_path: the path the updatedb.conf file
|
||||||
|
"""
|
||||||
|
if not os.path.exists(updatedb_path) or os.path.isdir(updatedb_path):
|
||||||
|
# If the updatedb.conf file doesn't exist then don't attempt to update
|
||||||
|
# the file as the package providing mlocate may not be installed on
|
||||||
|
# the local system
|
||||||
|
return
|
||||||
|
|
||||||
with open(updatedb_path, 'r+') as f_id:
|
with open(updatedb_path, 'r+') as f_id:
|
||||||
updatedb_text = f_id.read()
|
updatedb_text = f_id.read()
|
||||||
output = updatedb(updatedb_text, path)
|
output = updatedb(updatedb_text, path)
|
||||||
|
@ -158,6 +158,14 @@ CLOUD_ARCHIVE_POCKETS = {
|
|||||||
'queens/proposed': 'xenial-proposed/queens',
|
'queens/proposed': 'xenial-proposed/queens',
|
||||||
'xenial-queens/proposed': 'xenial-proposed/queens',
|
'xenial-queens/proposed': 'xenial-proposed/queens',
|
||||||
'xenial-proposed/queens': 'xenial-proposed/queens',
|
'xenial-proposed/queens': 'xenial-proposed/queens',
|
||||||
|
# Rocky
|
||||||
|
'rocky': 'bionic-updates/rocky',
|
||||||
|
'bionic-rocky': 'bionic-updates/rocky',
|
||||||
|
'bionic-rocky/updates': 'bionic-updates/rocky',
|
||||||
|
'bionic-updates/rocky': 'bionic-updates/rocky',
|
||||||
|
'rocky/proposed': 'bionic-proposed/rocky',
|
||||||
|
'bionic-rocky/proposed': 'bionic-proposed/rocky',
|
||||||
|
'bionic-proposed/rocky': 'bionic-proposed/rocky',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -307,7 +315,7 @@ def import_key(key):
|
|||||||
cmd = ['apt-key', 'adv', '--keyserver',
|
cmd = ['apt-key', 'adv', '--keyserver',
|
||||||
'hkp://keyserver.ubuntu.com:80', '--recv-keys', key]
|
'hkp://keyserver.ubuntu.com:80', '--recv-keys', key]
|
||||||
try:
|
try:
|
||||||
subprocess.check_call(cmd)
|
_run_with_retries(cmd)
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
error = "Error importing PGP key '{}'".format(key)
|
error = "Error importing PGP key '{}'".format(key)
|
||||||
log(error)
|
log(error)
|
||||||
|
@ -291,6 +291,8 @@ class OpenStackAmuletDeployment(AmuletDeployment):
|
|||||||
('zesty', None): self.zesty_ocata,
|
('zesty', None): self.zesty_ocata,
|
||||||
('artful', None): self.artful_pike,
|
('artful', None): self.artful_pike,
|
||||||
('bionic', None): self.bionic_queens,
|
('bionic', None): self.bionic_queens,
|
||||||
|
('bionic', 'cloud:bionic-rocky'): self.bionic_rocky,
|
||||||
|
('cosmic', None): self.cosmic_rocky,
|
||||||
}
|
}
|
||||||
return releases[(self.series, self.openstack)]
|
return releases[(self.series, self.openstack)]
|
||||||
|
|
||||||
@ -306,6 +308,7 @@ class OpenStackAmuletDeployment(AmuletDeployment):
|
|||||||
('zesty', 'ocata'),
|
('zesty', 'ocata'),
|
||||||
('artful', 'pike'),
|
('artful', 'pike'),
|
||||||
('bionic', 'queens'),
|
('bionic', 'queens'),
|
||||||
|
('cosmic', 'rocky'),
|
||||||
])
|
])
|
||||||
if self.openstack:
|
if self.openstack:
|
||||||
os_origin = self.openstack.split(':')[1]
|
os_origin = self.openstack.split(':')[1]
|
||||||
|
@ -56,7 +56,7 @@ OPENSTACK_RELEASES_PAIRS = [
|
|||||||
'trusty_mitaka', 'xenial_mitaka', 'xenial_newton',
|
'trusty_mitaka', 'xenial_mitaka', 'xenial_newton',
|
||||||
'yakkety_newton', 'xenial_ocata', 'zesty_ocata',
|
'yakkety_newton', 'xenial_ocata', 'zesty_ocata',
|
||||||
'xenial_pike', 'artful_pike', 'xenial_queens',
|
'xenial_pike', 'artful_pike', 'xenial_queens',
|
||||||
'bionic_queens']
|
'bionic_queens', 'bionic_rocky', 'cosmic_rocky']
|
||||||
|
|
||||||
|
|
||||||
class OpenStackAmuletUtils(AmuletUtils):
|
class OpenStackAmuletUtils(AmuletUtils):
|
||||||
|
@ -972,6 +972,20 @@ def is_container():
|
|||||||
|
|
||||||
|
|
||||||
def add_to_updatedb_prunepath(path, updatedb_path=UPDATEDB_PATH):
|
def add_to_updatedb_prunepath(path, updatedb_path=UPDATEDB_PATH):
|
||||||
|
"""Adds the specified path to the mlocate's udpatedb.conf PRUNEPATH list.
|
||||||
|
|
||||||
|
This method has no effect if the path specified by updatedb_path does not
|
||||||
|
exist or is not a file.
|
||||||
|
|
||||||
|
@param path: string the path to add to the updatedb.conf PRUNEPATHS value
|
||||||
|
@param updatedb_path: the path the updatedb.conf file
|
||||||
|
"""
|
||||||
|
if not os.path.exists(updatedb_path) or os.path.isdir(updatedb_path):
|
||||||
|
# If the updatedb.conf file doesn't exist then don't attempt to update
|
||||||
|
# the file as the package providing mlocate may not be installed on
|
||||||
|
# the local system
|
||||||
|
return
|
||||||
|
|
||||||
with open(updatedb_path, 'r+') as f_id:
|
with open(updatedb_path, 'r+') as f_id:
|
||||||
updatedb_text = f_id.read()
|
updatedb_text = f_id.read()
|
||||||
output = updatedb(updatedb_text, path)
|
output = updatedb(updatedb_text, path)
|
||||||
|
Loading…
Reference in New Issue
Block a user