Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion helm-charts/support/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,11 @@ dependencies:
- name: jupyterhub-cost-monitoring
version: "v1.1.1"
repository: https://2i2c.org/jupyterhub-cost-monitoring/
condition: jupyterhub-cost-monitoring.enabled
condition: jupyterhub-cost-monitoring.enabled

# Provide metrics about GPU usage
# https://github.com/NVIDIA/dcgm-exporter
- name: dcgm-exporter
version: 4.8.1
repository: https://nvidia.github.io/dcgm-exporter/helm-charts
condition: dcgm-exporter.enabled
3 changes: 3 additions & 0 deletions helm-charts/support/values.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ properties:
global:
type: object
additionalProperties: true
dcgm-exporter:
type: object
additionalProperties: true

# These provide values for objects we create, so we validate their schema
# to the best of our ability.
Expand Down
15 changes: 15 additions & 0 deletions helm-charts/support/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,21 @@ jupyterhub-cost-monitoring:
cpu: 5m
memory: 100Mi

dcgm-exporter:
enabled: false
serviceMonitor:
enabled: false
podAnnotations:
prometheus.io/path: "/metrics"
prometheus.io/port: "12121"
prometheus.io/scrape: "true"
tolerations:
- key: nvidia.com/gpu
operator: Equal
value: present
effect: NoSchedule


# Configuration of templates provided directly by this chart
# -------------------------------------------------------------------------------
#
Expand Down
Loading