Files
truecharts/charts/stable/prometheus-pve-exporter/values.yaml
T
TrueCharts BotandGitHub 1978fb9814 chore(helm): update image docker.io/prompve/prometheus-pve-exporter 3.5.4 → 3.5.5 (#36536)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/prompve/prometheus-pve-exporter](https://redirect.github.com/prometheus-pve/prometheus-pve-exporter)
| patch | `dc4cb11` -> `79a5598` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>prometheus-pve/prometheus-pve-exporter
(docker.io/prompve/prometheus-pve-exporter)</summary>

###
[`v3.5.5`](https://redirect.github.com/prometheus-pve/prometheus-pve-exporter/blob/HEAD/CHANGELOG.rst#355---2025-06-19)

[Compare
Source](https://redirect.github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.5.4...v3.5.5)

Changed

```

- Bump alpine from 3.21.3 to 3.22.0 (#&#8203;338)
- Bump prometheus-client from 0.21.1 to 0.22.1 (#&#8203;339)
- Bump requests from 2.32.3 to 2.32.4 (#&#8203;340)
- Bump urllib3 from 2.2.2 to 2.5.0 (#&#8203;341)
```

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-22 02:14:05 +02:00

78 lines
2.2 KiB
YAML

image:
repository: docker.io/prompve/prometheus-pve-exporter
tag: 3.5.5@sha256:79a5598906697b1a5a006d09f0200528a77c6ff1568faf018539ac65824454df
service:
main:
ports:
main:
protocol: http
port: 9221
pve:
credentials:
# The username in the format 'username@realm' for authentication.
user: username@realm
# The name of the API token to be used for authentication.
tokenName: your-token-name
# The value of the API token to be used for authentication.
# The token role should be set to PVEAuditor on Proxmox VE.
tokenValue: your-token-value
general:
# The Proxmox VE instance to scrape metrics from, specified by IP or hostname.
target: pve.example.com
# Toggle TLS certificate verification for Proxmox VE.
verifySsl: true
secret:
credentials:
enabled: true
data:
PVE_TOKEN_VALUE: "{{ .Values.pve.credentials.tokenValue }}"
workload:
main:
podSpec:
containers:
main:
env:
PVE_VERIFY_SSL: "{{ .Values.pve.general.verifySsl }}"
PVE_USER: "{{ .Values.pve.credentials.user }}"
PVE_TOKEN_NAME: "{{ .Values.pve.credentials.tokenName }}"
envFrom:
- secretRef:
name: credentials
args:
- --web.listen-address
- :{{ .Values.service.main.ports.main.port }}
# Optional arguments to disable specific collectors in the exporter. By default, all collectors are enabled.
# - "--no-collector.status"
# - "--no-collector.version"
# - "--no-collector.node"
# - "--no-collector.cluster"
# - "--no-collector.resources"
# - "--no-collector.config"
metrics:
main:
enabled: true
type: servicemonitor
endpoints:
- port: main
path: "/pve"
params:
target:
- "{{ .Values.pve.general.target }}"
relabelings:
- targetLabel: instance
replacement: "{{ .Values.pve.general.target }}"
configmap:
dashboard:
enabled: true
labels:
grafana_dashboard: "1"
data:
pve.json: >-
{{ .Files.Get "dashboard.json" | indent 8 }}