Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- nova.conf:
- ==========
- [DEFAULT]
- # LOGS/STATE
- verbose=True
- logdir=/var/log/nova
- state_path=/var/lib/nova
- lock_path=/var/lock/nova
- rootwrap_config=/etc/nova/rootwrap.conf
- # AUTHENTICATION
- auth_strategy=keystone
- [keystone_authtoken]
- auth_host = 127.0.0.1
- auth_port = 35357
- auth_protocol = http
- admin_tenant_name = service
- admin_user = nova
- admin_password = nova
- signing_dirname = /tmp/keystone-signing-nova
- # SCHEDULER
- compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
- # Cinder - VOLUMES
- #volume_driver=nova.volume.driver.ISCSIDriver
- #volume_group=nova-volumes
- #volume_name_template=volume-%08x
- #iscsi_helper=tgtadm
- volume_api_class=nova.volume.cinder.API
- # DATABASE
- sql_connection=mysql://nova:[email protected]/nova
- # COMPUTE
- libvirt_type=kvm
- compute_driver=libvirt.LibvirtDriver
- instance_name_template=instance-%08x
- api_paste_config=/etc/nova/api-paste.ini
- # COMPUTE/APIS: if you have separate configs for separate services
- # this flag is required for both nova-api and nova-compute
- allow_resize_to_same_host=True
- # APIS
- enabled_apis=ec2,osapi_compute,metadata
- osapi_compute_extension=nova.api.openstack.compute.contrib.standard_extensions
- ec2_dmz_host=10.176.20.158
- s3_host=10.176.20.158
- # RABBITMQ
- rabbit_host=10.176.20.158
- # GLANCE
- image_service=nova.image.glance.GlanceImageService
- glance_api_servers=10.176.20.158:9292
- # NETWORK
- network_manager=nova.network.manager.FlatDHCPManager
- force_dhcp_release=True
- dhcpbridge_flagfile=/etc/nova/nova.conf
- firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
- # Change my_ip to match each host
- my_ip=10.176.20.158
- public_interface=eth0
- flat_interface=eth1
- flat_network_bridge=br100
- fixed_range=192.168.100.0/24
- # NOVNC CONSOLE
- novncproxy_base_url=http://10.176.20.158:6080/vnc_auto.html
- # Change vncserver_proxyclient_address and vncserver_listen to match each compute host
- vncserver_proxyclient_address=10.176.20.158
- vncserver_listen=10.176.20.158
- # Following config kept from initial conf file installed by nova
- dhcpbridge=/usr/bin/nova-dhcpbridge
- libvirt_use_virtio_for_bridges=True
- connection_type=libvirt
- root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
- ec2_private_dns_show_ip=True
- volumes_path=/var/lib/nova/volumes
- cinder.conf:
- ============
- [DEFAULT]
- rootwrap_config = /etc/cinder/rootwrap.conf
- sql_connection = mysql://cinder:[email protected]/cinder
- api_paste_confg = /etc/cinder/api-paste.ini
- iscsi_helper = tgtadm
- volume_name_template = volume-%s
- volume_group = cinder-volumes
- verbose = True
- auth_strategy = keystone
- state_path = /var/lib/cinder
- volumes_dir = /var/lib/cinder/volumes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement