Skip to content

Commit

Permalink
add default gpu operator helm values
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianBergen committed Dec 3, 2024
1 parent a7b2350 commit 2c5274a
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,40 @@ variable "gpu_operator_config" {
enable = optional(bool, true)
helm_repository = optional(string, "https://helm.ngc.nvidia.com/nvidia")
helm_version = optional(string, "v24.9.0")
driver_version = string
driver_version = optional(string, "550.90.07")
chart_values = optional(string, <<-YAML
operator:
defaultRuntime: containerd
dcgmExporter:
enabled: false
driver:
enabled: true
validator:
driver:
env:
- name: DISABLE_DEV_CHAR_SYMLINK_CREATION
value: "true"
toolkit:
enabled: true
daemonsets:
tolerations:
- key: purpose
value: gpu
operator: Equal
effect: NoSchedule
node-feature-discovery:
worker:
tolerations:
- key: purpose
value: gpu
operator: Equal
effect: NoSchedule
YAML
)
})
Expand Down

0 comments on commit 2c5274a

Please sign in to comment.