From de985cbad9c0973d68c3c76dcdca0cd862fe1d6a Mon Sep 17 00:00:00 2001 From: Jan Horstmann Date: Thu, 18 Sep 2025 11:46:33 +0200 Subject: [PATCH] Add info about rgw rename to OSISM 9 release notes Signed-off-by: Jan Horstmann --- docs/release-notes/osism-9.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs/release-notes/osism-9.md b/docs/release-notes/osism-9.md index 8299e966a3..161b8b5b6f 100644 --- a/docs/release-notes/osism-9.md +++ b/docs/release-notes/osism-9.md @@ -73,6 +73,35 @@ docker_registry_nexus: registry.osism.tech docker_registry_openstackclient: registry.osism.tech ``` +## New service names for RadosGW in Ceph Reef + +The naming scheme for the Ceph RadosGW service was changed from + +``` +rgw.$HOSTNAME.$INSTANCE +``` + +to + +``` +rgw.$ZONE.$HOSTNAME.$INSTANCE +``` + +Please adapt any `client` entries in `ceph_config_overrides` in `environments/ceph/configuration.yml` accordingly. +E.g. if you previously had + +```yaml title="environments/ceph/configuration.yml" +ceph_conf_overrides: + "client.rgw.{{ hostvars[inventory_hostname]['ansible_hostname'] }}.rgw0": +``` + +change it to + +```yaml title="environments/ceph/configuration.yml" +ceph_conf_overrides: + "client.rgw.{{ rgw_zone }}.{{ hostvars[inventory_hostname]['ansible_hostname'] }}.rgw0": +``` + ## References ### Ceph 18.2 (Reef)