Browse code

open stable/icehouse

stable icehouse devstack cut, with all repositories flipped over

Change-Id: Iab15290eebabecc1ccd04361652895b3eeb3b370

Sean Dague authored on 2014/04/17 21:54:11
Showing 3 changed files
... ...
@@ -2,3 +2,4 @@
2 2
 host=review.openstack.org
3 3
 port=29418
4 4
 project=openstack-dev/devstack.git
5
+defaultbranch=stable/icehouse
5 6
\ No newline at end of file
... ...
@@ -51,7 +51,7 @@ pass_fail $? 0 bash8
51 51
 
52 52
 echo "Ensuring we don't have crazy refs"
53 53
 
54
-REFS=`grep BRANCH stackrc | grep -v -- '-master'`
54
+REFS=`grep BRANCH stackrc | egrep -v -- '(-master|-stable/icehouse)'`
55 55
 rc=$?
56 56
 pass_fail $rc 1 crazy-refs
57 57
 if [[ $rc -eq 0 ]]; then
... ...
@@ -99,7 +99,7 @@ GIT_BASE=${GIT_BASE:-git://git.openstack.org}
99 99
 
100 100
 # metering service
101 101
 CEILOMETER_REPO=${CEILOMETER_REPO:-${GIT_BASE}/openstack/ceilometer.git}
102
-CEILOMETER_BRANCH=${CEILOMETER_BRANCH:-master}
102
+CEILOMETER_BRANCH=${CEILOMETER_BRANCH:-stable/icehouse}
103 103
 
104 104
 # ceilometer client library
105 105
 CEILOMETERCLIENT_REPO=${CEILOMETERCLIENT_REPO:-${GIT_BASE}/openstack/python-ceilometerclient.git}
... ...
@@ -107,7 +107,7 @@ CEILOMETERCLIENT_BRANCH=${CEILOMETERCLIENT_BRANCH:-master}
107 107
 
108 108
 # volume service
109 109
 CINDER_REPO=${CINDER_REPO:-${GIT_BASE}/openstack/cinder.git}
110
-CINDER_BRANCH=${CINDER_BRANCH:-master}
110
+CINDER_BRANCH=${CINDER_BRANCH:-stable/icehouse}
111 111
 
112 112
 # volume client
113 113
 CINDERCLIENT_REPO=${CINDERCLIENT_REPO:-${GIT_BASE}/openstack/python-cinderclient.git}
... ...
@@ -115,7 +115,7 @@ CINDERCLIENT_BRANCH=${CINDERCLIENT_BRANCH:-master}
115 115
 
116 116
 # image catalog service
117 117
 GLANCE_REPO=${GLANCE_REPO:-${GIT_BASE}/openstack/glance.git}
118
-GLANCE_BRANCH=${GLANCE_BRANCH:-master}
118
+GLANCE_BRANCH=${GLANCE_BRANCH:-stable/icehouse}
119 119
 
120 120
 # python glance client library
121 121
 GLANCECLIENT_REPO=${GLANCECLIENT_REPO:-${GIT_BASE}/openstack/python-glanceclient.git}
... ...
@@ -123,7 +123,7 @@ GLANCECLIENT_BRANCH=${GLANCECLIENT_BRANCH:-master}
123 123
 
124 124
 # heat service
125 125
 HEAT_REPO=${HEAT_REPO:-${GIT_BASE}/openstack/heat.git}
126
-HEAT_BRANCH=${HEAT_BRANCH:-master}
126
+HEAT_BRANCH=${HEAT_BRANCH:-stable/icehouse}
127 127
 
128 128
 # python heat client library
129 129
 HEATCLIENT_REPO=${HEATCLIENT_REPO:-${GIT_BASE}/openstack/python-heatclient.git}
... ...
@@ -131,11 +131,11 @@ HEATCLIENT_BRANCH=${HEATCLIENT_BRANCH:-master}
131 131
 
132 132
 # django powered web control panel for openstack
133 133
 HORIZON_REPO=${HORIZON_REPO:-${GIT_BASE}/openstack/horizon.git}
134
-HORIZON_BRANCH=${HORIZON_BRANCH:-master}
134
+HORIZON_BRANCH=${HORIZON_BRANCH:-stable/icehouse}
135 135
 
136 136
 # baremetal provisionint service
137 137
 IRONIC_REPO=${IRONIC_REPO:-${GIT_BASE}/openstack/ironic.git}
138
-IRONIC_BRANCH=${IRONIC_BRANCH:-master}
138
+IRONIC_BRANCH=${IRONIC_BRANCH:-stable/icehouse}
139 139
 
140 140
 # ironic client
141 141
 IRONICCLIENT_REPO=${IRONICCLIENT_REPO:-${GIT_BASE}/openstack/python-ironicclient.git}
... ...
@@ -143,7 +143,7 @@ IRONICCLIENT_BRANCH=${IRONICCLIENT_BRANCH:-master}
143 143
 
144 144
 # unified auth system (manages accounts/tokens)
145 145
 KEYSTONE_REPO=${KEYSTONE_REPO:-${GIT_BASE}/openstack/keystone.git}
146
-KEYSTONE_BRANCH=${KEYSTONE_BRANCH:-master}
146
+KEYSTONE_BRANCH=${KEYSTONE_BRANCH:-stable/icehouse}
147 147
 
148 148
 # python keystone client library to nova that horizon uses
149 149
 KEYSTONECLIENT_REPO=${KEYSTONECLIENT_REPO:-${GIT_BASE}/openstack/python-keystoneclient.git}
... ...
@@ -151,7 +151,7 @@ KEYSTONECLIENT_BRANCH=${KEYSTONECLIENT_BRANCH:-master}
151 151
 
152 152
 # compute service
153 153
 NOVA_REPO=${NOVA_REPO:-${GIT_BASE}/openstack/nova.git}
154
-NOVA_BRANCH=${NOVA_BRANCH:-master}
154
+NOVA_BRANCH=${NOVA_BRANCH:-stable/icehouse}
155 155
 
156 156
 # python client library to nova that horizon (and others) use
157 157
 NOVACLIENT_REPO=${NOVACLIENT_REPO:-${GIT_BASE}/openstack/python-novaclient.git}
... ...
@@ -199,7 +199,7 @@ PBR_BRANCH=${PBR_BRANCH:-master}
199 199
 
200 200
 # neutron service
201 201
 NEUTRON_REPO=${NEUTRON_REPO:-${GIT_BASE}/openstack/neutron.git}
202
-NEUTRON_BRANCH=${NEUTRON_BRANCH:-master}
202
+NEUTRON_BRANCH=${NEUTRON_BRANCH:-stable/icehouse}
203 203
 
204 204
 # neutron client
205 205
 NEUTRONCLIENT_REPO=${NEUTRONCLIENT_REPO:-${GIT_BASE}/openstack/python-neutronclient.git}
... ...
@@ -207,11 +207,11 @@ NEUTRONCLIENT_BRANCH=${NEUTRONCLIENT_BRANCH:-master}
207 207
 
208 208
 # consolidated openstack requirements
209 209
 REQUIREMENTS_REPO=${REQUIREMENTS_REPO:-${GIT_BASE}/openstack/requirements.git}
210
-REQUIREMENTS_BRANCH=${REQUIREMENTS_BRANCH:-master}
210
+REQUIREMENTS_BRANCH=${REQUIREMENTS_BRANCH:-stable/icehouse}
211 211
 
212 212
 # storage service
213 213
 SWIFT_REPO=${SWIFT_REPO:-${GIT_BASE}/openstack/swift.git}
214
-SWIFT_BRANCH=${SWIFT_BRANCH:-master}
214
+SWIFT_BRANCH=${SWIFT_BRANCH:-stable/icehouse}
215 215
 SWIFT3_REPO=${SWIFT3_REPO:-${GIT_BASE}/stackforge/swift3.git}
216 216
 SWIFT3_BRANCH=${SWIFT3_BRANCH:-master}
217 217
 
... ...
@@ -242,7 +242,7 @@ SPICE_BRANCH=${SPICE_BRANCH:-master}
242 242
 
243 243
 # trove service
244 244
 TROVE_REPO=${TROVE_REPO:-${GIT_BASE}/openstack/trove.git}
245
-TROVE_BRANCH=${TROVE_BRANCH:-master}
245
+TROVE_BRANCH=${TROVE_BRANCH:-stable/icehouse}
246 246
 
247 247
 # trove client library test
248 248
 TROVECLIENT_REPO=${TROVECLIENT_REPO:-${GIT_BASE}/openstack/python-troveclient.git}