mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
19 lines
No EOL
397 B
HCL
19 lines
No EOL
397 B
HCL
/*resource "helm_release" "traefik" {
|
|
name = "traefik"
|
|
repository = "https://traefik.github.io/charts"
|
|
chart = "traefik"
|
|
create_namespace = true
|
|
namespace = "traefik"
|
|
|
|
timeout = var.helm_timeout
|
|
cleanup_on_fail = true
|
|
force_update = true
|
|
|
|
values = [
|
|
yamlencode({
|
|
deployment = {
|
|
replicas = 1
|
|
}
|
|
})
|
|
]
|
|
}*/ |