Transfer guidelines page to rst format

Signed-off-by: Ramona Rautenberg <rautenberg@osism.tech>
Change-Id: Iaab0c039e13f81c49c8c9144adb2a759e096402f
This commit is contained in:
Ramona Rautenberg 2022-07-01 14:03:19 +02:00
parent 97066f8399
commit afc4f8727a
1 changed files with 30 additions and 4 deletions

View File

@ -1,6 +1,32 @@
=======================
Configuration Guideline
=======================
===================================
Large Scale Configuration Guideline
===================================
# WIP
Introduction
------------
WSGI
----
When running a python app as WSGI, you need to use maximum 1 thread!
Example with apache config:
.. code-block:: console
$ grep WSGIDaemonProcess /etc/apache2/sites-available/10-cinder_wsgi.conf
WSGIDaemonProcess cinder-api display-name=cinder_wsgi group=cinder processes=8 threads=1 user=cinder
Nova
----
-------------
api.max_limit
-------------
Documentation link: https://docs.openstack.org/nova/latest/configuration/config.html#api.max_limit
This settings needs to be tuned in order to make sure that Nova API will give you an expected number of objects..
Neutron
-------