nixfiles/cluster/local-path-provisioner.tf

11 lines
No EOL
294 B
HCL

resource "helm_release" "local_path_provisioner" {
name = "local-path-provisioner"
repository = "./lpp"
chart = "local-path-storage"
create_namespace = true
namespace = "local-path-storage"
timeout = var.helm_timeout
cleanup_on_fail = true
force_update = true
}