nixfiles/cluster/local-path-provisioner.tf

17 lines
No EOL
423 B
HCL

resource "helm_release" "local_path_provisioner" {
name = "local-path-storage"
repository = "${path.module}/lpp/deploy/chart"
chart = "local-path-provisioner"
create_namespace = true
namespace = "local-path-storage"
timeout = var.helm_timeout
cleanup_on_fail = true
force_update = true
values = [yamlencode({
storageClass = {
defaultClass = true
}
})]
}