Last active
December 20, 2017 18:22
-
-
Save misterdorm/0be9cc9ec075f6c730bce1ad03287d39 to your computer and use it in GitHub Desktop.
kolla configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEFAULT] | |
debug = True | |
log_file = /var/log/kolla/keystone/keystone.log | |
use_stderr = True | |
[oslo_middleware] | |
enable_proxy_headers_parsing = True | |
[database] | |
connection = mysql+pymysql://keystone:[email protected]:3306/keystone | |
max_retries = -1 | |
[token] | |
revoke_by_id = False | |
provider = uuid | |
[cache] | |
backend = oslo_cache.memcache_pool | |
enabled = True | |
memcache_servers = 172.16.5.79:11211 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEFAULT] | |
debug = True | |
log_dir = /var/log/kolla/neutron | |
use_stderr = False | |
bind_host = 172.16.5.79 | |
bind_port = 9696 | |
api_paste_config = /usr/share/neutron/api-paste.ini | |
endpoint_type = internalURL | |
api_workers = 2 | |
metadata_workers = 2 | |
rpc_workers = 2 | |
rpc_state_report_workers = 2 | |
metadata_proxy_socket = /var/lib/neutron/kolla/metadata_proxy | |
interface_driver = linuxbridge | |
allow_overlapping_ips = true | |
core_plugin = ml2 | |
service_plugins = router | |
transport_url = rabbit://openstack:[email protected]:5672 | |
[nova] | |
auth_url = http://172.16.5.79:35357 | |
auth_type = password | |
project_domain_id = default | |
user_domain_id = default | |
region_name = RegionOne | |
project_name = service | |
username = nova | |
password = xxxx | |
endpoint_type = internal | |
[oslo_concurrency] | |
lock_path = /var/lib/neutron/tmp | |
[agent] | |
root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf | |
[database] | |
connection = mysql+pymysql://neutron:[email protected]:3306/neutron | |
max_retries = -1 | |
[keystone_authtoken] | |
auth_uri = http://172.16.5.79:5000 | |
auth_url = http://172.16.5.79:35357 | |
auth_type = password | |
project_domain_id = default | |
user_domain_id = default | |
project_name = service | |
username = neutron | |
password = xxxx | |
memcache_security_strategy = ENCRYPT | |
memcache_secret_key = xxxx | |
memcached_servers = 172.16.5.79:11211 | |
[oslo_messaging_notifications] | |
driver = noop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEFAULT] | |
debug = True | |
log_dir = /var/log/kolla/nova | |
state_path = /var/lib/nova | |
osapi_compute_listen = 172.16.5.79 | |
osapi_compute_listen_port = 8774 | |
osapi_compute_workers = 2 | |
metadata_workers = 2 | |
metadata_listen = 172.16.5.79 | |
metadata_listen_port = 8775 | |
firewall_driver = nova.virt.firewall.NoopFirewallDriver | |
allow_resize_to_same_host = true | |
compute_driver = libvirt.LibvirtDriver | |
my_ip = 172.16.5.79 | |
transport_url = rabbit://openstack:[email protected]:5672 | |
[api] | |
use_forwarded_for = true | |
[conductor] | |
workers = 2 | |
[vnc] | |
novncproxy_host = 172.16.5.79 | |
novncproxy_port = 6080 | |
vncserver_listen = 172.16.5.79 | |
vncserver_proxyclient_address = 172.16.5.79 | |
novncproxy_base_url = http://172.16.5.79:6080/vnc_auto.html | |
[oslo_concurrency] | |
lock_path = /var/lib/nova/tmp | |
[glance] | |
api_servers = http://172.16.5.79:9292 | |
num_retries = 1 | |
debug = True | |
[neutron] | |
url = http://172.16.5.79:9696 | |
metadata_proxy_shared_secret = xxxx | |
service_metadata_proxy = true | |
auth_url = http://172.16.5.79:35357 | |
auth_type = password | |
project_domain_name = Default | |
user_domain_id = default | |
project_name = service | |
username = neutron | |
password = xxxx | |
[database] | |
connection = mysql+pymysql://nova:[email protected]:3306/nova | |
max_pool_size = 50 | |
max_overflow = 1000 | |
max_retries = -1 | |
[api_database] | |
connection = mysql+pymysql://nova_api:[email protected]:3306/nova_api | |
max_retries = -1 | |
[cache] | |
backend = oslo_cache.memcache_pool | |
enabled = True | |
memcache_servers = 172.16.5.79:11211 | |
[keystone_authtoken] | |
auth_uri = http://172.16.5.79:5000 | |
auth_url = http://172.16.5.79:35357 | |
auth_type = password | |
project_domain_id = default | |
user_domain_id = default | |
project_name = service | |
username = nova | |
password = xxxx | |
memcache_security_strategy = ENCRYPT | |
memcache_secret_key = xxxx | |
memcached_servers = 172.16.5.79:11211 | |
[libvirt] | |
connection_uri = qemu+tcp://172.16.5.79/system | |
virt_type = kvm | |
[upgrade_levels] | |
compute = auto | |
[oslo_messaging_notifications] | |
driver = noop | |
[privsep_entrypoint] | |
helper_command = sudo nova-rootwrap /etc/nova/rootwrap.conf privsep-helper --config-file /etc/nova/nova.conf | |
[guestfs] | |
debug = True | |
[wsgi] | |
api_paste_config = /etc/nova/api-paste.ini | |
[scheduler] | |
max_attempts = 10 | |
discover_hosts_in_cells_interval = 60 | |
[placement] | |
auth_type = password | |
auth_url = http://172.16.5.79:35357 | |
username = placement | |
password = xxxx | |
user_domain_name = Default | |
project_name = service | |
project_domain_name = Default | |
os_region_name = RegionOne | |
os_interface = internal | |
[notifications] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEFAULT] | |
debug = True | |
log_dir = /var/log/kolla/nova | |
state_path = /var/lib/nova | |
osapi_compute_listen = 172.16.5.79 | |
osapi_compute_listen_port = 8774 | |
osapi_compute_workers = 2 | |
metadata_workers = 2 | |
metadata_listen = 172.16.5.79 | |
metadata_listen_port = 8775 | |
firewall_driver = nova.virt.firewall.NoopFirewallDriver | |
allow_resize_to_same_host = true | |
compute_driver = libvirt.LibvirtDriver | |
my_ip = 172.16.5.79 | |
transport_url = rabbit://openstack:[email protected]:5672 | |
[api] | |
use_forwarded_for = true | |
[conductor] | |
workers = 2 | |
[vnc] | |
novncproxy_host = 172.16.5.79 | |
novncproxy_port = 6080 | |
vncserver_listen = 172.16.5.79 | |
vncserver_proxyclient_address = 172.16.5.79 | |
novncproxy_base_url = http://172.16.5.79:6080/vnc_auto.html | |
[oslo_concurrency] | |
lock_path = /var/lib/nova/tmp | |
[glance] | |
api_servers = http://172.16.5.79:9292 | |
num_retries = 1 | |
debug = True | |
[neutron] | |
url = http://172.16.5.79:9696 | |
metadata_proxy_shared_secret = xxxx | |
service_metadata_proxy = true | |
auth_url = http://172.16.5.79:35357 | |
auth_type = password | |
project_domain_name = Default | |
user_domain_id = default | |
project_name = service | |
username = neutron | |
password = xxxx | |
[database] | |
connection = mysql+pymysql://nova:[email protected]:3306/nova | |
max_pool_size = 50 | |
max_overflow = 1000 | |
max_retries = -1 | |
[api_database] | |
connection = mysql+pymysql://nova_api:[email protected]:3306/nova_api | |
max_retries = -1 | |
[cache] | |
backend = oslo_cache.memcache_pool | |
enabled = True | |
memcache_servers = 172.16.5.79:11211 | |
[keystone_authtoken] | |
auth_uri = http://172.16.5.79:5000 | |
auth_url = http://172.16.5.79:35357 | |
auth_type = password | |
project_domain_id = default | |
user_domain_id = default | |
project_name = service | |
username = nova | |
password = xxxx | |
memcache_security_strategy = ENCRYPT | |
memcache_secret_key = xxxx | |
memcached_servers = 172.16.5.79:11211 | |
[libvirt] | |
connection_uri = qemu+tcp://172.16.5.79/system | |
virt_type = qemu | |
cpu_mode = none | |
[upgrade_levels] | |
compute = auto | |
[oslo_messaging_notifications] | |
driver = noop | |
[privsep_entrypoint] | |
helper_command = sudo nova-rootwrap /etc/nova/rootwrap.conf privsep-helper --config-file /etc/nova/nova.conf | |
[guestfs] | |
debug = True | |
[wsgi] | |
api_paste_config = /etc/nova/api-paste.ini | |
[scheduler] | |
max_attempts = 10 | |
discover_hosts_in_cells_interval = 60 | |
[placement] | |
auth_type = password | |
auth_url = http://172.16.5.79:35357 | |
username = placement | |
password = xxxx | |
user_domain_name = Default | |
project_name = service | |
project_domain_name = Default | |
os_region_name = RegionOne | |
os_interface = internal | |
[notifications] | |
[serial_console] | |
enabled = False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment