mirror of
https://github.com/malarinv/iperf3-monitor.git
synced 2026-03-07 21:12:34 +00:00
Add core components for continuous cluster network validation: - Python exporter (`exporter/`) to run iperf3 tests and expose Prometheus metrics. - Helm chart (`charts/iperf3-monitor/`) for deploying the exporter as a Deployment and iperf3 server as a DaemonSet. - CI/CD workflow (`.github/workflows/release.yml`) for building/publishing images and charts on tag creation. - Initial documentation, license, and `.gitignore`.
40 lines
422 B
Plaintext
40 lines
422 B
Plaintext
```
|
|
# Byte-code files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
__pycache__/
|
|
|
|
# Distribution / build outputs
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
.tox/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Editor/IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
!Dockerfile
|
|
.dockerignore
|
|
|
|
# Helm
|
|
!charts/iperf3-monitor/.helmignore
|
|
charts/*.tgz # Ignore packaged chart files
|
|
``` |