Skip to content

Commit 2c12865

Browse files
wip traefik setup
1 parent 756ac37 commit 2c12865

File tree

3 files changed

+1342
-0
lines changed

3 files changed

+1342
-0
lines changed

modules/traefik/traefik.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
resource "kubernetes_namespace" "traefik" {
2+
metadata {
3+
name = var.namespace
4+
}
5+
}
6+
7+
resource "helm_release" "traefik" {
8+
name = "traefik"
9+
repository = "https://traefik.github.io/charts"
10+
chart = "traefik"
11+
version = "37.3.0"
12+
13+
namespace = var.namespace
14+
}

0 commit comments

Comments
 (0)