Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Location of flagfile for dhcpbridge
- --dhcpbridge_flagfile=/etc/nova/nova.conf
- # Location of nova-dhcpbridge
- --dhcpbridge=/usr/bin/nova-dhcpbridge
- # Log output to a per-service log file in named directory
- --logdir=/var/log/nova
- # Top-level directory for maintaining nova's state
- --state_path=/var/lib/nova
- # Directory to use for lock files
- --lock_path=/var/lock/nova
- # The strategy to use for auth. Supports noauth, keystone, and deprecated.
- --auth_strategy=keystone
- # Default driver to use for the scheduler
- --scheduler_driver=nova.scheduler.simple.SimpleScheduler
- # Hostname or IP to use when accessing the s3 API. Same host as the Cloud Controller.
- --s3_host=192.168.122.4
- # Where is nova-api running ?
- --metadata_host=192.168.122.5
- # Wich ip to source nat with for outgoing vm packets ?
- --routing_source_ip=192.168.122.5
- # Port used when accessing the s3 api
- --s3_port=3333
- # Hostname or IP of the EC2 API server. Same host as the Cloud Controller.
- --ec2_host=192.168.122.4
- # Return the IP address as private dns hostname in describe instances
- --ec2_private_dns_show_ip=false
- # RabbitMQ hostname or IP
- --rabbit_host=192.168.122.3
- # RabbitMQ userid
- --rabbit_userid=nova
- # RabbitMQ password
- --rabbit_password=N0vA
- # A list of the glance api servers available to nova ([hostname|ip]:port)
- --glance_api_servers=192.168.122.3:9292
- # The service to use for retrieving and searching images.
- --image_service=nova.image.glance.GlanceImageService
- # Hostname or IP of node running nova-volumes. Use this IP for ISCSI target IP.
- --iscsi_ip_address=192.168.122.4
- # The SQLAlchemy connection string used to connect to the database
- --sql_connection=mysql://nova:[email protected]/nova
- # URL to get token from ec2 request.
- --keystone_ec2_url=http://192.168.122.3:5000/v2.0//ec2tokens
- # File name for the paste.deploy config for nova-api
- --api_paste_config=/etc/nova/api-paste.ini
- # Use virtio for bridge interfaces
- --libvirt_use_virtio_for_bridges=true
- # Whether to restart guests when the host reboots
- --start_guests_on_host_boot=false
- # Whether to start guests that were running before the host rebooted
- --resume_guests_state_on_host_boot=false
- # Network specific settings
- # Full class name for the Manager for network
- --network_manager=nova.network.manager.FlatDHCPManager
- # Interface for public IP addresses
- --public_interface=eth0
- # FlatDhcp will bridge into this interface if set
- --flat_interface=eth1
- # Bridge for simple network instances
- --flat_network_bridge=br100
- # Fixed IP address block handed out to Virtual Machines.
- --fixed_range=10.0.0.0/8
- # Floating IP range. IE Elastic IP's
- # --floating_range=192.168.122.128/25
- # Number of addresses in each private subnet. (IE /24 = 125=256)
- --network_size=125
- # Whether to attempt to inject network setup into guest
- --flat_injected=False
- # If True, send a dhcp release on instance termination
- --force_dhcp_release=true
- # iscsi target user-land tool to use
- --iscsi_helper=tgtadm
- # Virtualization api connection type : libvirt, xenapi, or fake
- --connection_type=libvirt
- # Command prefix to use for running commands as root
- --root_helper=sudo nova-rootwrap
- # Print Debug output in logs.
- # --verbose
- # Driver to use for scheduling compute calls
- # TODO: what is the difference between compute_scheduler_driver and scheduler_driver
- # --compute_scheduler_driver=nova.scheduler.simple.SimpleScheduler
- # Auto assign floating (elastic/public) ip addresses to instances by default
- --auto_assign_floating_ip
Advertisement
Add Comment
Please, Sign In to add comment