Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
7fa2104741
commit
5547af4dd2
|
@ -1,13 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [node-exporter-1.0.0]node-exporter-1.0.0 (2023-05-22)
|
||||
|
||||
### Add
|
||||
|
||||
- add node-exporter to dependency train ([#9059](https://github.com/truecharts/charts/issues/9059))
|
||||
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [node-exporter-1.0.0]node-exporter-1.0.0 (2023-05-22)
|
||||
|
||||
### Add
|
||||
|
||||
- add node-exporter to dependency train ([#9059](https://github.com/truecharts/charts/issues/9059))
|
||||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [node-exporter-1.0.1](https://github.com/truecharts/charts/compare/node-exporter-1.0.0...node-exporter-1.0.1) (2023-05-22)
|
||||
|
||||
### Fix
|
||||
|
||||
- move some patches from prometheus to node-exporter ([#9061](https://github.com/truecharts/charts/issues/9061))
|
||||
|
||||
|
||||
|
||||
|
||||
## [node-exporter-1.0.0]node-exporter-1.0.0 (2023-05-22)
|
||||
|
||||
### Add
|
||||
|
||||
- add node-exporter to dependency train ([#9059](https://github.com/truecharts/charts/issues/9059))
|
||||
|
||||
|
|
@ -21,7 +21,7 @@ name: node-exporter
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/dependency/node-exporter
|
||||
type: application
|
||||
version: 1.0.0
|
||||
version: 1.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- metrics
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [node-exporter-1.0.1](https://github.com/truecharts/charts/compare/node-exporter-1.0.0...node-exporter-1.0.1) (2023-05-22)
|
||||
|
||||
### Fix
|
||||
|
||||
- move some patches from prometheus to node-exporter ([#9061](https://github.com/truecharts/charts/issues/9061))
|
||||
|
||||
|
|
@ -8,13 +8,11 @@ service:
|
|||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
port: 9100
|
||||
port: 9910
|
||||
|
||||
workload:
|
||||
main:
|
||||
type: DaemonSet
|
||||
replicas: 2
|
||||
strategy: RollingUpdate
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
|
@ -22,6 +20,10 @@ workload:
|
|||
- --path.procfs=/host/proc
|
||||
- --path.sysfs=/host/sys
|
||||
- --web.listen-address=0.0.0.0:{{ .Values.service.main.ports.main.port }}
|
||||
- --collector.filesystem.ignored-mount-points="^/(dev|proc|sys|var/lib/docker/.+|var/lib/kubelet/.+|var/db/system/.+|mnt/[a-zA-Z0-9-_\\.]+/ix-applications/.+)($|/)"
|
||||
- --collector.filesystem.ignored-fs-types="^(autofs|binfmt_misc|cgroup|configfs|debugfs|devpts|devtmpfs|fusectl|hugetlbfs|mqueue|overlay|proc|procfs|pstore|rpc_pipefs|securityfs|sysfs|tracefs)$"
|
||||
- --collector.netdev.device-exclude="^veth.*$"
|
||||
- --collector.netclass.ignored-devices="^veth.*$"
|
||||
probes:
|
||||
liveness:
|
||||
path: /
|
||||
|
@ -40,6 +42,11 @@ podOptions:
|
|||
hostPID: true
|
||||
|
||||
persistence:
|
||||
host:
|
||||
enabled: true
|
||||
hostPath: /
|
||||
mountPath: /host
|
||||
readOnly: true
|
||||
proc:
|
||||
enabled: true
|
||||
hostPath: /proc
|
Loading…
Reference in New Issue