summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Roelandt <cyril@redhat.com>2022-09-27 02:46:24 +0200
committerCyril Roelandt <cyril@redhat.com>2022-09-27 03:01:13 +0200
commit1409cc94b77be1d771801ad783c9690b3b2fca20 (patch)
treed524474038220758ef0db0d307bb79d929fd90a0
parentdc11640d2fea4010cd64f3bac861ab8bc3501044 (diff)
downloadglance-1409cc94b77be1d771801ad783c9690b3b2fca20.tar.gz
Quota configuration: improve example oslo_limit section
This patch: - uses "glance" instead of "MY_SERVICE"; - uses the already existing public glance endpoint id rather than "ENDPOINT_ID"; - uses the already existing "GLANCE_PASS" rather than introducing "MY_PASSWORD". Closes-Bug: #1990854 Change-Id: I8f5214b879818ec5f1a62d369274ad0d67396b9b
-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 075b7b0ae..cf6bb6259 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