Re-add ingress-nginx to TF bootstrap (PodSecurity policy fixed)

- ingress-nginx now has restricted policy level (allows hostPort)
- Previous timeout was due to policy blocking pod deployment
- Re-importing helm release to TF management
This commit is contained in:
Story Crater Bot
2026-07-14 13:37:22 -07:00
parent 6109477bf9
commit 3eabb847fd
+5 -1
View File
@@ -10,7 +10,11 @@ locals {
namespace = "reloader" namespace = "reloader"
repo = "stakater" repo = "stakater"
} }
# ingress-nginx: managed separately (not via TF due to helm timeout issues) ingress-nginx = {
chart_version = "4.15.1"
namespace = "ingress-nginx"
repo = "ingress_nginx"
}
} }
} }