These services do not have working healthchecks and the convergence must be ignored.
This commit is contained in:
parent
de7df81b2d
commit
cd33dc7e05
5 changed files with 8 additions and 3 deletions
products
|
@ -27,4 +27,5 @@ module "mitmproxy" {
|
||||||
host = 4081
|
host = 4081
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
converge_enable = false # @todo MB: add healthcheck and fix this.
|
||||||
}
|
}
|
|
@ -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 = {
|
||||||
|
|
|
@ -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.
|
||||||
}
|
}
|
||||||
|
|
|
@ -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.
|
||||||
}
|
}
|
|
@ -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.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue