Advertisement
Guest User

Untitled

a guest
Jun 8th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.19 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. #
  4. # From oslo.log
  5. #
  6.  
  7. # If set to true, the logging level will be set to DEBUG instead of the default
  8. # INFO level. (boolean value)
  9. # Note: This option can be changed without restarting.
  10. debug = True
  11.  
  12. # The name of a logging configuration file. This file is appended to any
  13. # existing logging configuration files. For details about logging configuration
  14. # files, see the Python logging module documentation. Note that when logging
  15. # configuration files are used then all logging configuration is set in the
  16. # configuration file and other logging configuration options are ignored (for
  17. # example, logging_context_format_string). (string value)
  18. # Note: This option can be changed without restarting.
  19. # Deprecated group/name - [DEFAULT]/log_config
  20. #log_config_append = <None>
  21.  
  22. # Defines the format string for %%(asctime)s in log records. Default:
  23. # %(default)s . This option is ignored if log_config_append is set. (string
  24. # value)
  25. #log_date_format = %Y-%m-%d %H:%M:%S
  26.  
  27. # (Optional) Name of log file to send logging output to. If no default is set,
  28. # logging will go to stderr as defined by use_stderr. This option is ignored if
  29. # log_config_append is set. (string value)
  30. # Deprecated group/name - [DEFAULT]/logfile
  31. #log_file = <None>
  32.  
  33. # (Optional) The base directory used for relative log_file paths. This option
  34. # is ignored if log_config_append is set. (string value)
  35. # Deprecated group/name - [DEFAULT]/logdir
  36. #log_dir = <None>
  37.  
  38. # Uses logging handler designed to watch file system. When log file is moved or
  39. # removed this handler will open a new log file with specified path
  40. # instantaneously. It makes sense only if log_file option is specified and
  41. # Linux platform is used. This option is ignored if log_config_append is set.
  42. # (boolean value)
  43. #watch_log_file = false
  44.  
  45. # Use syslog for logging. Existing syslog format is DEPRECATED and will be
  46. # changed later to honor RFC5424. This option is ignored if log_config_append
  47. # is set. (boolean value)
  48. use_syslog = False
  49.  
  50. # Enable journald for logging. If running in a systemd environment you may wish
  51. # to enable journal support. Doing so will use the journal native protocol
  52. # which includes structured metadata in addition to log messages.This option is
  53. # ignored if log_config_append is set. (boolean value)
  54. #use_journal = false
  55.  
  56. # Syslog facility to receive log lines. This option is ignored if
  57. # log_config_append is set. (string value)
  58. #syslog_log_facility = LOG_USER
  59.  
  60. # Use JSON formatting for logging. This option is ignored if log_config_append
  61. # is set. (boolean value)
  62. #use_json = false
  63.  
  64. # Log output to standard error. This option is ignored if log_config_append is
  65. # set. (boolean value)
  66. #use_stderr = false
  67.  
  68. # Format string to use for log messages with context. (string value)
  69. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  70.  
  71. # Format string to use for log messages when context is undefined. (string
  72. # value)
  73. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  74.  
  75. # Additional data to append to log message when logging level for the message
  76. # is DEBUG. (string value)
  77. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  78.  
  79. # Prefix each line of exception output with this format. (string value)
  80. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  81.  
  82. # Defines the format string for %(user_identity)s that is used in
  83. # logging_context_format_string. (string value)
  84. #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
  85.  
  86. # List of package logging levels in logger=LEVEL pairs. This option is ignored
  87. # if log_config_append is set. (list value)
  88. #default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,oslo_messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
  89.  
  90. # Enables or disables publication of error events. (boolean value)
  91. #publish_errors = false
  92.  
  93. # The format for an instance that is passed with the log message. (string
  94. # value)
  95. #instance_format = "[instance: %(uuid)s] "
  96.  
  97. # The format for an instance UUID that is passed with the log message. (string
  98. # value)
  99. #instance_uuid_format = "[instance: %(uuid)s] "
  100.  
  101. # Interval, number of seconds, of log rate limiting. (integer value)
  102. #rate_limit_interval = 0
  103.  
  104. # Maximum number of logged messages per rate_limit_interval. (integer value)
  105. #rate_limit_burst = 0
  106.  
  107. # Log level name used by rate limiting: CRITICAL, ERROR, INFO, WARNING, DEBUG
  108. # or empty string. Logs with level greater or equal to rate_limit_except_level
  109. # are not filtered. An empty string means that all levels are filtered. (string
  110. # value)
  111. #rate_limit_except_level = CRITICAL
  112.  
  113. # Enables or disables fatal status of deprecations. (boolean value)
  114. #fatal_deprecations = false
  115.  
  116. #
  117. # From oslo.messaging
  118. #
  119.  
  120. # Size of RPC connection pool. (integer value)
  121. #rpc_conn_pool_size = 30
  122.  
  123. # The pool size limit for connections expiration policy (integer value)
  124. #conn_pool_min_size = 2
  125.  
  126. # The time-to-live in sec of idle connections in the pool (integer value)
  127. #conn_pool_ttl = 1200
  128.  
  129. # ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
  130. # The "host" option should point or resolve to this address. (string value)
  131. #rpc_zmq_bind_address = *
  132.  
  133. # MatchMaker driver. (string value)
  134. # Possible values:
  135. # redis - <No description provided>
  136. # sentinel - <No description provided>
  137. # dummy - <No description provided>
  138. #rpc_zmq_matchmaker = redis
  139.  
  140. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  141. #rpc_zmq_contexts = 1
  142.  
  143. # Maximum number of ingress messages to locally buffer per topic. Default is
  144. # unlimited. (integer value)
  145. #rpc_zmq_topic_backlog = <None>
  146.  
  147. # Directory for holding IPC sockets. (string value)
  148. #rpc_zmq_ipc_dir = /var/run/openstack
  149.  
  150. # Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
  151. # "host" option, if running Nova. (string value)
  152. #rpc_zmq_host = localhost
  153.  
  154. # Number of seconds to wait before all pending messages will be sent after
  155. # closing a socket. The default value of -1 specifies an infinite linger
  156. # period. The value of 0 specifies no linger period. Pending messages shall be
  157. # discarded immediately when the socket is closed. Positive values specify an
  158. # upper bound for the linger period. (integer value)
  159. # Deprecated group/name - [DEFAULT]/rpc_cast_timeout
  160. #zmq_linger = -1
  161.  
  162. # The default number of seconds that poll should wait. Poll raises timeout
  163. # exception when timeout expired. (integer value)
  164. #rpc_poll_timeout = 1
  165.  
  166. # Expiration timeout in seconds of a name service record about existing target
  167. # ( < 0 means no timeout). (integer value)
  168. #zmq_target_expire = 300
  169.  
  170. # Update period in seconds of a name service record about existing target.
  171. # (integer value)
  172. #zmq_target_update = 180
  173.  
  174. # Use PUB/SUB pattern for fanout methods. PUB/SUB always uses proxy. (boolean
  175. # value)
  176. #use_pub_sub = false
  177.  
  178. # Use ROUTER remote proxy. (boolean value)
  179. #use_router_proxy = false
  180.  
  181. # This option makes direct connections dynamic or static. It makes sense only
  182. # with use_router_proxy=False which means to use direct connections for direct
  183. # message types (ignored otherwise). (boolean value)
  184. #use_dynamic_connections = false
  185.  
  186. # How many additional connections to a host will be made for failover reasons.
  187. # This option is actual only in dynamic connections mode. (integer value)
  188. #zmq_failover_connections = 2
  189.  
  190. # Minimal port number for random ports range. (port value)
  191. # Minimum value: 0
  192. # Maximum value: 65535
  193. #rpc_zmq_min_port = 49153
  194.  
  195. # Maximal port number for random ports range. (integer value)
  196. # Minimum value: 1
  197. # Maximum value: 65536
  198. #rpc_zmq_max_port = 65536
  199.  
  200. # Number of retries to find free port number before fail with ZMQBindError.
  201. # (integer value)
  202. #rpc_zmq_bind_port_retries = 100
  203.  
  204. # Default serialization mechanism for serializing/deserializing
  205. # outgoing/incoming messages (string value)
  206. # Possible values:
  207. # json - <No description provided>
  208. # msgpack - <No description provided>
  209. #rpc_zmq_serialization = json
  210.  
  211. # This option configures round-robin mode in zmq socket. True means not keeping
  212. # a queue when server side disconnects. False means to keep queue and messages
  213. # even if server is disconnected, when the server appears we send all
  214. # accumulated messages to it. (boolean value)
  215. #zmq_immediate = true
  216.  
  217. # Enable/disable TCP keepalive (KA) mechanism. The default value of -1 (or any
  218. # other negative value) means to skip any overrides and leave it to OS default;
  219. # 0 and 1 (or any other positive value) mean to disable and enable the option
  220. # respectively. (integer value)
  221. #zmq_tcp_keepalive = -1
  222.  
  223. # The duration between two keepalive transmissions in idle condition. The unit
  224. # is platform dependent, for example, seconds in Linux, milliseconds in Windows
  225. # etc. The default value of -1 (or any other negative value and 0) means to
  226. # skip any overrides and leave it to OS default. (integer value)
  227. #zmq_tcp_keepalive_idle = -1
  228.  
  229. # The number of retransmissions to be carried out before declaring that remote
  230. # end is not available. The default value of -1 (or any other negative value
  231. # and 0) means to skip any overrides and leave it to OS default. (integer
  232. # value)
  233. #zmq_tcp_keepalive_cnt = -1
  234.  
  235. # The duration between two successive keepalive retransmissions, if
  236. # acknowledgement to the previous keepalive transmission is not received. The
  237. # unit is platform dependent, for example, seconds in Linux, milliseconds in
  238. # Windows etc. The default value of -1 (or any other negative value and 0)
  239. # means to skip any overrides and leave it to OS default. (integer value)
  240. #zmq_tcp_keepalive_intvl = -1
  241.  
  242. # Maximum number of (green) threads to work concurrently. (integer value)
  243. #rpc_thread_pool_size = 100
  244.  
  245. # Expiration timeout in seconds of a sent/received message after which it is
  246. # not tracked anymore by a client/server. (integer value)
  247. #rpc_message_ttl = 300
  248.  
  249. # Wait for message acknowledgements from receivers. This mechanism works only
  250. # via proxy without PUB/SUB. (boolean value)
  251. #rpc_use_acks = false
  252.  
  253. # Number of seconds to wait for an ack from a cast/call. After each retry
  254. # attempt this timeout is multiplied by some specified multiplier. (integer
  255. # value)
  256. #rpc_ack_timeout_base = 15
  257.  
  258. # Number to multiply base ack timeout by after each retry attempt. (integer
  259. # value)
  260. #rpc_ack_timeout_multiplier = 2
  261.  
  262. # Default number of message sending attempts in case of any problems occurred:
  263. # positive value N means at most N retries, 0 means no retries, None or -1 (or
  264. # any other negative values) mean to retry forever. This option is used only if
  265. # acknowledgments are enabled. (integer value)
  266. #rpc_retry_attempts = 3
  267.  
  268. # List of publisher hosts SubConsumer can subscribe on. This option has higher
  269. # priority then the default publishers list taken from the matchmaker. (list
  270. # value)
  271. #subscribe_on =
  272.  
  273. # Size of executor thread pool when executor is threading or eventlet. (integer
  274. # value)
  275. # Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
  276. #executor_thread_pool_size = 64
  277.  
  278. # Seconds to wait for a response from a call. (integer value)
  279. #rpc_response_timeout = 60
  280.  
  281. # The network address and optional user credentials for connecting to the
  282. # messaging backend, in URL format. The expected format is:
  283. #
  284. # driver://[user:pass@]host:port[,[userN:passN@]hostN:portN]/virtual_host?query
  285. #
  286. # Example: rabbit://rabbitmq:password@127.0.0.1:5672//
  287. #
  288. # For full details on the fields in the URL see the documentation of
  289. # oslo_messaging.TransportURL at
  290. # https://docs.openstack.org/oslo.messaging/latest/reference/transport.html
  291. # (string value)
  292. #transport_url = <None>
  293.  
  294. # DEPRECATED: The messaging driver to use, defaults to rabbit. Other drivers
  295. # include amqp and zmq. (string value)
  296. # This option is deprecated for removal.
  297. # Its value may be silently ignored in the future.
  298. # Reason: Replaced by [DEFAULT]/transport_url
  299. #rpc_backend = rabbit
  300.  
  301. # The default exchange under which topics are scoped. May be overridden by an
  302. # exchange name specified in the transport_url option. (string value)
  303. #control_exchange = tacker
  304.  
  305. #
  306. # From oslo.service.service
  307. #
  308.  
  309. # Enable eventlet backdoor. Acceptable values are 0, <port>, and
  310. # <start>:<end>, where 0 results in listening on a random tcp port number;
  311. # <port> results in listening on the specified port number (and not enabling
  312. # backdoor if that port is in use); and <start>:<end> results in listening on
  313. # the smallest unused port number within the specified range of port numbers.
  314. # The chosen port is displayed in the service's log file. (string value)
  315. #backdoor_port = <None>
  316.  
  317. # Enable eventlet backdoor, using the provided path as a unix socket that can
  318. # receive connections. This option is mutually exclusive with 'backdoor_port'
  319. # in that only one should be provided. If both are provided then the existence
  320. # of this option overrides the usage of that option. (string value)
  321. #backdoor_socket = <None>
  322.  
  323. # Enables or disables logging values of all registered options when starting a
  324. # service (at DEBUG level). (boolean value)
  325. #log_options = true
  326.  
  327. # Specify a timeout after which a gracefully shutdown server will exit. Zero
  328. # value means endless wait. (integer value)
  329. #graceful_shutdown_timeout = 60
  330.  
  331. #
  332. # From tacker.common.config
  333. #
  334.  
  335. # The host IP to bind to (unknown value)
  336. bind_host = 192.168.99.100
  337.  
  338. # The port to bind to (integer value)
  339. bind_port = 9890
  340.  
  341. # The API paste config file to use (string value)
  342. #api_paste_config = api-paste.ini
  343.  
  344. # The path for API extensions (string value)
  345. #api_extensions_path =
  346.  
  347. # The service plugins Tacker will use (list value)
  348. service_plugins = nfvo,vnfm
  349.  
  350. # The policy file to use (string value)
  351. #policy_file = policy.json
  352.  
  353. # The type of authentication to use (string value)
  354. auth_strategy = keystone
  355.  
  356. # Allow the usage of the bulk API (boolean value)
  357. #allow_bulk = true
  358.  
  359. # Allow the usage of the pagination (boolean value)
  360. #allow_pagination = false
  361.  
  362. # Allow the usage of the sorting (boolean value)
  363. #allow_sorting = false
  364.  
  365. # The maximum number of items returned in a single response, value was
  366. # 'infinite' or negative integer means no limit (string value)
  367. #pagination_max_limit = -1
  368.  
  369. # The hostname Tacker is running on (unknown value)
  370. #host = ubuntu
  371.  
  372. # Where to store Tacker state files. This directory must be writable by the
  373. # agent. (string value)
  374. state_path = /var/lib/tacker
  375.  
  376. #
  377. # From tacker.service
  378. #
  379.  
  380. # Seconds between running components report states (integer value)
  381. #report_interval = 10
  382.  
  383. # Seconds between running periodic tasks (integer value)
  384. #periodic_interval = 40
  385.  
  386. # Number of separate worker processes for service (integer value)
  387. #api_workers = 0
  388.  
  389. # Range of seconds to randomly delay when starting the periodic task scheduler
  390. # to reduce stampeding. (Disable by setting to 0) (integer value)
  391. #periodic_fuzzy_delay = 5
  392.  
  393. #
  394. # From tacker.wsgi
  395. #
  396.  
  397. # Number of backlog requests to configure the socket with (integer value)
  398. #backlog = 4096
  399.  
  400. # Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not
  401. # supported on OS X. (integer value)
  402. #tcp_keepidle = 600
  403.  
  404. # Number of seconds to keep retrying to listen (integer value)
  405. #retry_until_window = 30
  406.  
  407. # Max header line to accommodate large tokens (integer value)
  408. #max_header_line = 16384
  409.  
  410. # Enable SSL on the API server (boolean value)
  411. #use_ssl = false
  412.  
  413. # CA certificate file to use to verify connecting clients (string value)
  414. #ssl_ca_file = <None>
  415.  
  416. # Certificate file to use when starting the server securely (string value)
  417. #ssl_cert_file = <None>
  418.  
  419. # Private key file to use when starting the server securely (string value)
  420. #ssl_key_file = <None>
  421.  
  422.  
  423. [alarm_auth]
  424.  
  425. #
  426. # From tacker.alarm_receiver
  427. #
  428.  
  429. # User name for alarm monitoring (string value)
  430. #username = admin
  431.  
  432. # password for alarm monitoring (string value)
  433. #password = devstack
  434.  
  435. # project name for alarm monitoring (string value)
  436. #project_name = admin
  437.  
  438.  
  439. [ceilometer]
  440.  
  441. #
  442. # From tacker.vnfm.monitor_drivers.ceilometer.ceilometer
  443. #
  444.  
  445. # Address which drivers use to trigger (unknown value)
  446. #host = ubuntu
  447.  
  448. # port number which drivers use to trigger (port value)
  449. # Minimum value: 0
  450. # Maximum value: 65535
  451. #port = 9890
  452.  
  453.  
  454. [cors]
  455.  
  456. #
  457. # From oslo.middleware
  458. #
  459.  
  460. # Indicate whether this resource may be shared with the domain received in the
  461. # requests "origin" header. Format: "<protocol>://<host>[:<port>]", no trailing
  462. # slash. Example: https://horizon.example.com (list value)
  463. #allowed_origin = <None>
  464.  
  465. # Indicate that the actual request can include user credentials (boolean value)
  466. #allow_credentials = true
  467.  
  468. # Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
  469. # Headers. (list value)
  470. #expose_headers =
  471.  
  472. # Maximum cache age of CORS preflight requests. (integer value)
  473. #max_age = 3600
  474.  
  475. # Indicate which methods can be used during the actual request. (list value)
  476. #allow_methods = OPTIONS,GET,HEAD,POST,PUT,DELETE,TRACE,PATCH
  477.  
  478. # Indicate which header field names may be used during the actual request.
  479. # (list value)
  480. #allow_headers =
  481.  
  482.  
  483. [database]
  484.  
  485. #
  486. # From oslo.db
  487. #
  488.  
  489. # If True, SQLite uses synchronous mode. (boolean value)
  490. #sqlite_synchronous = true
  491.  
  492. # The back end to use for the database. (string value)
  493. # Deprecated group/name - [DEFAULT]/db_backend
  494. #backend = sqlalchemy
  495.  
  496. # The SQLAlchemy connection string to use to connect to the database. (string
  497. # value)
  498. # Deprecated group/name - [DEFAULT]/sql_connection
  499. # Deprecated group/name - [DATABASE]/sql_connection
  500. # Deprecated group/name - [sql]/connection
  501. connection = mysql+pymysql://tacker:Password1@192.168.99.100:3306/tacker?charset=utf8
  502.  
  503. # The SQLAlchemy connection string to use to connect to the slave database.
  504. # (string value)
  505. #slave_connection = <None>
  506.  
  507. # The SQL mode to be used for MySQL sessions. This option, including the
  508. # default, overrides any server-set SQL mode. To use whatever SQL mode is set
  509. # by the server configuration, set this to no value. Example: mysql_sql_mode=
  510. # (string value)
  511. #mysql_sql_mode = TRADITIONAL
  512.  
  513. # If True, transparently enables support for handling MySQL Cluster (NDB).
  514. # (boolean value)
  515. #mysql_enable_ndb = false
  516.  
  517. # Connections which have been present in the connection pool longer than this
  518. # number of seconds will be replaced with a new one the next time they are
  519. # checked out from the pool. (integer value)
  520. # Deprecated group/name - [DATABASE]/idle_timeout
  521. # Deprecated group/name - [database]/idle_timeout
  522. # Deprecated group/name - [DEFAULT]/sql_idle_timeout
  523. # Deprecated group/name - [DATABASE]/sql_idle_timeout
  524. # Deprecated group/name - [sql]/idle_timeout
  525. #connection_recycle_time = 3600
  526.  
  527. # Minimum number of SQL connections to keep open in a pool. (integer value)
  528. # Deprecated group/name - [DEFAULT]/sql_min_pool_size
  529. # Deprecated group/name - [DATABASE]/sql_min_pool_size
  530. #min_pool_size = 1
  531.  
  532. # Maximum number of SQL connections to keep open in a pool. Setting a value of
  533. # 0 indicates no limit. (integer value)
  534. # Deprecated group/name - [DEFAULT]/sql_max_pool_size
  535. # Deprecated group/name - [DATABASE]/sql_max_pool_size
  536. #max_pool_size = 5
  537.  
  538. # Maximum number of database connection retries during startup. Set to -1 to
  539. # specify an infinite retry count. (integer value)
  540. # Deprecated group/name - [DEFAULT]/sql_max_retries
  541. # Deprecated group/name - [DATABASE]/sql_max_retries
  542. #max_retries = 10
  543.  
  544. # Interval between retries of opening a SQL connection. (integer value)
  545. # Deprecated group/name - [DEFAULT]/sql_retry_interval
  546. # Deprecated group/name - [DATABASE]/reconnect_interval
  547. #retry_interval = 10
  548.  
  549. # If set, use this value for max_overflow with SQLAlchemy. (integer value)
  550. # Deprecated group/name - [DEFAULT]/sql_max_overflow
  551. # Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
  552. #max_overflow = 50
  553.  
  554. # Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
  555. # value)
  556. # Minimum value: 0
  557. # Maximum value: 100
  558. # Deprecated group/name - [DEFAULT]/sql_connection_debug
  559. #connection_debug = 0
  560.  
  561. # Add Python stack traces to SQL as comment strings. (boolean value)
  562. # Deprecated group/name - [DEFAULT]/sql_connection_trace
  563. #connection_trace = false
  564.  
  565. # If set, use this value for pool_timeout with SQLAlchemy. (integer value)
  566. # Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
  567. #pool_timeout = <None>
  568.  
  569. # Enable the experimental use of database reconnect on connection lost.
  570. # (boolean value)
  571. #use_db_reconnect = false
  572.  
  573. # Seconds between retries of a database transaction. (integer value)
  574. #db_retry_interval = 1
  575.  
  576. # If True, increases the interval between retries of a database operation up to
  577. # db_max_retry_interval. (boolean value)
  578. #db_inc_retry_interval = true
  579.  
  580. # If db_inc_retry_interval is set, the maximum seconds between retries of a
  581. # database operation. (integer value)
  582. #db_max_retry_interval = 10
  583.  
  584. # Maximum retries in case of connection error or deadlock error before error is
  585. # raised. Set to -1 to specify an infinite retry count. (integer value)
  586. #db_max_retries = 20
  587.  
  588.  
  589. [healthcheck]
  590.  
  591. #
  592. # From oslo.middleware
  593. #
  594.  
  595. # DEPRECATED: The path to respond to healtcheck requests on. (string value)
  596. # This option is deprecated for removal.
  597. # Its value may be silently ignored in the future.
  598. #path = /healthcheck
  599.  
  600. # Show more detailed information as part of the response (boolean value)
  601. #detailed = false
  602.  
  603. # Additional backends that can perform health checks and report that
  604. # information back as part of a request. (list value)
  605. #backends =
  606.  
  607. # Check the presence of a file to determine if an application is running on a
  608. # port. Used by DisableByFileHealthcheck plugin. (string value)
  609. #disable_by_file_path = <None>
  610.  
  611. # Check the presence of a file based on a port to determine if an application
  612. # is running on a port. Expects a "port:path" list of strings. Used by
  613. # DisableByFilesPortsHealthcheck plugin. (list value)
  614. #disable_by_file_paths =
  615.  
  616.  
  617. [k8s_vim]
  618.  
  619. #
  620. # From tacker.nfvo.drivers.vim.kubernetes_driver
  621. #
  622.  
  623. # Use barbican to encrypt vim password if True, save vim credentials in local
  624. # file systemif False (boolean value)
  625. #use_barbican = true
  626.  
  627.  
  628. [key_manager]
  629.  
  630. #
  631. # From tacker.keymgr
  632. #
  633.  
  634. # The full class name of the key manager API class (string value)
  635. #api_class = tacker.keymgr.barbican_key_manager.BarbicanKeyManager
  636.  
  637.  
  638. [keystone_authtoken]
  639.  
  640. #
  641. # From keystonemiddleware.auth_token
  642. #
  643.  
  644. # Complete "public" Identity API endpoint. This endpoint should not be an
  645. # "admin" endpoint, as it should be accessible by all end users.
  646. # Unauthenticated clients are redirected to this endpoint to authenticate.
  647. # Although this endpoint should ideally be unversioned, client support in the
  648. # wild varies. If you're using a versioned v2 endpoint here, then this should
  649. # *not* be the same endpoint the service user utilizes for validating tokens,
  650. # because normal end users may not be able to reach that endpoint. (string
  651. # value)
  652. # Deprecated group/name - [keystone_authtoken]/auth_uri
  653. #www_authenticate_uri = <None>
  654.  
  655. # DEPRECATED: Complete "public" Identity API endpoint. This endpoint should not
  656. # be an "admin" endpoint, as it should be accessible by all end users.
  657. # Unauthenticated clients are redirected to this endpoint to authenticate.
  658. # Although this endpoint should ideally be unversioned, client support in the
  659. # wild varies. If you're using a versioned v2 endpoint here, then this should
  660. # *not* be the same endpoint the service user utilizes for validating tokens,
  661. # because normal end users may not be able to reach that endpoint. This option
  662. # is deprecated in favor of www_authenticate_uri and will be removed in the S
  663. # release. (string value)
  664. # This option is deprecated for removal since Queens.
  665. # Its value may be silently ignored in the future.
  666. # Reason: The auth_uri option is deprecated in favor of www_authenticate_uri
  667. # and will be removed in the S release.
  668. #auth_uri = <None>
  669.  
  670. # API version of the admin Identity API endpoint. (string value)
  671. #auth_version = <None>
  672.  
  673. # Do not handle authorization requests within the middleware, but delegate the
  674. # authorization decision to downstream WSGI components. (boolean value)
  675. #delay_auth_decision = false
  676.  
  677. # Request timeout value for communicating with Identity API server. (integer
  678. # value)
  679. #http_connect_timeout = <None>
  680.  
  681. # How many times are we trying to reconnect when communicating with Identity
  682. # API Server. (integer value)
  683. #http_request_max_retries = 3
  684.  
  685. # Request environment key where the Swift cache object is stored. When
  686. # auth_token middleware is deployed with a Swift cache, use this option to have
  687. # the middleware share a caching backend with swift. Otherwise, use the
  688. # ``memcached_servers`` option instead. (string value)
  689. #cache = <None>
  690.  
  691. # Required if identity server requires client certificate (string value)
  692. #certfile = <None>
  693.  
  694. # Required if identity server requires client certificate (string value)
  695. #keyfile = <None>
  696.  
  697. # A PEM encoded Certificate Authority to use when verifying HTTPs connections.
  698. # Defaults to system CAs. (string value)
  699. #cafile = <None>
  700.  
  701. # Verify HTTPS connections. (boolean value)
  702. #insecure = false
  703.  
  704. # The region in which the identity server can be found. (string value)
  705. region_name = RegionOne
  706.  
  707. # DEPRECATED: Directory used to cache files related to PKI tokens. This option
  708. # has been deprecated in the Ocata release and will be removed in the P
  709. # release. (string value)
  710. # This option is deprecated for removal since Ocata.
  711. # Its value may be silently ignored in the future.
  712. # Reason: PKI token format is no longer supported.
  713. #signing_dir = <None>
  714.  
  715. # Optionally specify a list of memcached server(s) to use for caching. If left
  716. # undefined, tokens will instead be cached in-process. (list value)
  717. # Deprecated group/name - [keystone_authtoken]/memcache_servers
  718. memcached_servers = 11211
  719.  
  720. # In order to prevent excessive effort spent validating tokens, the middleware
  721. # caches previously-seen tokens for a configurable duration (in seconds). Set
  722. # to -1 to disable caching completely. (integer value)
  723. #token_cache_time = 300
  724.  
  725. # DEPRECATED: Determines the frequency at which the list of revoked tokens is
  726. # retrieved from the Identity service (in seconds). A high number of revocation
  727. # events combined with a low cache duration may significantly reduce
  728. # performance. Only valid for PKI tokens. This option has been deprecated in
  729. # the Ocata release and will be removed in the P release. (integer value)
  730. # This option is deprecated for removal since Ocata.
  731. # Its value may be silently ignored in the future.
  732. # Reason: PKI token format is no longer supported.
  733. #revocation_cache_time = 10
  734.  
  735. # (Optional) If defined, indicate whether token data should be authenticated or
  736. # authenticated and encrypted. If MAC, token data is authenticated (with HMAC)
  737. # in the cache. If ENCRYPT, token data is encrypted and authenticated in the
  738. # cache. If the value is not one of these options or empty, auth_token will
  739. # raise an exception on initialization. (string value)
  740. # Possible values:
  741. # None - <No description provided>
  742. # MAC - <No description provided>
  743. # ENCRYPT - <No description provided>
  744. #memcache_security_strategy = None
  745.  
  746. # (Optional, mandatory if memcache_security_strategy is defined) This string is
  747. # used for key derivation. (string value)
  748. #memcache_secret_key = <None>
  749.  
  750. # (Optional) Number of seconds memcached server is considered dead before it is
  751. # tried again. (integer value)
  752. #memcache_pool_dead_retry = 300
  753.  
  754. # (Optional) Maximum total number of open connections to every memcached
  755. # server. (integer value)
  756. #memcache_pool_maxsize = 10
  757.  
  758. # (Optional) Socket timeout in seconds for communicating with a memcached
  759. # server. (integer value)
  760. #memcache_pool_socket_timeout = 3
  761.  
  762. # (Optional) Number of seconds a connection to memcached is held unused in the
  763. # pool before it is closed. (integer value)
  764. #memcache_pool_unused_timeout = 60
  765.  
  766. # (Optional) Number of seconds that an operation will wait to get a memcached
  767. # client connection from the pool. (integer value)
  768. #memcache_pool_conn_get_timeout = 10
  769.  
  770. # (Optional) Use the advanced (eventlet safe) memcached client pool. The
  771. # advanced pool will only work under python 2.x. (boolean value)
  772. #memcache_use_advanced_pool = false
  773.  
  774. # (Optional) Indicate whether to set the X-Service-Catalog header. If False,
  775. # middleware will not ask for service catalog on token validation and will not
  776. # set the X-Service-Catalog header. (boolean value)
  777. #include_service_catalog = true
  778.  
  779. # Used to control the use and type of token binding. Can be set to: "disabled"
  780. # to not check token binding. "permissive" (default) to validate binding
  781. # information if the bind type is of a form known to the server and ignore it
  782. # if not. "strict" like "permissive" but if the bind type is unknown the token
  783. # will be rejected. "required" any form of token binding is needed to be
  784. # allowed. Finally the name of a binding method that must be present in tokens.
  785. # (string value)
  786. #enforce_token_bind = permissive
  787.  
  788. # DEPRECATED: If true, the revocation list will be checked for cached tokens.
  789. # This requires that PKI tokens are configured on the identity server. (boolean
  790. # value)
  791. # This option is deprecated for removal since Ocata.
  792. # Its value may be silently ignored in the future.
  793. # Reason: PKI token format is no longer supported.
  794. #check_revocations_for_cached = false
  795.  
  796. # DEPRECATED: Hash algorithms to use for hashing PKI tokens. This may be a
  797. # single algorithm or multiple. The algorithms are those supported by Python
  798. # standard hashlib.new(). The hashes will be tried in the order given, so put
  799. # the preferred one first for performance. The result of the first hash will be
  800. # stored in the cache. This will typically be set to multiple values only while
  801. # migrating from a less secure algorithm to a more secure one. Once all the old
  802. # tokens are expired this option should be set to a single value for better
  803. # performance. (list value)
  804. # This option is deprecated for removal since Ocata.
  805. # Its value may be silently ignored in the future.
  806. # Reason: PKI token format is no longer supported.
  807. #hash_algorithms = md5
  808.  
  809. # A choice of roles that must be present in a service token. Service tokens are
  810. # allowed to request that an expired token can be used and so this check should
  811. # tightly control that only actual services should be sending this token. Roles
  812. # here are applied as an ANY check so any role in this list must be present.
  813. # For backwards compatibility reasons this currently only affects the
  814. # allow_expired check. (list value)
  815. #service_token_roles = service
  816.  
  817. # For backwards compatibility reasons we must let valid service tokens pass
  818. # that don't pass the service_token_roles check as valid. Setting this true
  819. # will become the default in a future release and should be enabled if
  820. # possible. (boolean value)
  821. #service_token_roles_required = false
  822.  
  823. # Authentication type to load (string value)
  824. # Deprecated group/name - [keystone_authtoken]/auth_plugin
  825. auth_type = password
  826. project_domain_name = default
  827. user_domain_name = alt-demo
  828. username = admin
  829. project_name = service
  830. password = Password1
  831. auth_url = http://192.168.99.100:35357
  832. www_authenticate_uri = http://192.168.99.100:5000
  833. # Config Section from which to load plugin specific options (string value)
  834. #auth_section = <None>
  835.  
  836. [agent]
  837. root_helper = sudo /usr/local/bin/tacker-rootwrap /usr/local/etc/tacker/rootwrap.conf
  838.  
  839.  
  840. [matchmaker_redis]
  841.  
  842. #
  843. # From oslo.messaging
  844. #
  845.  
  846. # DEPRECATED: Host to locate redis. (string value)
  847. # This option is deprecated for removal.
  848. # Its value may be silently ignored in the future.
  849. # Reason: Replaced by [DEFAULT]/transport_url
  850. #host = 127.0.0.1
  851.  
  852. # DEPRECATED: Use this port to connect to redis host. (port value)
  853. # Minimum value: 0
  854. # Maximum value: 65535
  855. # This option is deprecated for removal.
  856. # Its value may be silently ignored in the future.
  857. # Reason: Replaced by [DEFAULT]/transport_url
  858. #port = 6379
  859.  
  860. # DEPRECATED: Password for Redis server (optional). (string value)
  861. # This option is deprecated for removal.
  862. # Its value may be silently ignored in the future.
  863. # Reason: Replaced by [DEFAULT]/transport_url
  864. #password =
  865.  
  866. # DEPRECATED: List of Redis Sentinel hosts (fault tolerance mode), e.g.,
  867. # [host:port, host1:port ... ] (list value)
  868. # This option is deprecated for removal.
  869. # Its value may be silently ignored in the future.
  870. # Reason: Replaced by [DEFAULT]/transport_url
  871. #sentinel_hosts =
  872.  
  873. # Redis replica set name. (string value)
  874. #sentinel_group_name = oslo-messaging-zeromq
  875.  
  876. # Time in ms to wait between connection attempts. (integer value)
  877. #wait_timeout = 2000
  878.  
  879. # Time in ms to wait before the transaction is killed. (integer value)
  880. #check_timeout = 20000
  881.  
  882. # Timeout in ms on blocking socket operations. (integer value)
  883. #socket_timeout = 10000
  884.  
  885.  
  886. [monitor]
  887.  
  888. #
  889. # From tacker.vnfm.monitor
  890. #
  891.  
  892. # check interval for monitor (integer value)
  893. #check_intvl = 10
  894.  
  895.  
  896. [monitor_http_ping]
  897.  
  898. #
  899. # From tacker.vnfm.monitor_drivers.http_ping.http_ping
  900. #
  901.  
  902. # number of times to retry (integer value)
  903. #retry = 5
  904.  
  905. # number of seconds to wait for a response (integer value)
  906. #timeout = 1
  907.  
  908. # HTTP port number to send request (integer value)
  909. #port = 80
  910.  
  911.  
  912. [monitor_ping]
  913.  
  914. #
  915. # From tacker.vnfm.monitor_drivers.ping.ping
  916. #
  917.  
  918. # number of ICMP packets to send (string value)
  919. #count = 1
  920.  
  921. # number of seconds to wait for a response (string value)
  922. #timeout = 1
  923.  
  924. # number of seconds to wait between packets (string value)
  925. #interval = 1
  926.  
  927.  
  928. [nfvo_vim]
  929.  
  930. #
  931. # From tacker.nfvo.nfvo_plugin
  932. #
  933.  
  934. # VIM driver for launching VNFs (list value)
  935. vim_drivers = openstack
  936.  
  937. # Interval to check for VIM health (integer value)
  938. #monitor_interval = 30
  939.  
  940.  
  941. [openstack_vim]
  942.  
  943. #
  944. # From tacker.vnfm.infra_drivers.openstack.openstack
  945. #
  946.  
  947. # Number of attempts to retry for stack creation/deletion (integer value)
  948. #stack_retries = 60
  949.  
  950. # Wait time (in seconds) between consecutive stack create/delete retries
  951. # (integer value)
  952. #stack_retry_wait = 10
  953.  
  954.  
  955. [openwrt]
  956.  
  957. #
  958. # From tacker.vnfm.mgmt_drivers.openwrt.openwrt
  959. #
  960.  
  961. # user name to login openwrt (string value)
  962. #user = root
  963.  
  964. # password to login openwrt (string value)
  965. #password =
  966.  
  967.  
  968. [oslo_messaging_amqp]
  969.  
  970. #
  971. # From oslo.messaging
  972. #
  973.  
  974. # Name for the AMQP container. must be globally unique. Defaults to a generated
  975. # UUID (string value)
  976. #container_name = <None>
  977.  
  978. # Timeout for inactive connections (in seconds) (integer value)
  979. #idle_timeout = 0
  980.  
  981. # Debug: dump AMQP frames to stdout (boolean value)
  982. #trace = false
  983.  
  984. # Attempt to connect via SSL. If no other ssl-related parameters are given, it
  985. # will use the system's CA-bundle to verify the server's certificate. (boolean
  986. # value)
  987. #ssl = false
  988.  
  989. # CA certificate PEM file used to verify the server's certificate (string
  990. # value)
  991. #ssl_ca_file =
  992.  
  993. # Self-identifying certificate PEM file for client authentication (string
  994. # value)
  995. #ssl_cert_file =
  996.  
  997. # Private key PEM file used to sign ssl_cert_file certificate (optional)
  998. # (string value)
  999. #ssl_key_file =
  1000.  
  1001. # Password for decrypting ssl_key_file (if encrypted) (string value)
  1002. #ssl_key_password = <None>
  1003.  
  1004. # By default SSL checks that the name in the server's certificate matches the
  1005. # hostname in the transport_url. In some configurations it may be preferable to
  1006. # use the virtual hostname instead, for example if the server uses the Server
  1007. # Name Indication TLS extension (rfc6066) to provide a certificate per virtual
  1008. # host. Set ssl_verify_vhost to True if the server's SSL certificate uses the
  1009. # virtual host name instead of the DNS name. (boolean value)
  1010. #ssl_verify_vhost = false
  1011.  
  1012. # DEPRECATED: Accept clients using either SSL or plain TCP (boolean value)
  1013. # This option is deprecated for removal.
  1014. # Its value may be silently ignored in the future.
  1015. # Reason: Not applicable - not a SSL server
  1016. #allow_insecure_clients = false
  1017.  
  1018. # Space separated list of acceptable SASL mechanisms (string value)
  1019. #sasl_mechanisms =
  1020.  
  1021. # Path to directory that contains the SASL configuration (string value)
  1022. #sasl_config_dir =
  1023.  
  1024. # Name of configuration file (without .conf suffix) (string value)
  1025. #sasl_config_name =
  1026.  
  1027. # SASL realm to use if no realm present in username (string value)
  1028. #sasl_default_realm =
  1029.  
  1030. # DEPRECATED: User name for message broker authentication (string value)
  1031. # This option is deprecated for removal.
  1032. # Its value may be silently ignored in the future.
  1033. # Reason: Should use configuration option transport_url to provide the
  1034. # username.
  1035. #username =
  1036.  
  1037. # DEPRECATED: Password for message broker authentication (string value)
  1038. # This option is deprecated for removal.
  1039. # Its value may be silently ignored in the future.
  1040. # Reason: Should use configuration option transport_url to provide the
  1041. # password.
  1042. #password =
  1043.  
  1044. # Seconds to pause before attempting to re-connect. (integer value)
  1045. # Minimum value: 1
  1046. #connection_retry_interval = 1
  1047.  
  1048. # Increase the connection_retry_interval by this many seconds after each
  1049. # unsuccessful failover attempt. (integer value)
  1050. # Minimum value: 0
  1051. #connection_retry_backoff = 2
  1052.  
  1053. # Maximum limit for connection_retry_interval + connection_retry_backoff
  1054. # (integer value)
  1055. # Minimum value: 1
  1056. #connection_retry_interval_max = 30
  1057.  
  1058. # Time to pause between re-connecting an AMQP 1.0 link that failed due to a
  1059. # recoverable error. (integer value)
  1060. # Minimum value: 1
  1061. #link_retry_delay = 10
  1062.  
  1063. # The maximum number of attempts to re-send a reply message which failed due to
  1064. # a recoverable error. (integer value)
  1065. # Minimum value: -1
  1066. #default_reply_retry = 0
  1067.  
  1068. # The deadline for an rpc reply message delivery. (integer value)
  1069. # Minimum value: 5
  1070. #default_reply_timeout = 30
  1071.  
  1072. # The deadline for an rpc cast or call message delivery. Only used when caller
  1073. # does not provide a timeout expiry. (integer value)
  1074. # Minimum value: 5
  1075. #default_send_timeout = 30
  1076.  
  1077. # The deadline for a sent notification message delivery. Only used when caller
  1078. # does not provide a timeout expiry. (integer value)
  1079. # Minimum value: 5
  1080. #default_notify_timeout = 30
  1081.  
  1082. # The duration to schedule a purge of idle sender links. Detach link after
  1083. # expiry. (integer value)
  1084. # Minimum value: 1
  1085. #default_sender_link_timeout = 600
  1086.  
  1087. # Indicates the addressing mode used by the driver.
  1088. # Permitted values:
  1089. # 'legacy' - use legacy non-routable addressing
  1090. # 'routable' - use routable addresses
  1091. # 'dynamic' - use legacy addresses if the message bus does not support routing
  1092. # otherwise use routable addressing (string value)
  1093. #addressing_mode = dynamic
  1094.  
  1095. # Enable virtual host support for those message buses that do not natively
  1096. # support virtual hosting (such as qpidd). When set to true the virtual host
  1097. # name will be added to all message bus addresses, effectively creating a
  1098. # private 'subnet' per virtual host. Set to False if the message bus supports
  1099. # virtual hosting using the 'hostname' field in the AMQP 1.0 Open performative
  1100. # as the name of the virtual host. (boolean value)
  1101. #pseudo_vhost = true
  1102.  
  1103. # address prefix used when sending to a specific server (string value)
  1104. #server_request_prefix = exclusive
  1105.  
  1106. # address prefix used when broadcasting to all servers (string value)
  1107. #broadcast_prefix = broadcast
  1108.  
  1109. # address prefix when sending to any server in group (string value)
  1110. #group_request_prefix = unicast
  1111.  
  1112. # Address prefix for all generated RPC addresses (string value)
  1113. #rpc_address_prefix = openstack.org/om/rpc
  1114.  
  1115. # Address prefix for all generated Notification addresses (string value)
  1116. #notify_address_prefix = openstack.org/om/notify
  1117.  
  1118. # Appended to the address prefix when sending a fanout message. Used by the
  1119. # message bus to identify fanout messages. (string value)
  1120. #multicast_address = multicast
  1121.  
  1122. # Appended to the address prefix when sending to a particular RPC/Notification
  1123. # server. Used by the message bus to identify messages sent to a single
  1124. # destination. (string value)
  1125. #unicast_address = unicast
  1126.  
  1127. # Appended to the address prefix when sending to a group of consumers. Used by
  1128. # the message bus to identify messages that should be delivered in a round-
  1129. # robin fashion across consumers. (string value)
  1130. #anycast_address = anycast
  1131.  
  1132. # Exchange name used in notification addresses.
  1133. # Exchange name resolution precedence:
  1134. # Target.exchange if set
  1135. # else default_notification_exchange if set
  1136. # else control_exchange if set
  1137. # else 'notify' (string value)
  1138. #default_notification_exchange = <None>
  1139.  
  1140. # Exchange name used in RPC addresses.
  1141. # Exchange name resolution precedence:
  1142. # Target.exchange if set
  1143. # else default_rpc_exchange if set
  1144. # else control_exchange if set
  1145. # else 'rpc' (string value)
  1146. #default_rpc_exchange = <None>
  1147.  
  1148. # Window size for incoming RPC Reply messages. (integer value)
  1149. # Minimum value: 1
  1150. #reply_link_credit = 200
  1151.  
  1152. # Window size for incoming RPC Request messages (integer value)
  1153. # Minimum value: 1
  1154. #rpc_server_credit = 100
  1155.  
  1156. # Window size for incoming Notification messages (integer value)
  1157. # Minimum value: 1
  1158. #notify_server_credit = 100
  1159.  
  1160. # Send messages of this type pre-settled.
  1161. # Pre-settled messages will not receive acknowledgement
  1162. # from the peer. Note well: pre-settled messages may be
  1163. # silently discarded if the delivery fails.
  1164. # Permitted values:
  1165. # 'rpc-call' - send RPC Calls pre-settled
  1166. # 'rpc-reply'- send RPC Replies pre-settled
  1167. # 'rpc-cast' - Send RPC Casts pre-settled
  1168. # 'notify' - Send Notifications pre-settled
  1169. # (multi valued)
  1170. #pre_settled = rpc-cast
  1171. #pre_settled = rpc-reply
  1172.  
  1173.  
  1174. [oslo_messaging_kafka]
  1175.  
  1176. #
  1177. # From oslo.messaging
  1178. #
  1179.  
  1180. # DEPRECATED: Default Kafka broker Host (string value)
  1181. # This option is deprecated for removal.
  1182. # Its value may be silently ignored in the future.
  1183. # Reason: Replaced by [DEFAULT]/transport_url
  1184. #kafka_default_host = localhost
  1185.  
  1186. # DEPRECATED: Default Kafka broker Port (port value)
  1187. # Minimum value: 0
  1188. # Maximum value: 65535
  1189. # This option is deprecated for removal.
  1190. # Its value may be silently ignored in the future.
  1191. # Reason: Replaced by [DEFAULT]/transport_url
  1192. #kafka_default_port = 9092
  1193.  
  1194. # Max fetch bytes of Kafka consumer (integer value)
  1195. #kafka_max_fetch_bytes = 1048576
  1196.  
  1197. # Default timeout(s) for Kafka consumers (floating point value)
  1198. #kafka_consumer_timeout = 1.0
  1199.  
  1200. # DEPRECATED: Pool Size for Kafka Consumers (integer value)
  1201. # This option is deprecated for removal.
  1202. # Its value may be silently ignored in the future.
  1203. # Reason: Driver no longer uses connection pool.
  1204. #pool_size = 10
  1205.  
  1206. # DEPRECATED: The pool size limit for connections expiration policy (integer
  1207. # value)
  1208. # This option is deprecated for removal.
  1209. # Its value may be silently ignored in the future.
  1210. # Reason: Driver no longer uses connection pool.
  1211. #conn_pool_min_size = 2
  1212.  
  1213. # DEPRECATED: The time-to-live in sec of idle connections in the pool (integer
  1214. # value)
  1215. # This option is deprecated for removal.
  1216. # Its value may be silently ignored in the future.
  1217. # Reason: Driver no longer uses connection pool.
  1218. #conn_pool_ttl = 1200
  1219.  
  1220. # Group id for Kafka consumer. Consumers in one group will coordinate message
  1221. # consumption (string value)
  1222. #consumer_group = oslo_messaging_consumer
  1223.  
  1224. # Upper bound on the delay for KafkaProducer batching in seconds (floating
  1225. # point value)
  1226. #producer_batch_timeout = 0.0
  1227.  
  1228. # Size of batch for the producer async send (integer value)
  1229. #producer_batch_size = 16384
  1230.  
  1231.  
  1232. [oslo_messaging_notifications]
  1233.  
  1234. #
  1235. # From oslo.messaging
  1236. #
  1237.  
  1238. # The Drivers(s) to handle sending notifications. Possible values are
  1239. # messaging, messagingv2, routing, log, test, noop (multi valued)
  1240. # Deprecated group/name - [DEFAULT]/notification_driver
  1241. #driver =
  1242.  
  1243. # A URL representing the messaging driver to use for notifications. If not set,
  1244. # we fall back to the same configuration used for RPC. (string value)
  1245. # Deprecated group/name - [DEFAULT]/notification_transport_url
  1246. #transport_url = <None>
  1247.  
  1248. # AMQP topic used for OpenStack notifications. (list value)
  1249. # Deprecated group/name - [rpc_notifier2]/topics
  1250. # Deprecated group/name - [DEFAULT]/notification_topics
  1251. #topics = notifications
  1252.  
  1253. # The maximum number of attempts to re-send a notification message which failed
  1254. # to be delivered due to a recoverable error. 0 - No retry, -1 - indefinite
  1255. # (integer value)
  1256. #retry = -1
  1257.  
  1258.  
  1259. [oslo_messaging_rabbit]
  1260.  
  1261. #
  1262. # From oslo.messaging
  1263. #
  1264.  
  1265. # Use durable queues in AMQP. (boolean value)
  1266. # Deprecated group/name - [DEFAULT]/amqp_durable_queues
  1267. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  1268. #amqp_durable_queues = false
  1269.  
  1270. # Auto-delete queues in AMQP. (boolean value)
  1271. #amqp_auto_delete = false
  1272.  
  1273. # Enable SSL (boolean value)
  1274. #ssl = <None>
  1275.  
  1276. # SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
  1277. # SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
  1278. # distributions. (string value)
  1279. # Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_version
  1280. #ssl_version =
  1281.  
  1282. # SSL key file (valid only if SSL enabled). (string value)
  1283. # Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_keyfile
  1284. #ssl_key_file =
  1285.  
  1286. # SSL cert file (valid only if SSL enabled). (string value)
  1287. # Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_certfile
  1288. #ssl_cert_file =
  1289.  
  1290. # SSL certification authority file (valid only if SSL enabled). (string value)
  1291. # Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_ca_certs
  1292. #ssl_ca_file =
  1293.  
  1294. # How long to wait before reconnecting in response to an AMQP consumer cancel
  1295. # notification. (floating point value)
  1296. #kombu_reconnect_delay = 1.0
  1297.  
  1298. # EXPERIMENTAL: Possible values are: gzip, bz2. If not set compression will not
  1299. # be used. This option may not be available in future versions. (string value)
  1300. #kombu_compression = <None>
  1301.  
  1302. # How long to wait a missing client before abandoning to send it its replies.
  1303. # This value should not be longer than rpc_response_timeout. (integer value)
  1304. # Deprecated group/name - [oslo_messaging_rabbit]/kombu_reconnect_timeout
  1305. #kombu_missing_consumer_retry_timeout = 60
  1306.  
  1307. # Determines how the next RabbitMQ node is chosen in case the one we are
  1308. # currently connected to becomes unavailable. Takes effect only if more than
  1309. # one RabbitMQ node is provided in config. (string value)
  1310. # Possible values:
  1311. # round-robin - <No description provided>
  1312. # shuffle - <No description provided>
  1313. #kombu_failover_strategy = round-robin
  1314.  
  1315. # DEPRECATED: The RabbitMQ broker address where a single node is used. (string
  1316. # value)
  1317. # This option is deprecated for removal.
  1318. # Its value may be silently ignored in the future.
  1319. # Reason: Replaced by [DEFAULT]/transport_url
  1320. #rabbit_host = localhost
  1321.  
  1322. # DEPRECATED: The RabbitMQ broker port where a single node is used. (port
  1323. # value)
  1324. # Minimum value: 0
  1325. # Maximum value: 65535
  1326. # This option is deprecated for removal.
  1327. # Its value may be silently ignored in the future.
  1328. # Reason: Replaced by [DEFAULT]/transport_url
  1329. #rabbit_port = 5672
  1330.  
  1331. # DEPRECATED: RabbitMQ HA cluster host:port pairs. (list value)
  1332. # This option is deprecated for removal.
  1333. # Its value may be silently ignored in the future.
  1334. # Reason: Replaced by [DEFAULT]/transport_url
  1335. #rabbit_hosts = $rabbit_host:$rabbit_port
  1336.  
  1337. # DEPRECATED: The RabbitMQ userid. (string value)
  1338. # This option is deprecated for removal.
  1339. # Its value may be silently ignored in the future.
  1340. # Reason: Replaced by [DEFAULT]/transport_url
  1341. #rabbit_userid = guest
  1342.  
  1343. # DEPRECATED: The RabbitMQ password. (string value)
  1344. # This option is deprecated for removal.
  1345. # Its value may be silently ignored in the future.
  1346. # Reason: Replaced by [DEFAULT]/transport_url
  1347. #rabbit_password = guest
  1348.  
  1349. # The RabbitMQ login method. (string value)
  1350. # Possible values:
  1351. # PLAIN - <No description provided>
  1352. # AMQPLAIN - <No description provided>
  1353. # RABBIT-CR-DEMO - <No description provided>
  1354. #rabbit_login_method = AMQPLAIN
  1355.  
  1356. # DEPRECATED: The RabbitMQ virtual host. (string value)
  1357. # This option is deprecated for removal.
  1358. # Its value may be silently ignored in the future.
  1359. # Reason: Replaced by [DEFAULT]/transport_url
  1360. #rabbit_virtual_host = /
  1361.  
  1362. # How frequently to retry connecting with RabbitMQ. (integer value)
  1363. #rabbit_retry_interval = 1
  1364.  
  1365. # How long to backoff for between retries when connecting to RabbitMQ. (integer
  1366. # value)
  1367. #rabbit_retry_backoff = 2
  1368.  
  1369. # Maximum interval of RabbitMQ connection retries. Default is 30 seconds.
  1370. # (integer value)
  1371. #rabbit_interval_max = 30
  1372.  
  1373. # DEPRECATED: Maximum number of RabbitMQ connection retries. Default is 0
  1374. # (infinite retry count). (integer value)
  1375. # This option is deprecated for removal.
  1376. # Its value may be silently ignored in the future.
  1377. #rabbit_max_retries = 0
  1378.  
  1379. # Try to use HA queues in RabbitMQ (x-ha-policy: all). If you change this
  1380. # option, you must wipe the RabbitMQ database. In RabbitMQ 3.0, queue mirroring
  1381. # is no longer controlled by the x-ha-policy argument when declaring a queue.
  1382. # If you just want to make sure that all queues (except those with auto-
  1383. # generated names) are mirrored across all nodes, run: "rabbitmqctl set_policy
  1384. # HA '^(?!amq\.).*' '{"ha-mode": "all"}' " (boolean value)
  1385. #rabbit_ha_queues = false
  1386.  
  1387. # Positive integer representing duration in seconds for queue TTL (x-expires).
  1388. # Queues which are unused for the duration of the TTL are automatically
  1389. # deleted. The parameter affects only reply and fanout queues. (integer value)
  1390. # Minimum value: 1
  1391. #rabbit_transient_queues_ttl = 1800
  1392.  
  1393. # Specifies the number of messages to prefetch. Setting to zero allows
  1394. # unlimited messages. (integer value)
  1395. #rabbit_qos_prefetch_count = 0
  1396.  
  1397. # Number of seconds after which the Rabbit broker is considered down if
  1398. # heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL (integer
  1399. # value)
  1400. #heartbeat_timeout_threshold = 60
  1401.  
  1402. # How often times during the heartbeat_timeout_threshold we check the
  1403. # heartbeat. (integer value)
  1404. #heartbeat_rate = 2
  1405.  
  1406. # Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake (boolean value)
  1407. #fake_rabbit = false
  1408.  
  1409. # Maximum number of channels to allow (integer value)
  1410. #channel_max = <None>
  1411.  
  1412. # The maximum byte size for an AMQP frame (integer value)
  1413. #frame_max = <None>
  1414.  
  1415. # How often to send heartbeats for consumer's connections (integer value)
  1416. #heartbeat_interval = 3
  1417.  
  1418. # Arguments passed to ssl.wrap_socket (dict value)
  1419. #ssl_options = <None>
  1420.  
  1421. # Set socket timeout in seconds for connection's socket (floating point value)
  1422. #socket_timeout = 0.25
  1423.  
  1424. # Set TCP_USER_TIMEOUT in seconds for connection's socket (floating point
  1425. # value)
  1426. #tcp_user_timeout = 0.25
  1427.  
  1428. # Set delay for reconnection to some host which has connection error (floating
  1429. # point value)
  1430. #host_connection_reconnect_delay = 0.25
  1431.  
  1432. # Connection factory implementation (string value)
  1433. # Possible values:
  1434. # new - <No description provided>
  1435. # single - <No description provided>
  1436. # read_write - <No description provided>
  1437. #connection_factory = single
  1438.  
  1439. # Maximum number of connections to keep queued. (integer value)
  1440. #pool_max_size = 30
  1441.  
  1442. # Maximum number of connections to create above `pool_max_size`. (integer
  1443. # value)
  1444. #pool_max_overflow = 0
  1445.  
  1446. # Default number of seconds to wait for a connections to available (integer
  1447. # value)
  1448. #pool_timeout = 30
  1449.  
  1450. # Lifetime of a connection (since creation) in seconds or None for no
  1451. # recycling. Expired connections are closed on acquire. (integer value)
  1452. #pool_recycle = 600
  1453.  
  1454. # Threshold at which inactive (since release) connections are considered stale
  1455. # in seconds or None for no staleness. Stale connections are closed on acquire.
  1456. # (integer value)
  1457. #pool_stale = 60
  1458.  
  1459. # Default serialization mechanism for serializing/deserializing
  1460. # outgoing/incoming messages (string value)
  1461. # Possible values:
  1462. # json - <No description provided>
  1463. # msgpack - <No description provided>
  1464. #default_serializer_type = json
  1465.  
  1466. # Persist notification messages. (boolean value)
  1467. #notification_persistence = false
  1468.  
  1469. # Exchange name for sending notifications (string value)
  1470. #default_notification_exchange = ${control_exchange}_notification
  1471.  
  1472. # Max number of not acknowledged message which RabbitMQ can send to
  1473. # notification listener. (integer value)
  1474. #notification_listener_prefetch_count = 100
  1475.  
  1476. # Reconnecting retry count in case of connectivity problem during sending
  1477. # notification, -1 means infinite retry. (integer value)
  1478. #default_notification_retry_attempts = -1
  1479.  
  1480. # Reconnecting retry delay in case of connectivity problem during sending
  1481. # notification message (floating point value)
  1482. #notification_retry_delay = 0.25
  1483.  
  1484. # Time to live for rpc queues without consumers in seconds. (integer value)
  1485. #rpc_queue_expiration = 60
  1486.  
  1487. # Exchange name for sending RPC messages (string value)
  1488. #default_rpc_exchange = ${control_exchange}_rpc
  1489.  
  1490. # Exchange name for receiving RPC replies (string value)
  1491. #rpc_reply_exchange = ${control_exchange}_rpc_reply
  1492.  
  1493. # Max number of not acknowledged message which RabbitMQ can send to rpc
  1494. # listener. (integer value)
  1495. #rpc_listener_prefetch_count = 100
  1496.  
  1497. # Max number of not acknowledged message which RabbitMQ can send to rpc reply
  1498. # listener. (integer value)
  1499. #rpc_reply_listener_prefetch_count = 100
  1500.  
  1501. # Reconnecting retry count in case of connectivity problem during sending
  1502. # reply. -1 means infinite retry during rpc_timeout (integer value)
  1503. #rpc_reply_retry_attempts = -1
  1504.  
  1505. # Reconnecting retry delay in case of connectivity problem during sending
  1506. # reply. (floating point value)
  1507. #rpc_reply_retry_delay = 0.25
  1508.  
  1509. # Reconnecting retry count in case of connectivity problem during sending RPC
  1510. # message, -1 means infinite retry. If actual retry attempts in not 0 the rpc
  1511. # request could be processed more than one time (integer value)
  1512. #default_rpc_retry_attempts = -1
  1513.  
  1514. # Reconnecting retry delay in case of connectivity problem during sending RPC
  1515. # message (floating point value)
  1516. #rpc_retry_delay = 0.25
  1517.  
  1518.  
  1519. [oslo_messaging_zmq]
  1520.  
  1521. #
  1522. # From oslo.messaging
  1523. #
  1524.  
  1525. # ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
  1526. # The "host" option should point or resolve to this address. (string value)
  1527. #rpc_zmq_bind_address = *
  1528.  
  1529. # MatchMaker driver. (string value)
  1530. # Possible values:
  1531. # redis - <No description provided>
  1532. # sentinel - <No description provided>
  1533. # dummy - <No description provided>
  1534. #rpc_zmq_matchmaker = redis
  1535.  
  1536. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  1537. #rpc_zmq_contexts = 1
  1538.  
  1539. # Maximum number of ingress messages to locally buffer per topic. Default is
  1540. # unlimited. (integer value)
  1541. #rpc_zmq_topic_backlog = <None>
  1542.  
  1543. # Directory for holding IPC sockets. (string value)
  1544. #rpc_zmq_ipc_dir = /var/run/openstack
  1545.  
  1546. # Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
  1547. # "host" option, if running Nova. (string value)
  1548. #rpc_zmq_host = localhost
  1549.  
  1550. # Number of seconds to wait before all pending messages will be sent after
  1551. # closing a socket. The default value of -1 specifies an infinite linger
  1552. # period. The value of 0 specifies no linger period. Pending messages shall be
  1553. # discarded immediately when the socket is closed. Positive values specify an
  1554. # upper bound for the linger period. (integer value)
  1555. # Deprecated group/name - [DEFAULT]/rpc_cast_timeout
  1556. #zmq_linger = -1
  1557.  
  1558. # The default number of seconds that poll should wait. Poll raises timeout
  1559. # exception when timeout expired. (integer value)
  1560. #rpc_poll_timeout = 1
  1561.  
  1562. # Expiration timeout in seconds of a name service record about existing target
  1563. # ( < 0 means no timeout). (integer value)
  1564. #zmq_target_expire = 300
  1565.  
  1566. # Update period in seconds of a name service record about existing target.
  1567. # (integer value)
  1568. #zmq_target_update = 180
  1569.  
  1570. # Use PUB/SUB pattern for fanout methods. PUB/SUB always uses proxy. (boolean
  1571. # value)
  1572. #use_pub_sub = false
  1573.  
  1574. # Use ROUTER remote proxy. (boolean value)
  1575. #use_router_proxy = false
  1576.  
  1577. # This option makes direct connections dynamic or static. It makes sense only
  1578. # with use_router_proxy=False which means to use direct connections for direct
  1579. # message types (ignored otherwise). (boolean value)
  1580. #use_dynamic_connections = false
  1581.  
  1582. # How many additional connections to a host will be made for failover reasons.
  1583. # This option is actual only in dynamic connections mode. (integer value)
  1584. #zmq_failover_connections = 2
  1585.  
  1586. # Minimal port number for random ports range. (port value)
  1587. # Minimum value: 0
  1588. # Maximum value: 65535
  1589. #rpc_zmq_min_port = 49153
  1590.  
  1591. # Maximal port number for random ports range. (integer value)
  1592. # Minimum value: 1
  1593. # Maximum value: 65536
  1594. #rpc_zmq_max_port = 65536
  1595.  
  1596. # Number of retries to find free port number before fail with ZMQBindError.
  1597. # (integer value)
  1598. #rpc_zmq_bind_port_retries = 100
  1599.  
  1600. # Default serialization mechanism for serializing/deserializing
  1601. # outgoing/incoming messages (string value)
  1602. # Possible values:
  1603. # json - <No description provided>
  1604. # msgpack - <No description provided>
  1605. #rpc_zmq_serialization = json
  1606.  
  1607. # This option configures round-robin mode in zmq socket. True means not keeping
  1608. # a queue when server side disconnects. False means to keep queue and messages
  1609. # even if server is disconnected, when the server appears we send all
  1610. # accumulated messages to it. (boolean value)
  1611. #zmq_immediate = true
  1612.  
  1613. # Enable/disable TCP keepalive (KA) mechanism. The default value of -1 (or any
  1614. # other negative value) means to skip any overrides and leave it to OS default;
  1615. # 0 and 1 (or any other positive value) mean to disable and enable the option
  1616. # respectively. (integer value)
  1617. #zmq_tcp_keepalive = -1
  1618.  
  1619. # The duration between two keepalive transmissions in idle condition. The unit
  1620. # is platform dependent, for example, seconds in Linux, milliseconds in Windows
  1621. # etc. The default value of -1 (or any other negative value and 0) means to
  1622. # skip any overrides and leave it to OS default. (integer value)
  1623. #zmq_tcp_keepalive_idle = -1
  1624.  
  1625. # The number of retransmissions to be carried out before declaring that remote
  1626. # end is not available. The default value of -1 (or any other negative value
  1627. # and 0) means to skip any overrides and leave it to OS default. (integer
  1628. # value)
  1629. #zmq_tcp_keepalive_cnt = -1
  1630.  
  1631. # The duration between two successive keepalive retransmissions, if
  1632. # acknowledgement to the previous keepalive transmission is not received. The
  1633. # unit is platform dependent, for example, seconds in Linux, milliseconds in
  1634. # Windows etc. The default value of -1 (or any other negative value and 0)
  1635. # means to skip any overrides and leave it to OS default. (integer value)
  1636. #zmq_tcp_keepalive_intvl = -1
  1637.  
  1638. # Maximum number of (green) threads to work concurrently. (integer value)
  1639. #rpc_thread_pool_size = 100
  1640.  
  1641. # Expiration timeout in seconds of a sent/received message after which it is
  1642. # not tracked anymore by a client/server. (integer value)
  1643. #rpc_message_ttl = 300
  1644.  
  1645. # Wait for message acknowledgements from receivers. This mechanism works only
  1646. # via proxy without PUB/SUB. (boolean value)
  1647. #rpc_use_acks = false
  1648.  
  1649. # Number of seconds to wait for an ack from a cast/call. After each retry
  1650. # attempt this timeout is multiplied by some specified multiplier. (integer
  1651. # value)
  1652. #rpc_ack_timeout_base = 15
  1653.  
  1654. # Number to multiply base ack timeout by after each retry attempt. (integer
  1655. # value)
  1656. #rpc_ack_timeout_multiplier = 2
  1657.  
  1658. # Default number of message sending attempts in case of any problems occurred:
  1659. # positive value N means at most N retries, 0 means no retries, None or -1 (or
  1660. # any other negative values) mean to retry forever. This option is used only if
  1661. # acknowledgments are enabled. (integer value)
  1662. #rpc_retry_attempts = 3
  1663.  
  1664. # List of publisher hosts SubConsumer can subscribe on. This option has higher
  1665. # priority then the default publishers list taken from the matchmaker. (list
  1666. # value)
  1667. #subscribe_on =
  1668.  
  1669.  
  1670. [oslo_middleware]
  1671.  
  1672. #
  1673. # From oslo.middleware
  1674. #
  1675.  
  1676. # The maximum body size for each request, in bytes. (integer value)
  1677. # Deprecated group/name - [DEFAULT]/osapi_max_request_body_size
  1678. # Deprecated group/name - [DEFAULT]/max_request_body_size
  1679. #max_request_body_size = 114688
  1680.  
  1681. # DEPRECATED: The HTTP Header that will be used to determine what the original
  1682. # request protocol scheme was, even if it was hidden by a SSL termination
  1683. # proxy. (string value)
  1684. # This option is deprecated for removal.
  1685. # Its value may be silently ignored in the future.
  1686. #secure_proxy_ssl_header = X-Forwarded-Proto
  1687.  
  1688. # Whether the application is behind a proxy or not. This determines if the
  1689. # middleware should parse the headers or not. (boolean value)
  1690. #enable_proxy_headers_parsing = false
  1691.  
  1692.  
  1693. [oslo_policy]
  1694.  
  1695. #
  1696. # From oslo.policy
  1697. #
  1698.  
  1699. # This option controls whether or not to enforce scope when evaluating
  1700. # policies. If ``True``, the scope of the token used in the request is compared
  1701. # to the ``scope_types`` of the policy being enforced. If the scopes do not
  1702. # match, an ``InvalidScope`` exception will be raised. If ``False``, a message
  1703. # will be logged informing operators that policies are being invoked with
  1704. # mismatching scope. (boolean value)
  1705. #enforce_scope = false
  1706.  
  1707. # The file that defines policies. (string value)
  1708. policy_file = policy.json
  1709.  
  1710. # Default rule. Enforced when a requested rule is not found. (string value)
  1711. #policy_default_rule = default
  1712.  
  1713. # Directories where policy configuration files are stored. They can be relative
  1714. # to any directory in the search path defined by the config_dir option, or
  1715. # absolute paths. The file defined by policy_file must exist for these
  1716. # directories to be searched. Missing or empty directories are ignored. (multi
  1717. # valued)
  1718. #policy_dirs = policy.d
  1719.  
  1720. # Content Type to send and receive data for REST based policy check (string
  1721. # value)
  1722. # Possible values:
  1723. # application/x-www-form-urlencoded - <No description provided>
  1724. # application/json - <No description provided>
  1725. #remote_content_type = application/x-www-form-urlencoded
  1726.  
  1727. # server identity verification for REST based policy check (boolean value)
  1728. #remote_ssl_verify_server_crt = false
  1729.  
  1730. # Absolute path to ca cert file for REST based policy check (string value)
  1731. #remote_ssl_ca_crt_file = <None>
  1732.  
  1733. # Absolute path to client cert for REST based policy check (string value)
  1734. #remote_ssl_client_crt_file = <None>
  1735.  
  1736. # Absolute path client key file REST based policy check (string value)
  1737. #remote_ssl_client_key_file = <None>
  1738.  
  1739.  
  1740. [tacker]
  1741.  
  1742. #
  1743. # From tacker.vnfm.monitor
  1744. #
  1745.  
  1746. # Monitor driver to communicate with Hosting VNF/logical service instance
  1747. # tacker plugin will use (list value)
  1748. monitor_driver = ping,http_ping
  1749.  
  1750. # Alarm monitoring driver to communicate with Hosting VNF/logical service
  1751. # instance tacker plugin will use (list value)
  1752. #alarm_monitor_driver = ceilometer
  1753.  
  1754. # App monitoring driver to communicate with Hosting VNF/logical service
  1755. # instance tacker plugin will use (list value)
  1756. #app_monitor_driver = zabbix
  1757.  
  1758. #
  1759. # From tacker.vnfm.plugin
  1760. #
  1761.  
  1762. # MGMT driver to communicate with Hosting VNF/logical service instance tacker
  1763. # plugin will use (list value)
  1764. #mgmt_driver = noop,openwrt
  1765.  
  1766. # Time interval to wait for VM to boot (integer value)
  1767. #boot_wait = 30
  1768.  
  1769. # Hosting vnf drivers tacker plugin will use (list value)
  1770. #infra_driver = noop,openstack,kubernetes
  1771.  
  1772. # Hosting vnf drivers tacker plugin will use (list value)
  1773. #policy_action = autoscaling,respawn,log,log_and_kill
  1774.  
  1775.  
  1776. [vim_keys]
  1777.  
  1778. #
  1779. # From tacker.nfvo.drivers.vim.openstack_driver
  1780. #
  1781.  
  1782. # Dir.path to store fernet keys. (string value)
  1783. #openstack = /etc/tacker/vim/fernet_keys
  1784.  
  1785. # Use barbican to encrypt vim password if True, save vim credentials in local
  1786. # file system if False (boolean value)
  1787. #use_barbican = false
  1788.  
  1789.  
  1790. [vim_monitor]
  1791.  
  1792. #
  1793. # From tacker.nfvo.drivers.vim.openstack_driver
  1794. #
  1795.  
  1796. # number of ICMP packets to send (string value)
  1797. #count = 1
  1798.  
  1799. # number of seconds to wait for a response (string value)
  1800. #timeout = 1
  1801.  
  1802. # number of seconds to wait between packets (string value)
  1803. #interval = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement