* Add configuration reference * Add configuration sample * Change some title to remove redundant info * Re-organize doc Change-Id: Ide9005c496997c7c216affc7df00f1ac264883da Signed-off-by: Arnaud M <arnaud.morin@gmail.com>
2.7 KiB
Configuration and Policy Guide
The static configuration for mistral lives in two main files:
mistral.conf and policy.yaml. These are
described below.
Configuration
Mistral, like most OpenStack projects, uses INI-style configuration
files to configure various services and utilities. This functionality is
provided by the oslo.config project.
oslo.config supports loading configuration from both individual
configuration files and a directory of configuration files. By default,
mistral will search for a config file named
/etc/mistral/mistral.conf.
More information on how you can use the configuration options to configure services and what configuration options are available can be found below.
Configuration Guide <config-guide>: Detailed configuration guides for various parts of your Mistral system.Config Reference <config-reference>: A complete reference of all configuration options available in themistral.conffile.
html
Sample Config File <config-sample>: A sample config file with inline documentation.
config-guide.rst config-reference.rst config-sample.rst
Policy
Mistral, like most OpenStack projects, uses a policy language to
restrict permissions on REST API actions. This functionality is provided
by the oslo.policy project.
oslo.policy supports loading policy configuration from both an
individual configuration file, which defaults to
policy.yaml, and one or more directories of configuration
files, which defaults to policy.d. These must be located in
the same directory as the mistral.conf file(s). This
behavior can be overridden by setting the :oslo.configoslo_policy.policy_file
and :oslo.configoslo_policy.policy_dirs configuration options.
More information on how mistral's policy configuration works and about what policies are available can be found below.
Policy Reference <policy-reference>: A complete reference of all policy points in mistral and what they impact.
html
Sample Policy File <policy-sample>: A sample mistral policy file with inline documentation.
policy-reference.rst policy-sample.rst