mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
17 lines
No EOL
423 B
HCL
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
|
|
}
|
|
})]
|
|
} |