Guest User

Untitled

a guest
Aug 1st, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. # Location of flagfile for dhcpbridge
  2. --dhcpbridge_flagfile=/etc/nova/nova.conf
  3.  
  4. # Location of nova-dhcpbridge
  5. --dhcpbridge=/usr/bin/nova-dhcpbridge
  6.  
  7. # Log output to a per-service log file in named directory
  8. --logdir=/var/log/nova
  9.  
  10. # Top-level directory for maintaining nova's state
  11. --state_path=/var/lib/nova
  12.  
  13. # Directory to use for lock files
  14. --lock_path=/var/lock/nova
  15.  
  16. # The strategy to use for auth. Supports noauth, keystone, and deprecated.
  17. --auth_strategy=keystone
  18.  
  19. # Default driver to use for the scheduler
  20. --scheduler_driver=nova.scheduler.simple.SimpleScheduler
  21.  
  22. # Hostname or IP to use when accessing the s3 API. Same host as the Cloud Controller.
  23. --s3_host=192.168.122.4
  24.  
  25. # Where is nova-api running ?
  26. --metadata_host=192.168.122.5
  27.  
  28. # Wich ip to source nat with for outgoing vm packets ?
  29. --routing_source_ip=192.168.122.5
  30.  
  31. # Port used when accessing the s3 api
  32. --s3_port=3333
  33.  
  34. # Hostname or IP of the EC2 API server. Same host as the Cloud Controller.
  35. --ec2_host=192.168.122.4
  36.  
  37. # Return the IP address as private dns hostname in describe instances
  38. --ec2_private_dns_show_ip=false
  39.  
  40. # RabbitMQ hostname or IP
  41. --rabbit_host=192.168.122.3
  42.  
  43. # RabbitMQ userid
  44. --rabbit_userid=nova
  45.  
  46. # RabbitMQ password
  47. --rabbit_password=N0vA
  48.  
  49. # A list of the glance api servers available to nova ([hostname|ip]:port)
  50. --glance_api_servers=192.168.122.3:9292
  51.  
  52. # The service to use for retrieving and searching images.
  53. --image_service=nova.image.glance.GlanceImageService
  54.  
  55. # Hostname or IP of node running nova-volumes. Use this IP for ISCSI target IP.
  56. --iscsi_ip_address=192.168.122.4
  57.  
  58. # The SQLAlchemy connection string used to connect to the database
  59. --sql_connection=mysql://nova:[email protected]/nova
  60.  
  61. # URL to get token from ec2 request.
  62. --keystone_ec2_url=http://192.168.122.3:5000/v2.0//ec2tokens
  63.  
  64. # File name for the paste.deploy config for nova-api
  65. --api_paste_config=/etc/nova/api-paste.ini
  66.  
  67. # Use virtio for bridge interfaces
  68. --libvirt_use_virtio_for_bridges=true
  69.  
  70. # Whether to restart guests when the host reboots
  71. --start_guests_on_host_boot=false
  72.  
  73. # Whether to start guests that were running before the host rebooted
  74. --resume_guests_state_on_host_boot=false
  75.  
  76. # Network specific settings
  77. # Full class name for the Manager for network
  78. --network_manager=nova.network.manager.FlatDHCPManager
  79.  
  80. # Interface for public IP addresses
  81. --public_interface=eth0
  82.  
  83. # FlatDhcp will bridge into this interface if set
  84. --flat_interface=eth1
  85.  
  86. # Bridge for simple network instances
  87. --flat_network_bridge=br100
  88.  
  89. # Fixed IP address block handed out to Virtual Machines.
  90. --fixed_range=10.0.0.0/8
  91.  
  92. # Floating IP range. IE Elastic IP's
  93. # --floating_range=192.168.122.128/25
  94.  
  95. # Number of addresses in each private subnet. (IE /24 = 125=256)
  96. --network_size=125
  97.  
  98. # Whether to attempt to inject network setup into guest
  99. --flat_injected=False
  100.  
  101. # If True, send a dhcp release on instance termination
  102. --force_dhcp_release=true
  103.  
  104. # iscsi target user-land tool to use
  105. --iscsi_helper=tgtadm
  106.  
  107. # Virtualization api connection type : libvirt, xenapi, or fake
  108. --connection_type=libvirt
  109.  
  110. # Command prefix to use for running commands as root
  111. --root_helper=sudo nova-rootwrap
  112.  
  113. # Print Debug output in logs.
  114. # --verbose
  115.  
  116. # Driver to use for scheduling compute calls
  117. # TODO: what is the difference between compute_scheduler_driver and scheduler_driver
  118. # --compute_scheduler_driver=nova.scheduler.simple.SimpleScheduler
  119.  
  120. # Auto assign floating (elastic/public) ip addresses to instances by default
  121. --auto_assign_floating_ip
Advertisement
Add Comment
Please, Sign In to add comment