Skip to content

Commit 4eb02d6

Browse files
authored
Merge pull request #88 from cisco-ie/etl-yang-latest
Add latest NX-OS, IOS XE, and IOS XR releases
2 parents eb14615 + 4a9ce64 commit 4eb02d6

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

etl/src/static.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,9 @@ def populate_os_releases(db):
257257
'16.9.3',
258258
'16.10.1',
259259
'16.11.1',
260-
'16.12.1'
260+
'16.12.1',
261+
'17.1.1',
262+
'17.2.1'
261263
]
262264
},
263265
'IOS XR': {
@@ -284,7 +286,9 @@ def populate_os_releases(db):
284286
'6.5.2',
285287
'6.5.3',
286288
'6.6.2',
287-
'7.0.1'
289+
'7.0.1',
290+
'7.0.2',
291+
'7.1.1'
288292
]
289293
},
290294
'NX-OS': {
@@ -305,7 +309,11 @@ def populate_os_releases(db):
305309
'9.2(2)',
306310
'9.2(3)',
307311
'9.2(4)',
308-
'9.3(1)'
312+
'9.3(1)',
313+
'9.3(2)',
314+
'9.3(3)',
315+
'9.3(4)',
316+
'9.3(5)'
309317
]
310318
}
311319
}

etl/src/yang/__init__.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@
4242
'9.2(2)': '9.2-2',
4343
'9.2(3)': '9.2-3',
4444
'9.2(4)': '9.2-4',
45-
'9.3(1)': '9.3-1'
45+
'9.3(1)': '9.3-1',
46+
'9.3(2)': '9.3-2',
47+
'9.3(3)': '9.3-3',
48+
'9.3(4)': '9.3-4',
49+
'9.3(5)': '9.3-5'
4650
},
4751
'xe': {
4852
'16.3.1': '1631',
@@ -57,7 +61,9 @@
5761
'16.9.3': '1693',
5862
'16.10.1': '16101',
5963
'16.11.1': '16111',
60-
'16.12.1': '16121'
64+
'16.12.1': '16121',
65+
'17.1.1': '1711',
66+
'17.2.1': '1721'
6167
},
6268
'xr': {
6369
# '5.3.0': '530',
@@ -81,7 +87,9 @@
8187
'6.5.2': '652',
8288
'6.5.3': '653',
8389
'6.6.2': '662',
84-
'7.0.1': '701'
90+
'7.0.1': '701',
91+
'7.0.2': '702',
92+
'7.1.1': '711'
8593
}
8694
}
8795

0 commit comments

Comments
 (0)