Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 102 - Allow setting runtimeClassName #291

Merged
merged 1 commit into from
Mar 19, 2024
Merged
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
18 changes: 17 additions & 1 deletion deployment/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,21 @@ arguments: ["-f", "/etc/dcgm-exporter/dcp-metrics-included.csv"]
# the watched exporter fields.
# Example arguments: ["-m", "default:exporter-metrics-config-map"]

# Image pull secrets for container images
imagePullSecrets: []

# Overrides the chart's name
nameOverride: ""

# Overrides the chart's computed fullname
fullnameOverride: ""
nvvfedorov marked this conversation as resolved.
Show resolved Hide resolved

# Overrides the deployment namespace
namespaceOverride: ""

# Defines the runtime class that will be used by the pod
runtimeClassName: ""

# Defines serviceAccount names for components.
serviceAccount:
# Specifies whether a service account should be created
create: true
Expand All @@ -59,31 +67,38 @@ rollingUpdate:
# Specifies maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update
maxSurge: 0

# Labels to be added to dcgm-exporter pods
podLabels: {}

# Annotations to be added to dcgm-exporter pods
podAnnotations: {}
# Using this annotation which is required for prometheus scraping
# prometheus.io/scrape: "true"
# prometheus.io/port: "9400"

# The SecurityContext for the dcgm-exporter pods
podSecurityContext: {}
# fsGroup: 2000

# The SecurityContext for the dcgm-exporter containers
securityContext:
runAsNonRoot: false
runAsUser: 0
capabilities:
add: ["SYS_ADMIN"]
# readOnlyRootFilesystem: true

# Defines the dcgm-exporter service
service:
# When enabled, the helm chart will create service
enable: true
type: ClusterIP
port: 9400
address: ":9400"
# Annotations to add to the service
annotations: {}

# Allows to control pod resources
resources: {}
# limits:
# cpu: 100m
Expand Down Expand Up @@ -137,4 +152,5 @@ extraEnv: []
#- name: EXTRA_VAR
# value: "TheStringValue"

# Path to the kubelet socket for /pod-resources
kubeletPath: "/var/lib/kubelet/pod-resources"
Loading