Merge lp:~ivoks/charms/precise/nova-cloud-controller/ncc-neutronclient into lp:~charmers/charms/precise/nova-cloud-controller/trunk

Proposed by Ante Karamatić
Status: Merged
Merged at revision: 59
Proposed branch: lp:~ivoks/charms/precise/nova-cloud-controller/ncc-neutronclient
Merge into: lp:~charmers/charms/precise/nova-cloud-controller/trunk
Diff against target: 28 lines (+16/-0)
1 file modified
templates/folsom/nova.conf (+16/-0)
To merge this branch: bzr merge lp:~ivoks/charms/precise/nova-cloud-controller/ncc-neutronclient
Reviewer Review Type Date Requested Status
charmers Pending
Review via email: mp+204424@code.launchpad.net

Description of the change

Add support for quantum/neutron for novaclient.

To post a comment you must log in.
64. By Ante Karamatić

Readd removed line in a template

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'templates/folsom/nova.conf'
2--- templates/folsom/nova.conf 2013-10-28 19:03:14 +0000
3+++ templates/folsom/nova.conf 2014-02-03 07:26:58 +0000
4@@ -73,8 +73,24 @@
5
6 {% if network_manager and network_manager == 'quantum' -%}
7 network_api_class = nova.network.quantumv2.api.API
8+{% if auth_host -%}
9+quantum_url = {{ service_protocol }}://{{ service_host }}:{{ service_port }}
10+quantum_auth_strategy = keystone
11+quantum_admin_tenant_name = {{ admin_tenant_name }}
12+quantum_admin_username = {{ admin_user }}
13+quantum_admin_password = {{ admin_password }}
14+quantum_admin_auth_url = {{ auth_protocol }}://{{ auth_host }}:{{ auth_port }}/v2.0
15+{% endif -%}
16 {% elif network_manager and network_manager == 'neutron' -%}
17 network_api_class = nova.network.neutronv2.api.API
18+{% if auth_host -%}
19+neutron_url = {{ service_protocol }}://{{ service_host }}:{{ service_port }}
20+neutron_auth_strategy = keystone
21+neutron_admin_tenant_name = {{ admin_tenant_name }}
22+neutron_admin_username = {{ admin_user }}
23+neutron_admin_password = {{ admin_password }}
24+neutron_admin_auth_url = {{ auth_protocol }}://{{ auth_host }}:{{ auth_port }}/v2.0
25+{% endif -%}
26 {% else -%}
27 network_manager = nova.network.manager.FlatDHCPManager
28 {% endif -%}

Subscribers

People subscribed via source and target branches