mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
16 lines
No EOL
331 B
HCL
16 lines
No EOL
331 B
HCL
resource "helm_release" "metallb" {
|
|
name = "metallb"
|
|
repository = "https://metallb.github.io/metallb"
|
|
chart = "metallb"
|
|
create_namespace = true
|
|
namespace = "metallb-system"
|
|
|
|
timeout = var.helm_timeout
|
|
cleanup_on_fail = true
|
|
force_update = true
|
|
|
|
values = [
|
|
yamlencode({
|
|
})
|
|
]
|
|
} |