mirror of
https://github.com/malarinv/iperf3-monitor.git
synced 2026-03-07 21:12:34 +00:00
Compare commits
20 Commits
fix-helm-l
...
109d8a0fab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
109d8a0fab | ||
|
|
812b8ce2a7 | ||
|
|
ad652029aa | ||
|
|
d8cebb7495 | ||
|
|
a3cf2ca10b | ||
|
|
2509f4a599 | ||
|
|
58cb25a845 | ||
|
|
a38cb9e075 | ||
|
|
1351171424 | ||
|
|
6fb6aa66d2 | ||
| a2d57908f6 | |||
|
|
4298031a2d | ||
| e6d1a8fb91 | |||
|
|
a9f2a49549 | ||
| 7f0784d382 | |||
| 050fbcbf3c | |||
| e22d2ff71d | |||
| 1487901337 | |||
| fec4cf64b9 | |||
| f6c26c02b1 |
57
.github/workflows/ci.yaml
vendored
Normal file
57
.github/workflows/ci.yaml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: ["main"] # Or your main development branch
|
||||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
jobs:
|
||||
validate-chart:
|
||||
name: Validate Helm Chart
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v3
|
||||
with:
|
||||
version: v3.10.0
|
||||
|
||||
- name: Helm Lint
|
||||
run: helm lint ./charts/iperf3-monitor
|
||||
|
||||
build:
|
||||
name: Build Docker Image
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Extract metadata (tags, labels) for Docker
|
||||
id: meta
|
||||
uses: docker/metadata-action@v4
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
|
||||
- name: Build Docker image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: ./exporter
|
||||
push: false # Do not push on PRs
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
test:
|
||||
name: Run Tests
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Replace this step with your actual test command(s)
|
||||
- name: Placeholder Test Step
|
||||
run: echo "No tests configured yet. Add your test commands here."
|
||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -82,8 +82,8 @@ jobs:
|
||||
- name: Set Chart Version from Tag
|
||||
run: |
|
||||
VERSION=$(echo "${{ github.ref_name }}" | sed 's/^v//')
|
||||
yq e -i '.version = strenv(VERSION)' ./charts/iperf3-monitor/Chart.yaml
|
||||
yq e -i '.appVersion = strenv(VERSION)' ./charts/iperf3-monitor/Chart.yaml
|
||||
VERSION=$VERSION yq e -i '.version = strenv(VERSION)' ./charts/iperf3-monitor/Chart.yaml
|
||||
VERSION=$VERSION yq e -i '.appVersion = strenv(VERSION)' ./charts/iperf3-monitor/Chart.yaml
|
||||
cat ./charts/iperf3-monitor/Chart.yaml # Optional: print updated Chart.yaml
|
||||
|
||||
- name: Publish Helm chart
|
||||
|
||||
10
README.md
10
README.md
@@ -37,7 +37,7 @@ This separation of concerns ensures scalability, resilience, and aligns with Kub
|
||||
1. Add the Helm chart repository (replace with your actual repo URL once published):
|
||||
|
||||
```/dev/null/helm-install.sh#L1-1
|
||||
helm repo add iperf3-monitor https://your-github-org.github.io/iperf3-monitor/
|
||||
helm repo add iperf3-monitor https://malarinv.github.io/iperf3-monitor/
|
||||
```
|
||||
|
||||
2. Update your Helm repositories:
|
||||
@@ -78,7 +78,7 @@ exporter:
|
||||
# -- Configuration for the exporter container image.
|
||||
image:
|
||||
# -- The container image repository for the exporter.
|
||||
repository: ghcr.io/my-org/iperf3-prometheus-exporter # Replace with your repo URL
|
||||
repository: ghcr.io/malarinv/iperf3-monitor
|
||||
# -- The container image tag for the exporter. If not set, the chart's appVersion is used.
|
||||
tag: ""
|
||||
# -- The image pull policy for the exporter container.
|
||||
@@ -430,8 +430,4 @@ The project includes a GitHub Actions workflow (`.github/workflows/release.yml`)
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the terms defined in the `LICENSE` file.
|
||||
|
||||
```iperf3-monitor/LICENSE
|
||||
This project is currently unlicensed. Please see the project's documentation or repository for licensing information when it becomes available.
|
||||
```
|
||||
This project is licensed under the GNU Affero General Public License v3. See the `LICENSE` file for details.
|
||||
|
||||
@@ -12,12 +12,12 @@ keywords:
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
home: https://github.com/malarinv/iperf3-monitor # Replace with your repo URL
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor # Replace with your repo URL
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
maintainers:
|
||||
- name: Malar Invention # Replace with your name
|
||||
email: malarkannan.invention@gmail.com # Replace with your email
|
||||
- name: Malar Invention
|
||||
email: malarkannan.invention@gmail.com
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png # Optional icon URL
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
|
||||
@@ -41,4 +41,4 @@ spec:
|
||||
{{- with .Values.server.resources }}
|
||||
resources:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
@@ -12,7 +12,7 @@ exporter:
|
||||
# -- Configuration for the exporter container image.
|
||||
image:
|
||||
# -- The container image repository for the exporter.
|
||||
repository: ghcr.io/malarinv/iperf3-prometheus-exporter # Replace with your repo URL
|
||||
repository: ghcr.io/malarinv/iperf3-monitor
|
||||
# -- The container image tag for the exporter. If not set, the chart's appVersion is used.
|
||||
tag: ""
|
||||
# -- The image pull policy for the exporter container.
|
||||
|
||||
14
devbox.json
Normal file
14
devbox.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
|
||||
"packages": [],
|
||||
"shell": {
|
||||
"init_hook": [
|
||||
"echo 'Welcome to devbox!' > /dev/null"
|
||||
],
|
||||
"scripts": {
|
||||
"test": [
|
||||
"echo \"Error: no test specified\" && exit 1"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
4
devbox.lock
Normal file
4
devbox.lock
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"lockfile_version": "1",
|
||||
"packages": {}
|
||||
}
|
||||
402
index.yaml
Normal file
402
index.yaml
Normal file
@@ -0,0 +1,402 @@
|
||||
apiVersion: v1
|
||||
entries:
|
||||
iperf3-monitor:
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.2.4
|
||||
created: "2025-07-02T08:39:13.621609745Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
- name: common
|
||||
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||
version: 4.1.2
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: 3929933b0e4b46d4a3e4274e495b27a467baa1cc59e0457f488b1fef834e815d
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.2.4.tgz
|
||||
version: 0.2.4
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.2.3
|
||||
created: "2025-07-02T08:02:44.490472865Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
- name: common
|
||||
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||
version: 4.1.2
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: dbd898b7c57c41e19e1abe46285ed0f8353b11bf7ab3d618c09101e5f50624a2
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.2.3.tgz
|
||||
version: 0.2.3
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.2.2
|
||||
created: "2025-07-02T07:30:10.740811061Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
- name: common
|
||||
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||
version: 4.1.2
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: 9404cc9b70c01370727cd6aabbe634698d6c2b86188853c5e7ea020547e839c3
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.2.2.tgz
|
||||
version: 0.2.2
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.2.1
|
||||
created: "2025-07-02T06:29:50.048523169Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
- name: common
|
||||
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||
version: 4.1.2
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: 78018c1dcdafe6768f874a524005e535e1744a9a76f026d8027f2ac69bf49c4c
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.2.1.tgz
|
||||
version: 0.2.1
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.9
|
||||
created: "2025-07-01T20:10:45.681665311Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: ba71668f2e79f143971758eddf2c1ccb81e8fa8dd681748f4a34718af83c523c
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.1.9.tgz
|
||||
version: 0.1.9
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.8
|
||||
created: "2025-06-20T20:43:41.906216787Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: dd1707ef16c06a1a3c4979983a0141c0f19bbd51b7b95a3bda22033780a517ba
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.1.8.tgz
|
||||
version: 0.1.8
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.6
|
||||
created: "2025-06-20T19:36:24.8256252Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: e23e2801a298edf8c345fcce210f7186a2304cf8321f315a244e44f0ef83e4bd
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.1.6.tgz
|
||||
version: 0.1.6
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.5
|
||||
created: "2025-06-20T13:41:15.223267266Z"
|
||||
dependencies:
|
||||
- condition: dependencies.install, serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: dependencies.install, serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: 565b4615cbfa166cb5b158d43bc0f79fb2482c6213e8d9c67b32cd2e2dac6103
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.1.5.tgz
|
||||
version: 0.1.5
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.4
|
||||
created: "2025-06-20T12:13:54.388432454Z"
|
||||
dependencies:
|
||||
- condition: serviceMonitor.enabled, !dependencies.useTrueChartsPrometheusOperator
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
- condition: serviceMonitor.enabled, dependencies.useTrueChartsPrometheusOperator
|
||||
name: prometheus-operator
|
||||
repository: oci://tccr.io/truecharts
|
||||
version: '>=8.11.1'
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: 6c0dbe54f696cdc2d98ecb54cff5c5b3c9eaea913e3caa798ad81c587ef5d199
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.1.4.tgz
|
||||
version: 0.1.4
|
||||
- annotations:
|
||||
artifacthub.io/category: networking
|
||||
artifacthub.io/changes: |
|
||||
- Add initial Helm chart structure.
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.1
|
||||
created: "2025-06-19T21:43:47.560731092Z"
|
||||
dependencies:
|
||||
- condition: serviceMonitor.enabled
|
||||
name: kube-prometheus-stack
|
||||
repository: https://prometheus-community.github.io/helm-charts
|
||||
version: '>=30.0.0'
|
||||
description: A Helm chart for deploying a Kubernetes-native iperf3 network performance
|
||||
monitoring service with Prometheus and Grafana.
|
||||
digest: e334d11e50f6303486830cc1384bfe21eecfe803f665868eaeb294d5ef168559
|
||||
home: https://github.com/malarinv/iperf3-monitor
|
||||
icon: https://raw.githubusercontent.com/malarinv/iperf3-monitor/main/icon.png
|
||||
keywords:
|
||||
- iperf3
|
||||
- network
|
||||
- performance
|
||||
- monitoring
|
||||
- kubernetes
|
||||
- prometheus
|
||||
- grafana
|
||||
maintainers:
|
||||
- email: malarkannan.invention@gmail.com
|
||||
name: Malar Invention
|
||||
name: iperf3-monitor
|
||||
sources:
|
||||
- https://github.com/malarinv/iperf3-monitor
|
||||
type: application
|
||||
urls:
|
||||
- https://malarinv.github.io/iperf3-monitor/iperf3-monitor-0.1.1.tgz
|
||||
version: 0.1.1
|
||||
generated: "2025-07-02T08:39:13.550399875Z"
|
||||
BIN
iperf3-monitor-0.1.1.tgz
Normal file
BIN
iperf3-monitor-0.1.1.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.1.4.tgz
Normal file
BIN
iperf3-monitor-0.1.4.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.1.5.tgz
Normal file
BIN
iperf3-monitor-0.1.5.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.1.6.tgz
Normal file
BIN
iperf3-monitor-0.1.6.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.1.8.tgz
Normal file
BIN
iperf3-monitor-0.1.8.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.1.9.tgz
Normal file
BIN
iperf3-monitor-0.1.9.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.2.1.tgz
Normal file
BIN
iperf3-monitor-0.2.1.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.2.2.tgz
Normal file
BIN
iperf3-monitor-0.2.2.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.2.3.tgz
Normal file
BIN
iperf3-monitor-0.2.3.tgz
Normal file
Binary file not shown.
BIN
iperf3-monitor-0.2.4.tgz
Normal file
BIN
iperf3-monitor-0.2.4.tgz
Normal file
Binary file not shown.
Reference in New Issue
Block a user