Skip to content
Open
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
8 changes: 4 additions & 4 deletions sources/otel-lgtm-stack/v1.0.7/templates/node-exporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,22 @@ spec:
- --path.sysfs=/host/sys
- --path.rootfs=/host/root
- --path.udev.data=/host/root/run/udev/data
- --web.listen-address=[$(HOST_IP)]:9100
- --web.listen-address=[$(HOST_IP)]:{{ .Values.services.nodeExporter.metrics }}
securityContext:
readOnlyRootFilesystem: true
env:
- name: HOST_IP
value: 0.0.0.0
ports:
- name: metrics
containerPort: 9100
containerPort: {{ .Values.services.nodeExporter.metrics }}
protocol: TCP
livenessProbe:
failureThreshold: 3
httpGet:
httpHeaders:
path: /
port: 9100
port: {{ .Values.services.nodeExporter.metrics }}
scheme: HTTP
initialDelaySeconds: 0
periodSeconds: 10
Expand All @@ -121,7 +121,7 @@ spec:
httpGet:
httpHeaders:
path: /
port: 9100
port: {{ .Values.services.nodeExporter.metrics }}
scheme: HTTP
initialDelaySeconds: 0
periodSeconds: 10
Expand Down
Loading