Reference for Flags in nova.conf
@@ -1378,7 +1627,29 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
default: 'http://127.0.0.1:8000' |
IP address plus port value; Location of the ajax console proxy and port |
-
+
+ --allowed_roles |
+ default: 'cloudadmin,itsec,sysadmin,netadmin,developer' |
+ Comma separated list: List of allowed roles for a project (or tenant). |
+
+
+ --auth_driver |
+ default:'nova.auth.dbdriver.DbDriver' |
+
+ String value; Name of the driver for authentication
+
+
+ nova.auth.dbdriver.DbDriver - Default setting, uses
+ credentials stored in zip file, one per project.
+
+
+ nova.auth.ldapdriver.FakeLdapDriver - create a replacement for
+ this driver supporting other backends by creating another class
+ that exposes the same public methods.
+
+
+ |
+
--auth_token_ttl |
default: '3600' |
@@ -1401,6 +1672,12 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
Password key; The secret access key that pairs with the AWS ID for
connecting to AWS if necessary |
+
+ --ca_file |
+ default: 'cacert.pem') |
+ File name; File name of root CA |
+
+
--cnt_vpn_clients |
default: '0' |
@@ -1409,16 +1686,40 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
--compute_manager |
default: 'nova.compute.manager.ComputeManager' |
- String value; Manager for Compute which handles remote procedure calls
- relating to creating instances |
+ String value; Manager for Compute which handles remote procedure calls relating to creating instances |
--create_unique_mac_address_attempts |
- default: 'nova.compute.manager.ComputeManager' |
- String value; Manager for Compute which handles remote procedure calls
- relating to creating instances |
+ default: '5' |
+ String value; Number of attempts to create unique mac
+ address |
-
+
+ --credential_cert_file |
+ default: 'cert.pem' |
+ Filename; Filename of certificate in credentials zip |
+
+
+ --credential_key_file |
+ default: 'pk.pem' |
+ Filename; Filename of private key in credentials zip |
+
+
+ --credential_rc_file |
+ default: '%src' |
+ File name; Filename of rc in credentials zip, %src will be replaced
+ by name of the region (nova by default). |
+
+
+ --credential_vpn_file |
+ default: 'nova-vpn.conf' |
+ File name; Filename of certificate in credentials zip |
+
+
+ --crl_file |
+ default: 'crl.pem') |
+ File name; File name of Certificate Revocation List |
+
--compute_topic |
default: 'compute' |
@@ -1514,6 +1815,12 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
Deprecated - HTTP URL; Location to interface nova-api. Example:
http://184.106.239.134:8773/services/Cloud |
+
+ --global_roles |
+ default: 'cloudadmin,itsec' |
+ Comma separated list; Roles that apply to all projects (or tenants) |
+
+
--flat_injected |
default: 'false' |
@@ -1641,6 +1948,11 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
default: 'instance-%08x' |
Template string to be used to generate instance names. |
+
+ --keys_path |
+ default: '$state_path/keys') |
+ Directory; Where Nova keeps the keys |
+
--libvirt_type |
default: kvm |
@@ -1651,6 +1963,21 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
default: none |
Directory path: Writeable path to store lock files. |
+
+ --lockout_attempts |
+ default: 5 |
+ Integer value: Allows this number of failed EC2 authorizations before lockout. |
+
+
+ --lockout_minutes |
+ default: 15 |
+ Integer value: Number of minutes to lockout if triggered. |
+
+
+ --lockout_window |
+ default: 15 |
+ Integer value: Number of minutes for lockout window. |
+
--logfile |
default: none |
@@ -1932,6 +2259,11 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
default: '/usr/lib/pymodules/python2.6/nova/../' |
Top-level directory for maintaining Nova's state |
+
+ --superuser_roles |
+ default: 'cloudadmin' |
+ Comma separate list; Roles that ignore authorization checking completely |
+
--use_deprecated_auth |
default: 'false' |
Set to 1 or true to turn on; Determines whether to use the deprecated nova auth system or Keystone as the auth system |
@@ -1962,8 +2294,13 @@ Migration of i-00000001 initiated. Check its progress using euca-describe-instan
AMI (Amazon Machine Image) for cloudpipe VPN server |
- --vpn_key_suffix |
+ --vpn_client_template |
default: '-vpn' |
+ String value; Template for creating users vpn file. |
+
+
+ --vpn_key_suffix |
+ default: '/root/nova/nova/nova/cloudpipe/client.ovpn.template' |
This is the interface that VlanManager uses to bind bridges and VLANs to. |
diff --git a/doc/src/docbkx/openstack-compute-admin/interfaces.xml b/doc/src/docbkx/openstack-compute-admin/interfaces.xml
index 0440af5f39..32117f198a 100644
--- a/doc/src/docbkx/openstack-compute-admin/interfaces.xml
+++ b/doc/src/docbkx/openstack-compute-admin/interfaces.xml
@@ -63,7 +63,7 @@ cd src
Next, get the openstack-dashboard project, which provides all the look and feel for the OpenStack Dashboard.
-git clone https://github.com/4P/openstack-dashboard
+git clone https://github.com/4P/horizon
You should now have a directory called openstack-dashboard, which contains the OpenStack Dashboard application.