mirror of
https://github.com/malarinv/iperf3-monitor.git
synced 2026-03-08 05:22:35 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8d51afc24e |
@@ -27,4 +27,8 @@ dependencies:
|
|||||||
- name: kube-prometheus-stack # Example dependency if you package the whole stack
|
- name: kube-prometheus-stack # Example dependency if you package the whole stack
|
||||||
version: ">=30.0.0" # Specify a compatible version range
|
version: ">=30.0.0" # Specify a compatible version range
|
||||||
repository: https://prometheus-community.github.io/helm-charts
|
repository: https://prometheus-community.github.io/helm-charts
|
||||||
condition: serviceMonitor.enabled # Only include if ServiceMonitor is enabled (assuming Prometheus Operator)
|
condition: "serviceMonitor.enabled, !values.dependencies.useTrueChartsPrometheusOperator"
|
||||||
|
- name: prometheus-operator
|
||||||
|
version: "{{ .Values.dependencies.trueChartsPrometheusOperatorVersion }}"
|
||||||
|
repository: "{{ .Values.dependencies.trueChartsPrometheusOperatorRepository }}"
|
||||||
|
condition: "serviceMonitor.enabled, values.dependencies.useTrueChartsPrometheusOperator"
|
||||||
|
|||||||
@@ -118,3 +118,20 @@ networkPolicy:
|
|||||||
namespaceSelector: {}
|
namespaceSelector: {}
|
||||||
# -- Specify pod selectors if needed.
|
# -- Specify pod selectors if needed.
|
||||||
podSelector: {}
|
podSelector: {}
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# Dependency Configuration
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
dependencies:
|
||||||
|
# -- Set to true to use the TrueCharts Prometheus Operator instead of kube-prometheus-stack.
|
||||||
|
# This chart's ServiceMonitor resources require a Prometheus Operator to be functional.
|
||||||
|
# If serviceMonitor.enabled is true, one of these two dependencies will be pulled based on this flag.
|
||||||
|
useTrueChartsPrometheusOperator: false
|
||||||
|
|
||||||
|
# -- Repository for the TrueCharts Prometheus Operator.
|
||||||
|
# Only used if dependencies.useTrueChartsPrometheusOperator is true.
|
||||||
|
trueChartsPrometheusOperatorRepository: "oci://tccr.io/truecharts"
|
||||||
|
|
||||||
|
# -- Chart version for the TrueCharts Prometheus Operator.
|
||||||
|
# Only used if dependencies.useTrueChartsPrometheusOperator is true.
|
||||||
|
trueChartsPrometheusOperatorVersion: "8.11.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user