Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
2bd45ed
initial SSR4xx devicemaps
haberkornsam Oct 1, 2024
ccd2cde
add ssr4x0 part numbers
haberkornsam Oct 2, 2024
69b35b9
update schema
haberkornsam Oct 8, 2024
57c72a2
fix generate_templates
haberkornsam Oct 8, 2024
3134af0
Autogenerated commit for templates
Oct 8, 2024
3ec3e75
reorder generate templates to avoid changing everything
haberkornsam Oct 8, 2024
3e4d6f7
further update generate_templates
haberkornsam Oct 8, 2024
40ec76c
Autogenerated commit for templates
Oct 8, 2024
b950a7f
add parent intf to devicemaps
haberkornsam Nov 1, 2024
70e3a75
Autogenerated commit for templates
Nov 1, 2024
377130a
update generate_templates
haberkornsam Nov 1, 2024
2b297c3
update generate_templates
haberkornsam Nov 1, 2024
7330653
Autogenerated commit for templates
Nov 1, 2024
9c895d8
change switch --> switch_parent
haberkornsam Nov 1, 2024
e9b9275
add linux name and device type to 400 and 440 models
haberkornsam Dec 12, 2024
47fec85
fix generate template alias resolution
haberkornsam Dec 13, 2024
c12ac65
add tool to convert to mist device model format
haberkornsam Dec 13, 2024
cd19d20
change eth0 to esw0
haberkornsam Dec 31, 2024
7a207ff
Added explicitly 400/440 skus with part nums
BenMatase Feb 25, 2025
968d0a5
Fixed invalid json
BenMatase Feb 25, 2025
b3f2152
Autogenerated commit for templates
Feb 25, 2025
2e44902
change descriptions to say `ethernet ports`
haberkornsam Feb 27, 2025
c4d8001
Autogenerated commit for templates
Feb 27, 2025
5d3a9ab
update lte target interfaces
haberkornsam May 6, 2025
6ad1e3a
update workflow version
haberkornsam May 6, 2025
14fbd20
Autogenerated commit for templates
May 6, 2025
9fb710b
ge-1-0 to ha-0-0
haberkornsam May 7, 2025
35a8ce7
Autogenerated commit for templates
May 7, 2025
44623f2
update schema for ha-0-0
haberkornsam May 7, 2025
0bcde13
Added switch address
BenMatase Jul 1, 2025
e51e779
Missed paren in schema
BenMatase Jul 1, 2025
986f12e
Added macIndex for ha port
BenMatase Jul 17, 2025
3ceaa43
Autogenerated commit for templates
Jul 17, 2025
675b3dc
Add unused pci address to switch parent
BenMatase Jul 17, 2025
ea41d2f
Add platform capabilities for leopard models
tcarroll25 Aug 4, 2025
190f334
Address review comments
tcarroll25 Aug 4, 2025
bdf1c17
Merge pull request #36 from 128technology/tylerc/I95-61952-add-platfo…
tcarroll25 Aug 5, 2025
3f49596
fix template generation
haberkornsam Oct 24, 2025
2d42770
Autogenerated commit for templates
Oct 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Python 3",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:1-3.8-buster"
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.9"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ permissions:
jobs:
build:

runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.6
uses: actions/setup-python@v3
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.6"
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/template_gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ permissions: write-all

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.6
uses: actions/setup-python@v3
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.6"
python-version: "3.9"
- name: setup git config
run: |
git config user.name "GitHub Actions Bot"
Expand Down
Loading