tripleo-image-elements/elements/nova
Dan Prince ab5de1944f Switch Nova to the Cinder v2 API
As of commit bc516eb0178ec2ecee3c7f55f7400326bec8ec09 Nova
now defaults to the Cinder V2 API.

Once we land Ic20d8df1d7bb559f6a2fe76f35c2e419477604eb we
should once again be able to make use of the default Nova
setting in TripleO again.

Change-Id: I0e5499c0850c1bb9d72aaa68e2e4d5ba2fc56375
Closes-bug: #1391603
2014-11-25 12:36:24 -05:00
..
environment.d Wire in _EXTRA_INSTALL_OPTS... 2014-04-19 08:08:45 -04:00
install.d/nova-source-install Fix /etc/nova permissions 2014-08-05 16:48:37 -07:00
os-apply-config/etc/nova Switch Nova to the Cinder v2 API 2014-11-25 12:36:24 -05:00
os-refresh-config/configure.d add some missing “set -ue” declarations 2014-05-20 09:39:55 +02:00
pre-install.d Name disable-requiretty files uniquely 2014-06-04 10:12:13 -04:00
README.md Properly format markdown code blocks 2014-11-12 10:31:01 +09:00
element-deps Correct SELinux file contexts 2014-07-19 23:54:41 -07:00
source-repository-nova Use openstack git repos when possible 2013-11-15 10:48:11 +02:00

README.md

Install and configure Nova.

Configuration

nova:
  verbose: False
    - Print more verbose output (set logging level to INFO instead of default WARNING level).
  debug: False
    - Print debugging output (set logging level to DEBUG instead of default WARNING level).
  baremetal:
    pxe_deploy_timeout: "1200"
      - the duration in seconds for pxe deployment timeouts.
    virtual_power:
      type: "virsh"
        - what virtual power driver to use. "virsh" or "vbox"
  compute_libvirt_type: "qemu"
    - what libvirt compute type. Unset will use the nova default.
  image_cache_manager_interval:
    - Number of seconds to wait between runs of the image cache manager.
  resize_fs_using_block_device: BoolOpt
    - Attempt to resize the filesystem by accessing the image over a block device.
  resume_guests_state_on_host_boot: BoolOpt
    - Whether to start guests that were running before the host rebooted.
  running_deleted_instance_action:
    - Action to take if a running deleted instance is detected.
      Valid options are: 'noop', 'log', 'shutdown', or 'reap'.
      Set to 'noop' to take no action.
  virt_mkfs:
    - Name of the mkfs commands for ephemeral device.
      The format is <os_type>=<mkfs command>
      e.g. 'linux-ext4=mkfs -t ext4 -F -L %(fs_label)s %(target)s'
  compute_manager: "ironic.nova.compute.manager.ClusterComputeManager"
    - set to override the compute manager class used by Nova-Compute.
  scheduler_host_manager: "nova.scheduler.ironic_host_manager.IronicHostManager"
    - set to override the scheduler host manager used by Nova. If no
      scheduler_host_manager is configured it is automatically set to
      the deprecated Nova baremetal and/or the old in-tree Ironic
      compute driver for Nova.
  public_ip:
    - public IP address (if any) assigned to this node. Used for VNC proxy
      connections so this is typically only required on controller nodes.