mirror of
https://github.com/malarinv/iperf3-monitor.git
synced 2026-03-07 21:12:34 +00:00
- Helm Chart:
- Added `app.kubernetes.io/component: exporter` to the exporter pod
labels via `values.yaml` to match the service selector.
- Updated image tag defaulting in `exporter-controller.yaml` to use
`Chart.appVersion` directly (e.g., "0.1.0" instead of "v0.1.0").
- Build Process (`.github/workflows/release.yml`):
- Configured `docker/metadata-action` to ensure image tags are generated
without a 'v' prefix (e.g., "0.1.0" from Git tag "v0.1.0").
This aligns the published image tags with the Helm chart's
updated image tag references.
- Repository:
- Added `rendered-manifests.yaml` and `rendered-manifests-updated.yaml`
to `.gitignore`.
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
44 lines
515 B
Plaintext
44 lines
515 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/iperf3-monitor/charts/
|
|
|
|
# Rendered Kubernetes manifests (for local testing)
|
|
rendered-manifests.yaml
|
|
rendered-manifests-updated.yaml
|