File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
config/helm/aws-node-termination-handler Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : aws-node-termination-handler
3
3
description : A Helm chart for the AWS Node Termination Handler
4
- version : 0.13.3
4
+ version : 0.14.0
5
5
appVersion : 1.12.0
6
6
home : https://github.com/aws/eks-charts
7
7
icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ Parameter | Description | Default
78
78
` podMonitor.interval ` | Prometheus scrape interval | ` 30s `
79
79
` podMonitor.sampleLimit ` | Number of scraped samples accepted | ` 5000 `
80
80
` podMonitor.labels ` | Additional PodMonitor metadata labels | ` {} `
81
+ ` podMonitor.namespace ` | override podMonitor Helm release namespace | ` {{.Release.Namespace}} `
81
82
82
83
### AWS Node Termination Handler - Queue-Processor Mode Configuration
83
84
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ apiVersion: monitoring.coreos.com/v1
3
3
kind : PodMonitor
4
4
metadata :
5
5
name : {{ template "aws-node-termination-handler.fullname" . }}
6
+ {{- if .Values.podMonitor.namespace }}
7
+ namespace : {{ .Values.podMonitor.namespace }}
8
+ {{- else }}
6
9
namespace : {{ .Release.Namespace }}
10
+ {{- end }}
7
11
labels :
8
12
{{ include "aws-node-termination-handler.labels" . | indent 4 }}
9
13
{{- with .Values.podMonitor.labels }}
Original file line number Diff line number Diff line change @@ -175,6 +175,9 @@ podMonitor:
175
175
sampleLimit : 5000
176
176
# Additional labels to add to the metadata
177
177
labels : {}
178
+ # Specifies whether a pod monitor should be created in a different namespace than
179
+ # the Helm release
180
+ # namespace: monitoring
178
181
179
182
# K8s DaemonSet update strategy.
180
183
updateStrategy :
You can’t perform that action at this time.
0 commit comments