Compare commits

..

3 commits

Author SHA1 Message Date
f82d00c2a0 Update dashboard VolSync Dashboard ( 1 → 3 ) 2024-10-28 04:32:53 +00:00
6f29438222
all but vms 2024-10-27 23:18:03 -05:00
9a9be03cc9
switch to app-template 2024-10-27 23:03:14 -05:00

View file

@ -1,5 +1,5 @@
--- ---
# yaml-language-server: $schema=https://ks.hsn.dev/helm.toolkit.fluxcd.io/helmrelease_v2.json # yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
apiVersion: helm.toolkit.fluxcd.io/v2 apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease kind: HelmRelease
metadata: metadata:
@ -8,31 +8,61 @@ spec:
interval: 30m interval: 30m
chart: chart:
spec: spec:
chart: prometheus-smartctl-exporter chart: app-template
version: 0.10.0 version: 3.5.1
sourceRef: sourceRef:
kind: HelmRepository kind: HelmRepository
name: prometheus-community name: bjw-s
namespace: flux-system namespace: flux-system
install:
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
strategy: rollback
retries: 3
values: values:
fullnameOverride: *app controllers:
# incompatible drives cause false positives for smart failures. smartctl-exporter:
nodeSelector: type: daemonset
matchExpressions: pod:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/hostname - key: kubernetes.io/hostname
operator: NotIn operator: NotIn
values: values:
- gandalf-01 - gandalf-01
- shadowfax-01 - shadowfax-01
serviceMonitor: containers:
app:
image:
repository: quay.io/prometheuscommunity/smartctl-exporter
tag: v0.12.0
args:
- --smartctl.path=/usr/sbin/smartctl
- --smartctl.interval=120s
- --web.listen-address=0.0.0.0:9633
- --web.telemetry-path=/metrics
securityContext:
privileged: true
runAsUser: 0
probes:
liveness: &probes
enabled: true enabled: true
prometheusRules: custom: true
enabled: false spec:
httpGet:
port: 9633
path: /
readiness: *probes
service:
app:
controller: smartctl-exporter
type: LoadBalancer
ports:
http:
port: 9633
persistence:
dev:
type: hostPath
hostPath: /dev
hostPathType: Directory
globalMounts:
- path: /host/dev
readOnly: true