summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-12-15 18:48:23 +0000
committerGerrit Code Review <review@openstack.org>2022-12-15 18:48:23 +0000
commitbc9856ea9ce2ced219e9b294d8db3b5645d69796 (patch)
treeb6302edce4dd9069996105deb1299216fa51ecf3
parent8728466a15933329b4d2c46661f15c303e64ceac (diff)
parent1409cc94b77be1d771801ad783c9690b3b2fca20 (diff)
downloadglance-bc9856ea9ce2ced219e9b294d8db3b5645d69796.tar.gz
Merge "Quota configuration: improve example oslo_limit section"
-rw-r--r--doc/source/install/configure-quotas.rst13
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/source/install/configure-quotas.rst b/doc/source/install/configure-quotas.rst
index 7812ca734..c3a1d3193 100644
--- a/doc/source/install/configure-quotas.rst
+++ b/doc/source/install/configure-quotas.rst
@@ -6,20 +6,23 @@
auth_url = http://controller:5000
auth_type = password
user_domain_id = default
- username = MY_SERVICE
+ username = glance
system_scope = all
- password = MY_PASSWORD
- endpoint_id = ENDPOINT_ID
+ password = GLANCE_PASS
+ endpoint_id = 340be3625e9b4239a6415d034e98aace
region_name = RegionOne
.. end
- Make sure that the MY_SERVICE account has reader access to
+ Replace ``GLANCE_PASS`` with the password you chose for the
+ ``glance`` user in the Identity service.
+
+ Make sure that the glance account has reader access to
system-scope resources (like limits):
.. code-block:: console
- $ openstack role add --user MY_SERVICE --user-domain Default --system all reader
+ $ openstack role add --user glance --user-domain Default --system all reader
.. end