Files
gitops/clusters/kairos/local-path-provisioner/helmrelease.yaml
2024-08-19 15:03:25 +01:00

26 lines
540 B
YAML

apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: local-path-repo
namespace: kube-system
spec:
interval: 5m
releaseName: local-path-repo
chart:
spec:
chart: deploy/chart/local-path-provisioner
sourceRef:
kind: GitRepository
name: local-path-repo
targetNamespace: kube-system
values:
storageClass:
defaultClass: true
reclaimPolicy: Retain
nodePathMap: [
{
node: DEFAULT_PATH_FOR_NON_LISTED_NODES,
paths: [/usr/local]
}
]