Add ceph rgw object store support into trove

Ceph rgw can be used as object store instead of Swift.
This patch enable trove to use ceph rgw as object store.

Change-Id: I50b878078b7c62c1034a102d064dfa90a1357ee8
This commit is contained in:
jimmygc 2017-06-07 10:52:14 +08:00
parent f2a19a4811
commit 69d9343fd0
2 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,8 @@ cinder_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ cinder_api_p
{% endif %}
{% if enable_swift | bool %}
swift_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ swift_proxy_server_port }}/v1/AUTH_
{% elif enable_ceph_rgw_keystone | bool %}
swift_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ rgw_port }}/v1/AUTH_
{% endif %}
[database]

View File

@ -0,0 +1,3 @@
---
features:
- Add ceph-rgw object store support to Trove