Merge lp:~tvansteenburgh/charms/trusty/nova-cloud-controller/fix-tests into lp:~openstack-charmers-archive/charms/trusty/nova-cloud-controller/trunk

Proposed by Tim Van Steenburgh
Status: Merged
Merged at revision: 82
Proposed branch: lp:~tvansteenburgh/charms/trusty/nova-cloud-controller/fix-tests
Merge into: lp:~openstack-charmers-archive/charms/trusty/nova-cloud-controller/trunk
Diff against target: 82 lines (+17/-2)
2 files modified
Makefile (+10/-2)
config.yaml (+7/-0)
To merge this branch: bzr merge lp:~tvansteenburgh/charms/trusty/nova-cloud-controller/fix-tests
Reviewer Review Type Date Requested Status
OpenStack Charmers Pending
Review via email: mp+234031@code.launchpad.net

Description of the change

Fix tests, proof errors.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Makefile'
--- Makefile 2014-08-13 15:53:46 +0000
+++ Makefile 2014-09-09 23:46:45 +0000
@@ -5,9 +5,9 @@
5 @flake8 --exclude hooks/charmhelpers hooks unit_tests5 @flake8 --exclude hooks/charmhelpers hooks unit_tests
6 @charm proof6 @charm proof
77
8test:8test: .venv
9 @echo Starting tests...9 @echo Starting tests...
10 @$(PYTHON) /usr/bin/nosetests --nologcapture --with-coverage unit_tests10 .venv/bin/nosetests --nologcapture --with-coverage unit_tests
1111
12bin/charm_helpers_sync.py:12bin/charm_helpers_sync.py:
13 @mkdir -p bin13 @mkdir -p bin
@@ -20,3 +20,11 @@
20publish: lint test20publish: lint test
21 bzr push lp:charms/nova-cloud-controller21 bzr push lp:charms/nova-cloud-controller
22 bzr push lp:charms/trusty/nova-cloud-controller22 bzr push lp:charms/trusty/nova-cloud-controller
23
24.venv:
25 sudo apt-get install python-virtualenv python-apt
26 virtualenv .venv --system-site-packages
27 .venv/bin/pip install -I nose mock pyyaml
28
29clean:
30 rm -rf .venv
2331
=== modified file 'config.yaml'
--- config.yaml 2014-07-29 15:05:01 +0000
+++ config.yaml 2014-09-09 23:46:45 +0000
@@ -97,6 +97,7 @@
97 # HA configuration settings97 # HA configuration settings
98 vip:98 vip:
99 type: string99 type: string
100 default:
100 description: "Virtual IP to use to front API services in ha configuration"101 description: "Virtual IP to use to front API services in ha configuration"
101 vip_iface:102 vip_iface:
102 type: string103 type: string
@@ -120,6 +121,7 @@
120 HA Cluster nodes.121 HA Cluster nodes.
121 ssl_cert:122 ssl_cert:
122 type: string123 type: string
124 default:
123 description: |125 description: |
124 SSL certificate to install and use for API ports. Setting this value126 SSL certificate to install and use for API ports. Setting this value
125 and ssl_key will enable reverse proxying, point Nova's entry in the127 and ssl_key will enable reverse proxying, point Nova's entry in the
@@ -127,9 +129,11 @@
127 issued by Keystone (if it is configured to do so).129 issued by Keystone (if it is configured to do so).
128 ssl_key:130 ssl_key:
129 type: string131 type: string
132 default:
130 description: SSL key to use with certificate specified as ssl_cert.133 description: SSL key to use with certificate specified as ssl_cert.
131 ssl_ca:134 ssl_ca:
132 type: string135 type: string
136 default:
133 description: |137 description: |
134 SSL CA to use with the certificate and key provided - this is only138 SSL CA to use with the certificate and key provided - this is only
135 required if you are providing a privately signed ssl_cert and ssl_key.139 required if you are providing a privately signed ssl_cert and ssl_key.
@@ -141,6 +145,7 @@
141 # Neutron NVP and VMware NSX plugin configuration145 # Neutron NVP and VMware NSX plugin configuration
142 nvp-controllers:146 nvp-controllers:
143 type: string147 type: string
148 default:
144 description: Space delimited addresses of NVP/NSX controllers149 description: Space delimited addresses of NVP/NSX controllers
145 nvp-username:150 nvp-username:
146 type: string151 type: string
@@ -156,12 +161,14 @@
156 description: Name of the NVP cluster configuration to create (grizzly only)161 description: Name of the NVP cluster configuration to create (grizzly only)
157 nvp-tz-uuid:162 nvp-tz-uuid:
158 type: string163 type: string
164 default:
159 description: |165 description: |
160 This is uuid of the default NVP/NSX Transport zone that will be used for166 This is uuid of the default NVP/NSX Transport zone that will be used for
161 creating tunneled isolated Quantum networks. It needs to be created167 creating tunneled isolated Quantum networks. It needs to be created
162 in NVP before starting Quantum with the nvp plugin.168 in NVP before starting Quantum with the nvp plugin.
163 nvp-l3-uuid:169 nvp-l3-uuid:
164 type: string170 type: string
171 default:
165 description: |172 description: |
166 This is uuid of the default NVP/NSX L3 Gateway Service.173 This is uuid of the default NVP/NSX L3 Gateway Service.
167 # end of NVP/NSX configuration174 # end of NVP/NSX configuration

Subscribers

People subscribed via source and target branches