Skip to content

Commit c41816e

Browse files
committed
Use object-store-s3 as s3 service type
As proposed by @garloff and @fzakfeld in #1004.
1 parent 004b60a commit c41816e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Standards/scs-0123-v2-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The endpoints of services MUST be findable through the `catalog list` of the ide
3636
| **image** | Glance | Image service |
3737
| **load-balancer** | Octavia | Load-balancer service |
3838
| **network** | Neutron | Networking service |
39-
| **s3**[^2] | N/A | s3 compatible Object Storage service |
39+
| **object-store-s3**[^2] | N/A | s3 compatible Object Storage service |
4040

4141
Aliases for these service types are only permitted where defined by the [OpenStack Service Type Authority](https://specs.openstack.org/openstack/service-types-authority/#aliases-optional).
4242
Catalog entries SHOULD use the canonical service type, not aliases.

Tests/iaas/openstack_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def make_container(cloud):
150150
c.add_function('scs_0123_service_load_balancer', lambda c: compute_scs_0123_service_presence(c.services_lookup, 'load-balancer'))
151151
c.add_function('scs_0123_service_placement', lambda c: compute_scs_0123_service_presence(c.services_lookup, 'placement'))
152152
c.add_function('scs_0123_storage_apis', lambda c: compute_scs_0123_service_presence(c.services_lookup, 'volume', 'volumev3', 'block-storage'))
153-
c.add_function('scs_0123_service_s3', lambda c: compute_scs_0123_service_presence(c.services_lookup, 's3'))
153+
c.add_function('scs_0123_service_s3', lambda c: compute_scs_0123_service_presence(c.services_lookup, 'object-store-s3'))
154154
c.add_function('scs_0123_swift_s3', lambda c: compute_scs_0123_swift_s3(c.services_lookup, c.conn))
155155

156156
return c

0 commit comments

Comments
 (0)