
* Fix errors in infrastructure blueprint one-style-config 1) Update sample config - remove non-existing directory 2) Add 0.4.1 version 3) Rename config file to sample Fixes-Bug: 1270734 * Fixed issue with copy configuration files. Closes-Bug: #1271079 * Removed SysV EL6 standalone file, removed old setup scripts * Fixed typo in daemon executable name * Delete init scripts and agent config dirs so we will update then and not delete cache if murano-repository is unavaliable Closes-bug: 1274470 * Fix accessing nested-dir scripts from nested-dir agent templates. This works the following way: if path to agent template is, .g. <someHash>/template/agent/SqlServerCluster/FailoverCluster.template, nd it references script file '/ImportCoreFunctions.ps1', then it will e searched in '<someHash>/template/agent/scripts/' dir, but if it eferences 'Failover-Cluster.ps1', it will be searched in <someHash>/template/agent/scripts/SqlServerCluster/' dir. o the root-like agent dir '<someHash>/template/agent' corresponds to oot-like scripts dir '<someHash>/template/agent/scripts', and the ctual script file will be searched immediately in root-like scripts dir if it starts with '/' (absolute name), or there will be 'rest-dirs' between root-like scripts dir and the script filename if the script filename is a relative one. 'rest-dirs' is the difference between root-like agent dir and the actual parent dir of the agent template which references the script dir. As you see, the abovementioned example is much clearer than the explanation. Closes-bug: #1271578 * Add forgotten deletion in metadata folder setup * Undo init file parameter remane * Return external network id together with routerId blueprint auto-assign-floating-ip * Fix name for syslog_log_facility param * Update reqirements for a release-0.4.1 Change-Id: I2744eaeef369220c5a8dabb027ba40622be9d242
99 lines
2.9 KiB
Plaintext
99 lines
2.9 KiB
Plaintext
[DEFAULT]
|
|
|
|
# Set up logging. To use syslog just set use_syslog parameter value to 'True'
|
|
log_file = /tmp/murano-conductor.log
|
|
use_syslog = False
|
|
syslog_log_facility = LOG_LOCAL0
|
|
|
|
# Log verbosity
|
|
debug = True
|
|
verbose = True
|
|
|
|
# Provide directory with initialization scripts
|
|
init_scripts_dir = etc/murano/init-scripts
|
|
|
|
# Provide directory with agent configs
|
|
agent_config_dir = etc/murano/agent-config
|
|
|
|
# Directory for data cache, OS temp directory is used by default
|
|
data_dir = /tmp/muranoconductor-cache
|
|
|
|
# Provide url to Murano Metadata repository
|
|
# Comment this line if you registered murano-metadata in keystone catalog
|
|
murano_metadata_url = http://localhost:8084/v1
|
|
|
|
# Maximum number of environments that can be processed simultaneously
|
|
max_environments = 20
|
|
|
|
# Maximum number of VMs per environment
|
|
max_hosts = 250
|
|
|
|
# Template IP address for generating environment subnet cidrs
|
|
env_ip_template = 10.0.0.0
|
|
|
|
# Enforces default network topology.
|
|
# Allowed values: nova, flat, routed
|
|
# default is routed
|
|
network_topology = routed
|
|
|
|
[keystone]
|
|
# URL of OpenStack KeyStone service REST API.
|
|
# Typically only hostname (or IP) needs to be changed
|
|
auth_url = http://localhost:5000/v2.0
|
|
|
|
# Keystone SSL parameters
|
|
# Optional CA cert file to use in SSL connections
|
|
#ca_file =
|
|
# Optional PEM-formatted certificate chain file
|
|
#cert_file =
|
|
# Optional PEM-formatted file that contains the private key
|
|
#key_file =
|
|
# If set then the server's certificate will not be verified
|
|
insecure = False
|
|
|
|
[heat]
|
|
# Heat SSL parameters
|
|
# Optional CA cert file to use in SSL connections
|
|
#ca_file =
|
|
# Optional PEM-formatted certificate chain file
|
|
#cert_file =
|
|
# Optional PEM-formatted file that contains the private key
|
|
#key_file =
|
|
# If set then the server's certificate will not be verified
|
|
insecure = False
|
|
# Valid endpoint types: publicURL (default), internalURL, adminURL
|
|
endpoint_type = publicURL
|
|
|
|
[neutron]
|
|
# Optional CA cert file to use in SSL connections
|
|
#ca_cert =
|
|
# Allow self signed server certificate
|
|
insecure = False
|
|
# Valid endpoint types: publicURL (default), internalURL, adminURL
|
|
endpoint_type = publicURL
|
|
|
|
[rabbitmq]
|
|
# Connection parameters to RabbitMQ service
|
|
|
|
# Hostname or IP address where RabbitMQ is located.
|
|
# !!! Change localhost to your real IP or hostname as this address must be reachable from VMs !!!
|
|
host = localhost
|
|
|
|
# RabbitMQ port (5672 is a default)
|
|
port = 5672
|
|
|
|
# Use SSL for RabbitMQ connections (True or False)
|
|
ssl = False
|
|
|
|
# Path to SSL CA certificate or empty to allow self signed server certificate
|
|
#ca_certs =
|
|
|
|
# RabbitMQ credentials. Fresh RabbitMQ installation has "guest" account with "guest" password.
|
|
# It is recommended to create dedicated user account for Murano using RabbitMQ web console or command line utility
|
|
login = guest
|
|
password = guest
|
|
|
|
# RabbitMQ virtual host (vhost). Fresh RabbitMQ installation has "/" vhost preconfigured.
|
|
# It is recommended to create dedicated vhost for Murano using RabbitMQ web console or command line utility
|
|
virtual_host = /
|