Updates controller base to load handler via stevedore Updates setup.cfg with entry point Updates octavia.conf for api_handler default example Updates config.py for api_handler Updates requirements.txt for stevedore Change-Id: I67e3da376fad1d48cec7f56f990c4b13ac7f4b83
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
[DEFAULT]
|
|
# Print more verbose output (set logging level to INFO instead of default WARNING level).
|
|
# verbose = False
|
|
# Print debugging output (set logging level to DEBUG instead of default WARNING level).
|
|
# debug = False
|
|
# bind_host = 0.0.0.0
|
|
# bind_port = 9876
|
|
# api_handler = simulated_handler
|
|
|
|
[database]
|
|
# This line MUST be changed to actually run the plugin.
|
|
# Example:
|
|
# connection = mysql+pymysql://root:pass@127.0.0.1:3306/octavia
|
|
# Replace 127.0.0.1 above with the IP address of the database used by the
|
|
# main octavia server. (Leave it as is if the database runs on this host.)
|
|
|
|
# connection = mysql+pymysql://
|
|
|
|
# NOTE: In deployment the [database] section and its connection attribute may
|
|
# be set in the corresponding core plugin '.ini' file. However, it is suggested
|
|
# to put the [database] section and its connection attribute in this
|
|
# configuration file.
|
|
|
|
[keystone_authtoken]
|
|
# auth_uri = https://localhost:5000/v3
|
|
# admin_user = octavia
|
|
# admin_password = password
|
|
# admin_tenant_name = service
|
|
|
|
# If using Keystone v3
|
|
# admin_user_domain = default
|
|
# admin_project_domain = default
|
|
|
|
[certificates]
|
|
# cert_generator_class = octavia.certificates.generator.LocalCertGenerator
|
|
# cert_manager_class = octavia.certificates.manager.LocalCertManager
|
|
|
|
# For local certificate signing (development only):
|
|
# ca_certificate = /etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
# ca_private_key = /etc/ssl/private/ssl-cert-snakeoil.key
|
|
# ca_private_key_passphrase =
|
|
# signing_digest = sha256
|
|
# storage_path = /var/lib/octavia/certificates/
|
|
|
|
[networking]
|
|
# Network to communicate with amphora
|
|
# lb_network_name =
|