Exposing 2222 in gitea service however ingress still needs configuration
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 6s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 20s

This commit is contained in:
shockrah 2026-01-06 00:06:47 -08:00
parent 555124bf2f
commit 37305fd74e

View File

@ -28,7 +28,7 @@ resource kubernetes_deployment gitea {
name = "gitea-main"
}
port {
container_port = 22
container_port = 2222
name = "gitea-ssh"
}
volume_mount {
@ -62,5 +62,10 @@ resource kubernetes_service gitea {
port = 3000
name = "http"
}
port {
target_port = "gitea-ssh"
port = 2222
name = "ssh"
}
}
}