gitextract_2ocvabri/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── deployments/ │ ├── docker/ │ │ ├── deployment.sh │ │ ├── readme.md │ │ └── versions.yaml │ ├── k8s/ │ │ ├── bases/ │ │ │ ├── namespace/ │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── otg-controller/ │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── pod.yaml │ │ │ │ └── service.yaml │ │ │ └── otg-traffic-port/ │ │ │ ├── kustomization.yaml │ │ │ ├── pod.yaml │ │ │ └── service.yaml │ │ ├── components/ │ │ │ └── images/ │ │ │ └── kustomization.yaml │ │ ├── kind.yaml │ │ ├── network-emulation/ │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── ipfwd.go │ │ │ ├── kind.yaml │ │ │ ├── links.yaml │ │ │ ├── namespace.yaml │ │ │ ├── pods.yaml │ │ │ ├── readme.md │ │ │ └── services.yaml │ │ ├── overlays/ │ │ │ ├── one-traffic-port-eth0/ │ │ │ │ ├── config-map.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── port1/ │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── pod-patch.yaml │ │ │ │ └── service-patch.yaml │ │ │ └── two-traffic-ports-eth0/ │ │ │ ├── config-map.yaml │ │ │ ├── gen-test-config.sh │ │ │ ├── init-container.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── port1/ │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── pod-patch.yaml │ │ │ │ └── service-patch.yaml │ │ │ └── port2/ │ │ │ ├── kustomization.yaml │ │ │ ├── pod-patch.yaml │ │ │ └── service-patch.yaml │ │ └── readme.md │ ├── raw-one-arm.yml │ ├── raw-three-arm-mesh.yml │ └── raw-two-arm.yml ├── docs/ │ ├── CNAME │ ├── architecture.md │ ├── contribute.md │ ├── deployments-containerlab.md │ ├── deployments-docker-compose.md │ ├── deployments-kne.md │ ├── deployments.md │ ├── developer/ │ │ ├── hello-snappi.md │ │ ├── introduction.md │ │ ├── snappi-constructs.md │ │ └── snappi-install.md │ ├── eula.md │ ├── faq.md │ ├── features.md │ ├── index.md │ ├── integrated-environments.md │ ├── licensing.md │ ├── limitations.md │ ├── news.md │ ├── prerequisites.md │ ├── quick-start/ │ │ ├── deployment.md │ │ ├── introduction.md │ │ └── sample-test.md │ ├── reference/ │ │ ├── capabilities.md │ │ ├── licensing.md │ │ └── resource-requirements.md │ ├── releases.md │ ├── res/ │ │ ├── hw-server.drawio │ │ └── system_with_UHD400T.drawio │ ├── resources.md │ ├── roadmap.md │ ├── sample-scripts.md │ ├── stylesheets/ │ │ └── extra.css │ ├── support.md │ ├── tests-chassis-app.md │ ├── tests-ixia-c.md │ ├── tests-uhd400.md │ ├── troubleshooting.md │ ├── usecases.md │ └── user-guide-introduction.md ├── license ├── mkdocs.md ├── mkdocs.yml ├── notes.md ├── readme.md └── requirements.txt