Restructure: servers/legion/ layout, rename repo to infrastructure

This commit is contained in:
Will Anderson
2026-03-23 07:38:42 -05:00
parent 7751eddd73
commit 0b4a236a88
22 changed files with 4 additions and 4 deletions
+25
View File
@@ -0,0 +1,25 @@
# Traefik configuration — global HTTP→HTTPS redirect
# Applied via k3s HelmChartConfig (managed outside of Helm provider)
resource "kubernetes_manifest" "traefik_config" {
field_manager {
force_conflicts = true
}
manifest = {
apiVersion = "helm.cattle.io/v1"
kind = "HelmChartConfig"
metadata = {
name = "traefik"
namespace = "kube-system"
}
spec = {
valuesContent = <<-YAML
ports:
web:
redirectTo:
port: websecure
YAML
}
}
}