Basic sanity service now working under public DNS
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 3s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 15s

This commit is contained in:
shockrah 2025-09-17 23:32:50 -07:00
parent fce73d06e0
commit d992556032
2 changed files with 16 additions and 2 deletions

View File

@ -38,6 +38,7 @@ locals {
{ name = "resume.shockrah.xyz", records = [ var.vultr_host ] }, { name = "resume.shockrah.xyz", records = [ var.vultr_host ] },
{ name = "git.shockrah.xyz", records = [ var.vultr_host ] }, { name = "git.shockrah.xyz", records = [ var.vultr_host ] },
{ name = "example.shockrah.xyz", records = [ var.vke_lb ] }, { name = "example.shockrah.xyz", records = [ var.vke_lb ] },
{ name = "sanity.shockrah.xyz", records = [ var.vke_lb ] },
] ]
} }

View File

@ -1,11 +1,24 @@
resource kubernetes_ingress playground_ingress { resource kubernetes_ingress_v1 playground_ingress {
metadata { metadata {
name = "playground-ingress" name = "playground-ingress"
namespace = var.playground.namespace
} }
spec { spec {
ingress_class_name = "nginx" ingress_class_name = "nginx"
rule { rule {
host = var.playground.health.dns http {
path {
path = "/"
backend {
service {
name = "health"
port {
number = 80
}
}
}
}
}
} }
} }
} }