~1chb1n/charms/trusty/nova-compute/next.normalize-makefile-test-deps

« back to all changes in this revision

Viewing changes to templates/havana/nova.conf

  • Committer: james.page at ubuntu
  • Date: 2015-03-31 15:01:48 UTC
  • mfrom: (116 nova-compute)
  • mto: This revision was merged to the branch mainline in revision 117.
  • Revision ID: james.page@ubuntu.com-20150331150148-fn3iawy9bqboe0d3
Rebase, resync

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
state_path=/var/lib/nova
14
14
lock_path=/var/lock/nova
15
15
force_dhcp_release=True
 
16
 
 
17
{% if arch == 'aarch64' -%}
 
18
libvirt_use_virtio_for_bridges=False
 
19
libvirt_disk_prefix=vd
 
20
{% else -%}
16
21
libvirt_use_virtio_for_bridges=True
 
22
{% endif -%}
 
23
 
17
24
verbose=True
18
25
use_syslog = {{ use_syslog }}
19
26
ec2_private_dns_show_ip=True
64
71
firewall_driver = nova.virt.firewall.NoopFirewallDriver
65
72
{% endif -%}
66
73
 
 
74
{% if neutron_plugin and neutron_plugin == 'Calico' -%}
 
75
security_group_api = neutron
 
76
firewall_driver = nova.virt.firewall.NoopFirewallDriver
 
77
{% endif -%}
 
78
 
67
79
{% if network_manager_config -%}
68
80
{% for key, value in network_manager_config.iteritems() -%}
69
81
{{ key }} = {{ value }}
76
88
network_manager = nova.network.manager.FlatDHCPManager
77
89
{% endif -%}
78
90
 
 
91
{% if network_device_mtu -%}
 
92
network_device_mtu = {{ network_device_mtu }}
 
93
{% endif -%}
 
94
 
79
95
{% if volume_service -%}
80
96
volume_api_class = nova.volume.cinder.API
81
97
{% endif -%}