Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions docs/release-notes/osism-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading