Merge lp:~corey.bryant/charms/trusty/cinder/amulet-git-fixups into lp:~openstack-charmers-archive/charms/trusty/cinder/next

Proposed by Corey Bryant
Status: Merged
Merged at revision: 105
Proposed branch: lp:~corey.bryant/charms/trusty/cinder/amulet-git-fixups
Merge into: lp:~openstack-charmers-archive/charms/trusty/cinder/next
Diff against target: 43 lines (+16/-11)
1 file modified
tests/basic_deployment.py (+16/-11)
To merge this branch: bzr merge lp:~corey.bryant/charms/trusty/cinder/amulet-git-fixups
Reviewer Review Type Date Requested Status
OpenStack Charmers Pending
Review via email: mp+264553@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Corey Bryant (corey.bryant) wrote :

Amulet deploy from source updates:
  * Use modified icehouse branches due to requirements issues
  * Use /tmp/openstack-git instead of /mnt/openstack-git to prevent conflict with /dev/vdb

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_lint_check #6112 cinder-next for corey.bryant mp264553
    LINT OK: passed

Build: http://10.245.162.77:8080/job/charm_lint_check/6112/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_unit_test #5744 cinder-next for corey.bryant mp264553
    UNIT OK: passed

Build: http://10.245.162.77:8080/job/charm_unit_test/5744/

111. By Corey Bryant

More amulet deploy from source branch fixups.

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_lint_check #6113 cinder-next for corey.bryant mp264553
    LINT OK: passed

Build: http://10.245.162.77:8080/job/charm_lint_check/6113/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_unit_test #5745 cinder-next for corey.bryant mp264553
    UNIT OK: passed

Build: http://10.245.162.77:8080/job/charm_unit_test/5745/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_amulet_test #5101 cinder-next for corey.bryant mp264553
    AMULET OK: passed

Build: http://10.245.162.77:8080/job/charm_amulet_test/5101/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_amulet_test #5102 cinder-next for corey.bryant mp264553
    AMULET OK: passed

Build: http://10.245.162.77:8080/job/charm_amulet_test/5102/

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'tests/basic_deployment.py'
2--- tests/basic_deployment.py 2015-07-09 18:16:48 +0000
3+++ tests/basic_deployment.py 2015-07-13 16:07:43 +0000
4@@ -70,23 +70,28 @@
5 'glance-api-version': '2',
6 'overwrite': 'true'}
7 if self.git:
8- release = self._get_openstack_release_string()
9- reqs_branch = 'stable/' + release
10+ amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
11+
12+ reqs_repo = 'git://github.com/openstack/requirements'
13+ cinder_repo = 'git://github.com/openstack/cinder'
14 if self._get_openstack_release() == self.trusty_icehouse:
15- cinder_branch = release + '-eol'
16- else:
17- cinder_branch = 'stable/' + release
18- amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
19+ reqs_repo = 'git://github.com/coreycb/requirements'
20+ cinder_repo = 'git://github.com/coreycb/cinder'
21+
22+ branch = 'stable/' + self._get_openstack_release_string()
23+
24 openstack_origin_git = {
25 'repositories': [
26 {'name': 'requirements',
27- 'repository': 'git://github.com/openstack/requirements',
28- 'branch': reqs_branch},
29+ 'repository': reqs_repo,
30+ 'branch': branch},
31 {'name': 'cinder',
32- 'repository': 'git://github.com/openstack/cinder',
33- 'branch': cinder_branch},
34+ 'repository': cinder_repo,
35+ 'branch': branch},
36 ],
37- 'directory': '/mnt/openstack-git',
38+ # Most tests use /mnt/openstack-git but cinder's using /dev/vdb
39+ # to store block devices so leave /mnt alone.
40+ 'directory': '/tmp/openstack-git',
41 'http_proxy': amulet_http_proxy,
42 'https_proxy': amulet_http_proxy,
43 }

Subscribers

People subscribed via source and target branches