Ubuntu Pastebin

Paste from thedac at Mon, 26 Oct 2015 23:11:15 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/python

from collections import OrderedDict

OPENSTACK_CODENAMES = OrderedDict([
    ('2011.2', 'diablo'),
    ('2012.1', 'essex'),
    ('2012.2', 'folsom'),
    ('2013.1', 'grizzly'),
    ('2013.2', 'havana'),
    ('2014.1', 'icehouse'),
    ('2014.2', 'juno'),
    ('2015.1', 'kilo'),
    ('2015.2', 'liberty'),
])



PACKAGE_CODENAMES = {
    'nova-common': OrderedDict([
        ('12.0.0', 'liberty'),
    ]),
    'neutron-common': OrderedDict([
        ('7.0.0', 'liberty'),
    ]),
    'cinder-common': OrderedDict([
        ('7.0.0', 'liberty'),
    ]),
    'keystone': OrderedDict([
        ('8.0.0', 'liberty'),
    ]),
    'horizon-common': OrderedDict([
        ('8.0.0', 'liberty'),
    ]),
    'ceilometer-common': OrderedDict([
        ('5.0.0', 'liberty'),
    ]),
    'heat-common': OrderedDict([
        ('5.0.0', 'liberty'),
    ]),
    'glance-common': OrderedDict([
        ('11.0.0', 'liberty'),
    ]),
    'openstack-dashboard': OrderedDict([
        ('8.0.0', 'liberty'),
    ]),
}




# For individual package versions
print PACKAGE_CODENAMES['nova-common']['12.0.0']

# For OpenStack release versions
print OPENSTACK_CODENAMES['2015.2']
Download as text