mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
11 lines
No EOL
294 B
HCL
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
|
|
} |