mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
[METALLB] Add
This commit is contained in:
parent
b09e3e8f24
commit
7f035cc032
2 changed files with 18 additions and 2 deletions
16
cluster/metallb.tf
Normal file
16
cluster/metallb.tf
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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({
|
||||
})
|
||||
]
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
resource "helm_release" "traefik" {
|
||||
/*resource "helm_release" "traefik" {
|
||||
name = "traefik"
|
||||
repository = "https://traefik.github.io/charts"
|
||||
chart = "traefik"
|
||||
|
|
@ -16,4 +16,4 @@ resource "helm_release" "traefik" {
|
|||
}
|
||||
})
|
||||
]
|
||||
}
|
||||
}*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue