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

Proposed by Corey Bryant
Status: Merged
Merged at revision: 127
Proposed branch: lp:~corey.bryant/charms/trusty/glance/amulet-git-fixups
Merge into: lp:~openstack-charmers-archive/charms/trusty/glance/next
Diff against target: 38 lines (+13/-10)
1 file modified
tests/basic_deployment.py (+13/-10)
To merge this branch: bzr merge lp:~corey.bryant/charms/trusty/glance/amulet-git-fixups
Reviewer Review Type Date Requested Status
OpenStack Charmers Pending
Review via email: mp+264554@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

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

charm_lint_check #6114 glance-next for corey.bryant mp264554
    LINT OK: passed

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

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

charm_unit_test #5746 glance-next for corey.bryant mp264554
    UNIT OK: passed

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

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

charm_amulet_test #5103 glance-next for corey.bryant mp264554
    AMULET OK: passed

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

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'tests/basic_deployment.py'
--- tests/basic_deployment.py 2015-07-09 18:16:48 +0000
+++ tests/basic_deployment.py 2015-07-13 16:07:48 +0000
@@ -66,21 +66,24 @@
66 """Configure all of the services."""66 """Configure all of the services."""
67 glance_config = {}67 glance_config = {}
68 if self.git:68 if self.git:
69 release = self._get_openstack_release_string()69 amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
70 reqs_branch = 'stable/' + release70
71 reqs_repo = 'git://github.com/openstack/requirements'
72 glance_repo = 'git://github.com/openstack/glance'
71 if self._get_openstack_release() == self.trusty_icehouse:73 if self._get_openstack_release() == self.trusty_icehouse:
72 glance_branch = release + '-eol'74 reqs_repo = 'git://github.com/coreycb/requirements'
73 else:75 glance_repo = 'git://github.com/coreycb/glance'
74 glance_branch = 'stable/' + release76
75 amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')77 branch = 'stable/' + self._get_openstack_release_string()
78
76 openstack_origin_git = {79 openstack_origin_git = {
77 'repositories': [80 'repositories': [
78 {'name': 'requirements',81 {'name': 'requirements',
79 'repository': 'git://github.com/openstack/requirements',82 'repository': reqs_repo,
80 'branch': reqs_branch},83 'branch': branch},
81 {'name': 'glance',84 {'name': 'glance',
82 'repository': 'git://github.com/openstack/glance',85 'repository': glance_repo,
83 'branch': glance_branch},86 'branch': branch},
84 ],87 ],
85 'directory': '/mnt/openstack-git',88 'directory': '/mnt/openstack-git',
86 'http_proxy': amulet_http_proxy,89 'http_proxy': amulet_http_proxy,

Subscribers

People subscribed via source and target branches