charm-helpers:stable/bobcat

Last commit made on 2024-04-22
Get this branch:
git clone -b stable/bobcat https://git.launchpad.net/charm-helpers

Branch merges

Branch information

Name:
stable/bobcat
Repository:
lp:charm-helpers

Recent commits

80c3f65... by Alex Kavanagh <email address hidden>

Merge pull request #895 from dosaboy/bug/1920770-bobcat

Support checking service ports with ssl connection

f991233... by Edward Hope-Morley

Support checking service ports with ssl connection

By default netcat is used to check if a service is
listening on a port. This is generally ok except
for services expecting SSL connections which need
to be properly closed and netcat can't do that. So
here we add support for optionally using the python
ssl library to create an ssl connection to the port
and close it properly once finished.

Related-Bug: #1920770
(cherry picked from commit 0071e273720d65aca00b49fbde99c3b3ed1d0385)

2095527... by Brian Haley

Skip service_enable if already enabled (#884)

Repeatedly calling service_enable for a service that
is already enabled can lead to unintended consequences.
Some charms frequently call servie_resume which will
call service('enable') and this adds a check to only
do so of the service is not enabled.

Related-Bug: #2058505
(cherry picked from commit a3345005e597f098909b7c12dfee630a366ce0f6)

Co-authored-by: Edward Hope-Morley <email address hidden>

bfd7da1... by Felipe Reyes

Merge pull request #875 from rodrigogansobarbieri/bobcat_fix-image-volume-ambiguous-configuration

[bobcat] Set service_user_id from keystone relation

2320efd... by Erlon R. Cruz

Set service_user_id from keystone relation

This is necessary so we can avoid ambiguities (by using the id vs
name) when we want to use the service user.

(cherry picked from commit f7e65d27b1f93fe00bca13ed3ce741dce3eb9101)

ac65310... by Felipe Reyes

Merge pull request #866 from coreycb/swift-version-bobcat

Drop use of get_os_version_codename_swift [bobcat backport]

57681bb... by Corey Bryant

Unit test updates for get_os_version_codename_swift removal

(cherry picked from commit 62a356c639ca6ae0d3b34a77c1bae027a3c0b54a)

5147062... by Corey Bryant

Drop use of get_os_version_codename_swift

Swift payload upgrades to wallaby or later currently fail because
this code is unable to determine the version for wallaby+. For
example:

FATAL ERROR: Could not derive swift version for codename: wallaby

We stopped maintaining the SWIFT_CODENAMES and PACKAGE_CODENAMES as of
wallaby because the openstack-release package was introduced in wallaby.

We could update the SWIFT_CODENAMES map, but really this map no longer
needs to be used. There was a time when the same swift package version
existed in two different OpenStack releases, but that is no longer the
case [1]. Therefore we can use the same comparison used for OpenStack
packages which essentially checks current release (based on the
openstack-release package) vs the installation source release.

[1] Current swift versions in Ubuntu are:
2.32.0 bobcat
2.31.1 antelope
2.30.1 zed
2.29.2 yoga
2.28.1 xena
2.27.0 wallaby
2.26.0 victoria
2.25.2 ussuri

Closes-Bug: #2040606
(cherry picked from commit b604d56223772c36f934c199abb849d5d020fdc8)

fb4c776... by Felipe Reyes

Merge pull request #850 from coreycb/drop-os-release-caching

Drop @cached decorator from openstack_release()

b2d56ea... by Corey Bryant

Drop @cached decorator from openstack_release()

The openstack_release() function is typically called (indirectly)
by os_release() which already does caching. The caching of
openstack_release() was preventing updates to the value during
upgrading to a new release of openstack.

Closes-Bug: #2037751