Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
ddd44696b1
commit
16236a8589
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,30 @@
|
||||||
|
# Patterns to ignore when building packages.
|
||||||
|
# This supports shell glob matching, relative path matching, and
|
||||||
|
# negation (prefixed with !). Only one pattern per line.
|
||||||
|
.DS_Store
|
||||||
|
# Common VCS dirs
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
.bzr/
|
||||||
|
.bzrignore
|
||||||
|
.hg/
|
||||||
|
.hgignore
|
||||||
|
.svn/
|
||||||
|
# Common backup files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
.vscode/
|
||||||
|
# OWNERS file for Kubernetes
|
||||||
|
OWNERS
|
||||||
|
# helm-docs templates
|
||||||
|
*.gotmpl
|
||||||
|
# docs folder
|
||||||
|
/docs
|
||||||
|
# icon
|
||||||
|
icon.png
|
|
@ -0,0 +1,38 @@
|
||||||
|
annotations:
|
||||||
|
max_scale_version: 23.10.2
|
||||||
|
min_scale_version: 23.10.0
|
||||||
|
truecharts.org/SCALE-support: "true"
|
||||||
|
truecharts.org/category: metrics
|
||||||
|
truecharts.org/max_helm_version: "3.13"
|
||||||
|
truecharts.org/min_helm_version: "3.12"
|
||||||
|
truecharts.org/train: incubator
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.2.0
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
version: 17.2.22
|
||||||
|
repository: oci://tccr.io/truecharts
|
||||||
|
condition: ""
|
||||||
|
alias: ""
|
||||||
|
tags: []
|
||||||
|
import-values: []
|
||||||
|
deprecated: false
|
||||||
|
description: Prometheus exporter for Nvidia GPU's using nvidia-smi binary to gather metrics.
|
||||||
|
home: https://truecharts.org/charts/incubator/nvidia-gpu-exporter
|
||||||
|
icon: https://truecharts.org/img/hotlink-ok/chart-icons/nvidia-gpu-exporter.png
|
||||||
|
keywords:
|
||||||
|
- prometheus
|
||||||
|
- nvidia-gpu-exporter
|
||||||
|
- monitoring
|
||||||
|
kubeVersion: ">=1.24.0-0"
|
||||||
|
maintainers:
|
||||||
|
- name: TrueCharts
|
||||||
|
email: info@truecharts.org
|
||||||
|
url: https://truecharts.org
|
||||||
|
name: nvidia-gpu-exporter
|
||||||
|
sources:
|
||||||
|
- https://github.com/truecharts/charts/tree/master/charts/incubator/nvidia-gpu-exporter
|
||||||
|
- https://github.com/utkuozdemir/nvidia_gpu_exporter
|
||||||
|
- https://hub.docker.com/r/utkuozdemir/nvidia_gpu_exporter
|
||||||
|
type: application
|
||||||
|
version: 0.0.1
|
|
@ -0,0 +1 @@
|
||||||
|
# README
|
|
@ -0,0 +1,8 @@
|
||||||
|
Prometheus exporter for Nvidia GPU's using nvidia-smi binary to gather metrics.
|
||||||
|
|
||||||
|
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/nvidia-gpu-exporter](https://truecharts.org/charts/incubator/nvidia-gpu-exporter)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
TrueCharts can only exist due to the incredible effort of our staff.
|
||||||
|
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,89 @@
|
||||||
|
image:
|
||||||
|
repository: utkuozdemir/nvidia_gpu_exporter
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: 1.2.0@sha256:cc407f77ab017101ce233a0185875ebc75d2a0911381741b20ad91f695e488c7
|
||||||
|
securityContext:
|
||||||
|
container:
|
||||||
|
privileged: true
|
||||||
|
readOnlyRootFilesystem: false
|
||||||
|
runAsUser: 0
|
||||||
|
runAsGroup: 0
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
ports:
|
||||||
|
main:
|
||||||
|
protocol: http
|
||||||
|
port: 9835
|
||||||
|
workload:
|
||||||
|
main:
|
||||||
|
type: DaemonSet
|
||||||
|
podSpec:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
args:
|
||||||
|
- --web.listen-address
|
||||||
|
- :{{ .Values.service.main.ports.main.port }}
|
||||||
|
- --web.telemetry-path
|
||||||
|
- "{{ .Values.metricsEndpoint }}"
|
||||||
|
- --nvidia-smi-command
|
||||||
|
- nvidia-smi
|
||||||
|
- --log.level
|
||||||
|
- "{{ .Values.logs.general.level }}"
|
||||||
|
- --log.format
|
||||||
|
- "{{ .Values.logs.general.format }}"
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
path: "{{ .Values.metricsEndpoint }}"
|
||||||
|
port: main
|
||||||
|
readiness:
|
||||||
|
path: "{{ .Values.metricsEndpoint }}"
|
||||||
|
port: main
|
||||||
|
startup:
|
||||||
|
type: tcp
|
||||||
|
port: main
|
||||||
|
persistence:
|
||||||
|
nviaictl:
|
||||||
|
enabled: true
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /dev/nvidiactl
|
||||||
|
mountPath: /dev/nvidiactl
|
||||||
|
readOnly: true
|
||||||
|
nvidia0:
|
||||||
|
enabled: true
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /dev/nvidia0
|
||||||
|
mountPath: /dev/nvidia0
|
||||||
|
readOnly: true
|
||||||
|
nvidiasmi:
|
||||||
|
enabled: true
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /usr/bin/nvidia-smi
|
||||||
|
mountPath: /usr/bin/nvidia-smi
|
||||||
|
readOnly: true
|
||||||
|
libnvidiamlso:
|
||||||
|
enabled: true
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /usr/lib/x86_64-linux-gnu/libnvidia-ml.so
|
||||||
|
mountPath: /usr/lib/x86_64-linux-gnu/libnvidia-ml.so
|
||||||
|
readOnly: true
|
||||||
|
libnvidiamlso1:
|
||||||
|
enabled: true
|
||||||
|
type: hostPath
|
||||||
|
hostPath: /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.1
|
||||||
|
mountPath: /usr/lib/x86_64-linux-gnu/libnvidia-ml.so.1
|
||||||
|
readOnly: true
|
||||||
|
metrics:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
type: "servicemonitor"
|
||||||
|
endpoints:
|
||||||
|
- port: main
|
||||||
|
path: "{{ .Values.metricsEndpoint }}"
|
||||||
|
portal:
|
||||||
|
open:
|
||||||
|
enabled: false
|
||||||
|
metricsEndpoint: "/metrics"
|
||||||
|
logs:
|
||||||
|
general:
|
||||||
|
level: info
|
||||||
|
format: logfmt
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
||||||
|
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -0,0 +1,4 @@
|
||||||
|
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/nvidia-gpu-exporter.png
|
||||||
|
categories:
|
||||||
|
- metrics
|
||||||
|
screenshots: []
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue