Skip to content
Open
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
2 changes: 2 additions & 0 deletions charts/eks-node-monitoring-agent/templates/daemonset.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.nodeAgent.enabled }}
kind: DaemonSet
apiVersion: apps/v1
metadata:
Expand Down Expand Up @@ -69,3 +70,4 @@ spec:
- name: host-root
hostPath:
path: /
{{- end }}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.dcgmAgent.enabled }}
kind: DaemonSet
apiVersion: apps/v1
metadata:
Expand Down Expand Up @@ -46,3 +47,4 @@ spec:
hostPort: 5555
securityContext:
privileged: true
{{- end }}
4 changes: 4 additions & 0 deletions charts/eks-node-monitoring-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ serviceAccount:
annotations: {}

nodeAgent:
# Specifies whether the node agent should be installed
enabled: true
image:
# -- Image tag for the eks-node-monitoring-agent
tag: v1.4.0-eksbuild.2
Expand Down Expand Up @@ -76,6 +78,8 @@ nodeAgent:
- operator: Exists

dcgmAgent:
# Specifies whether the dcgm agent should be installed
enabled: true
image:
# -- Image tag for the dcgm-exporter
tag: 4.1.1-4.0.4-ubuntu22.04
Expand Down