Make service account configurable

Change-Id: Ia4523e1f77fbd235ac0b5ef1c6e8193b27b82e48
This commit is contained in:
Sergey Reshetnyak 2017-02-09 16:12:24 +03:00
parent d835f916c5
commit 512a71497a
1 changed files with 4 additions and 4 deletions

View File

@ -14,14 +14,14 @@ rgw data = /var/lib/ceph/radosgw/ceph-rgw
rgw frontends = civetweb port={{ radosgw.port.cont }} num_threads=50
rgw keystone api version = 3
rgw keystone admin domain = default
rgw keystone admin project = admin
rgw keystone admin domain = {{ openstack.domain_name }}
rgw keystone admin project = {{ openstack.project_name }}
rgw keystone url = {{ address('keystone', keystone.admin_port, with_scheme=True) }}
rgw keystone accepted roles = Member, _member_, admin
rgw keystone revocation interval = 900
rgw s3 auth use keystone = true
#nss db path = /var/lib/ceph/radosgw/ceph-rgw.ccp/nss
rgw keystone verify ssl = false
rgw keystone admin user = admin
rgw keystone admin password = password
rgw keystone admin user = {{ openstack.user_name }}
rgw keystone admin password = {{ openstack.user_password }}