switch to app-template

This commit is contained in:
Joseph Hanson 2024-10-27 23:03:14 -05:00
parent 44587fc33a
commit 9a9be03cc9
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

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,51 @@ 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: containers:
- key: kubernetes.io/hostname app:
operator: NotIn image:
values: repository: quay.io/prometheuscommunity/smartctl-exporter
- gandalf-01 tag: v0.12.0
- shadowfax-01 args:
serviceMonitor: - --smartctl.path=/usr/sbin/smartctl
- --smartctl.interval=120s
- --web.listen-address=0.0.0.0:9633
- --web.telemetry-path=/metrics
- --smartctl.device-exclude=".*incus_root.*"
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