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
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ spec:
- name: localtime
mountPath: /etc/localtime
readOnly: true
priorityClassName: {{ .Values.priorityClassName | default "system-node-critical" }}
serviceAccountName: health-monitoring-agent
volumes:
- name: log
Expand Down Expand Up @@ -250,6 +251,7 @@ spec:
- name: localtime
mountPath: /etc/localtime
readOnly: true
priorityClassName: {{ .Values.priorityClassName | default "system-node-critical" }}
serviceAccountName: health-monitoring-agent
volumes:
- name: log
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ hmaimage: ""

# Enable debug output for region selection process
debug: true

# PriorityClass for the HMA DaemonSet pods.
# system-node-critical ensures HMA is the last pod evicted under node pressure
# (e.g. DiskPressure), preventing loss of health monitoring. See P438078245.
priorityClassName: system-node-critical
Loading