These services do not have working healthchecks and the convergence must be ignored.

This commit is contained in:
Greyscale 2025-01-21 14:28:15 +01:00
parent de7df81b2d
commit cd33dc7e05
Signed by: grey
GPG key ID: DDB392AE64B32D89
5 changed files with 8 additions and 3 deletions
products
mitmproxy
pgadmin
quassel
smokeping
statping

View file

@ -27,4 +27,5 @@ module "mitmproxy" {
host = 4081 host = 4081
} }
] ]
converge_enable = false # @todo MB: add healthcheck and fix this.
} }

View file

@ -37,9 +37,10 @@ module "pgadmin" {
Servers = { for server in var.servers : index(var.servers, server) => server } Servers = { for server in var.servers : index(var.servers, server) => server }
}) })
} }
healthcheck = ["CMD", "wget", "-q", "-O", "-", "http://localhost:80/misc/ping"] #healthcheck = ["CMD", "wget", "-q", "-O", "-", "http://localhost:80/misc/ping"]
healthcheck_start_period = "60s" #healthcheck_start_period = "60s"
converge_timeout = "5m" #converge_timeout = "5m"
converge_enable = false
} }
output "credentials" { output "credentials" {
value = { value = {

View file

@ -32,4 +32,5 @@ module "service" {
} }
placement_constraints = var.placement_constraints placement_constraints = var.placement_constraints
ports = [{ container = 4242, host = 4242 }] ports = [{ container = 4242, host = 4242 }]
converge_enable = false # @todo MB: add healthcheck and fix this.
} }

View file

@ -12,4 +12,5 @@ module "smokeping" {
traefik = var.traefik traefik = var.traefik
networks = var.networks networks = var.networks
placement_constraints = var.placement_constraints placement_constraints = var.placement_constraints
converge_enable = false # @todo MB: add healthcheck and fix this.
} }

View file

@ -30,4 +30,5 @@ module "statping" {
placement_constraints = var.placement_constraints placement_constraints = var.placement_constraints
dns_nameservers = var.dns_nameservers dns_nameservers = var.dns_nameservers
traefik = var.traefik traefik = var.traefik
converge_enable = false # @todo MB: add healthcheck and fix this.
} }