~chris.macnaughton/openstack-mojo-specs/add-pike

« back to all changes in this revision

Viewing changes to helper/utils/os_versions.py

  • Committer: Chris MacNaughton
  • Date: 2017-11-06 11:16:29 UTC
  • Revision ID: chris.macnaughton@canonical.com-20171106111629-w0551hhm35ec0vyp
let us know about pike

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
        ['2.5.0', '2.6.0', '2.7.0']),
61
61
    ('newton',
62
62
        ['2.8.0', '2.9.0']),
 
63
    ('ocata',
 
64
        ['2.11.0', '2.12.1']),
 
65
    ('pike',
 
66
        ['2.14.0', '2.15.0']),
63
67
])
64
68
 
65
69
# >= Liberty version->codename mapping
69
73
        ('13', 'mitaka'),
70
74
        ('14', 'newton'),
71
75
        ('15', 'ocata'),
 
76
        ('16', 'pike'),
72
77
    ]),
73
78
    'neutron-common': OrderedDict([
74
79
        ('7', 'liberty'),
75
80
        ('8', 'mitaka'),
76
81
        ('9', 'newton'),
77
82
        ('10', 'ocata'),
 
83
        ('11', 'pike'),
78
84
    ]),
79
85
    'cinder-common': OrderedDict([
80
86
        ('7', 'liberty'),
81
87
        ('8', 'mitaka'),
82
88
        ('9', 'newton'),
83
89
        ('10', 'ocata'),
 
90
        ('11', 'pike'),
84
91
    ]),
85
92
    'keystone': OrderedDict([
86
93
        ('8', 'liberty'),
87
94
        ('9', 'mitaka'),
88
95
        ('10', 'newton'),
89
96
        ('11', 'ocata'),
 
97
        ('12', 'pike'),
90
98
    ]),
91
99
    'horizon-common': OrderedDict([
92
100
        ('8', 'liberty'),
93
101
        ('9', 'mitaka'),
94
102
        ('10', 'newton'),
95
103
        ('11', 'ocata'),
 
104
        ('12', 'pike'),
96
105
    ]),
97
106
    'ceilometer-common': OrderedDict([
98
107
        ('5', 'liberty'),
99
108
        ('6', 'mitaka'),
100
109
        ('7', 'newton'),
101
110
        ('8', 'ocata'),
 
111
        ('9', 'pike'),
102
112
    ]),
103
113
    'heat-common': OrderedDict([
104
114
        ('5', 'liberty'),
105
115
        ('6', 'mitaka'),
106
116
        ('7', 'newton'),
107
117
        ('8', 'ocata'),
 
118
        ('9', 'pike'),
108
119
    ]),
109
120
    'glance-common': OrderedDict([
110
121
        ('11', 'liberty'),
111
122
        ('12', 'mitaka'),
112
123
        ('13', 'newton'),
113
124
        ('14', 'ocata'),
 
125
        ('15', 'pike'),
114
126
    ]),
115
127
    'openstack-dashboard': OrderedDict([
116
128
        ('8', 'liberty'),
117
129
        ('9', 'mitaka'),
118
130
        ('10', 'newton'),
119
131
        ('11', 'ocata'),
 
132
        ('12', 'pike'),
120
133
    ]),
121
134
}