theshire/kubernetes/apps/observability/smartctl-exporter/app/helmrelease.yaml
2024-10-27 23:18:03 -05:00

68 lines
1.9 KiB
YAML

---
# 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
kind: HelmRelease
metadata:
name: &app smartctl-exporter
spec:
interval: 30m
chart:
spec:
chart: app-template
version: 3.5.1
sourceRef:
kind: HelmRepository
name: bjw-s
namespace: flux-system
values:
controllers:
smartctl-exporter:
type: daemonset
pod:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/hostname
operator: NotIn
values:
- gandalf-01
- shadowfax-01
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
custom: true
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