Merge "Updates for 20.08 cycle start for groovy and libs"
This commit is contained in:
commit
74ad5886a9
@ -225,7 +225,7 @@ SWIFT_CODENAMES = OrderedDict([
|
|||||||
('train',
|
('train',
|
||||||
['2.22.0', '2.23.0']),
|
['2.22.0', '2.23.0']),
|
||||||
('ussuri',
|
('ussuri',
|
||||||
['2.24.0']),
|
['2.24.0', '2.25.0']),
|
||||||
])
|
])
|
||||||
|
|
||||||
# >= Liberty version->codename mapping
|
# >= Liberty version->codename mapping
|
||||||
|
@ -432,13 +432,13 @@ class ReplicatedPool(Pool):
|
|||||||
pool=self.name,
|
pool=self.name,
|
||||||
name=self.app_name)
|
name=self.app_name)
|
||||||
except CalledProcessError:
|
except CalledProcessError:
|
||||||
log('Could not set app name for pool {}'.format(self.name, level=WARNING))
|
log('Could not set app name for pool {}'.format(self.name), level=WARNING)
|
||||||
if 'pg_autoscaler' in enabled_manager_modules():
|
if 'pg_autoscaler' in enabled_manager_modules():
|
||||||
try:
|
try:
|
||||||
enable_pg_autoscale(self.service, self.name)
|
enable_pg_autoscale(self.service, self.name)
|
||||||
except CalledProcessError as e:
|
except CalledProcessError as e:
|
||||||
log('Could not configure auto scaling for pool {}: {}'.format(
|
log('Could not configure auto scaling for pool {}: {}'.format(
|
||||||
self.name, e, level=WARNING))
|
self.name, e), level=WARNING)
|
||||||
except CalledProcessError:
|
except CalledProcessError:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
@ -504,7 +504,7 @@ class ErasurePool(Pool):
|
|||||||
pool=self.name,
|
pool=self.name,
|
||||||
name=self.app_name)
|
name=self.app_name)
|
||||||
except CalledProcessError:
|
except CalledProcessError:
|
||||||
log('Could not set app name for pool {}'.format(self.name, level=WARNING))
|
log('Could not set app name for pool {}'.format(self.name), level=WARNING)
|
||||||
if nautilus_or_later:
|
if nautilus_or_later:
|
||||||
# Ensure we set the expected pool ratio
|
# Ensure we set the expected pool ratio
|
||||||
update_pool(client=self.service,
|
update_pool(client=self.service,
|
||||||
@ -515,7 +515,7 @@ class ErasurePool(Pool):
|
|||||||
enable_pg_autoscale(self.service, self.name)
|
enable_pg_autoscale(self.service, self.name)
|
||||||
except CalledProcessError as e:
|
except CalledProcessError as e:
|
||||||
log('Could not configure auto scaling for pool {}: {}'.format(
|
log('Could not configure auto scaling for pool {}: {}'.format(
|
||||||
self.name, e, level=WARNING))
|
self.name, e), level=WARNING)
|
||||||
except CalledProcessError:
|
except CalledProcessError:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ def _snap_exec(commands):
|
|||||||
.format(SNAP_NO_LOCK_RETRY_COUNT))
|
.format(SNAP_NO_LOCK_RETRY_COUNT))
|
||||||
return_code = e.returncode
|
return_code = e.returncode
|
||||||
log('Snap failed to acquire lock, trying again in {} seconds.'
|
log('Snap failed to acquire lock, trying again in {} seconds.'
|
||||||
.format(SNAP_NO_LOCK_RETRY_DELAY, level='WARN'))
|
.format(SNAP_NO_LOCK_RETRY_DELAY), level='WARN')
|
||||||
sleep(SNAP_NO_LOCK_RETRY_DELAY)
|
sleep(SNAP_NO_LOCK_RETRY_DELAY)
|
||||||
|
|
||||||
return return_code
|
return return_code
|
||||||
|
@ -2,19 +2,20 @@ name: ceph-mon
|
|||||||
summary: Highly scalable distributed storage
|
summary: Highly scalable distributed storage
|
||||||
maintainer: OpenStack Charmers <openstack-charmers@lists.ubuntu.com>
|
maintainer: OpenStack Charmers <openstack-charmers@lists.ubuntu.com>
|
||||||
description: |
|
description: |
|
||||||
Ceph is a distributed storage and network file system designed to provide
|
Ceph is a distributed storage and network file system designed to provide
|
||||||
excellent performance, reliability, and scalability.
|
excellent performance, reliability, and scalability.
|
||||||
tags:
|
tags:
|
||||||
- openstack
|
- openstack
|
||||||
- storage
|
- storage
|
||||||
- file-servers
|
- file-servers
|
||||||
- misc
|
- misc
|
||||||
series:
|
series:
|
||||||
- xenial
|
- xenial
|
||||||
- bionic
|
- bionic
|
||||||
- eoan
|
- eoan
|
||||||
- focal
|
- focal
|
||||||
- trusty
|
- trusty
|
||||||
|
- groovy
|
||||||
peers:
|
peers:
|
||||||
mon:
|
mon:
|
||||||
interface: ceph
|
interface: ceph
|
||||||
@ -37,9 +38,6 @@ provides:
|
|||||||
interface: ceph-radosgw
|
interface: ceph-radosgw
|
||||||
rbd-mirror:
|
rbd-mirror:
|
||||||
interface: ceph-rbd-mirror
|
interface: ceph-rbd-mirror
|
||||||
nrpe-external-master:
|
|
||||||
interface: nrpe-external-master
|
|
||||||
scope: container
|
|
||||||
prometheus:
|
prometheus:
|
||||||
interface: http
|
interface: http
|
||||||
requires:
|
requires:
|
||||||
|
Loading…
Reference in New Issue
Block a user