[TRAEFIK] Expose + node port

This commit is contained in:
Kat Inskip 2023-05-01 09:13:13 -07:00
parent 7c01d60812
commit ae371a024c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -14,15 +14,18 @@ resource "helm_release" "traefik" {
deployment = {
replicas = 1
}
service = {
type = "NodePort"
}
ports = {
traefik = {
web = {
hostPort = 80
expose = false
expose = true
}
websecure = {
hostPort = 443
expose = false
expose = true
}
}
}