Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion monitoring/mock_uss/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- scd
Expand Down Expand Up @@ -63,6 +65,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- scd
Expand All @@ -89,6 +93,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- geoawareness
Expand Down Expand Up @@ -121,6 +127,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- rid
Expand Down Expand Up @@ -153,6 +161,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- rid
Expand Down Expand Up @@ -185,6 +195,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- rid_v19
Expand Down Expand Up @@ -217,6 +229,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- rid_v19
Expand Down Expand Up @@ -253,6 +267,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- scd
Expand Down Expand Up @@ -287,6 +303,8 @@ services:
- interop_ecosystem_network
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
start_period: 30s
profiles:
- '' # starts when no profile is provided
- scd
Expand All @@ -313,4 +331,3 @@ services:
networks:
interop_ecosystem_network:
external: true

2 changes: 1 addition & 1 deletion monitoring/mock_uss/health_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# mock_uss via the interuss/monitoring image to determine the health status of
# the container.

curl --fail "http://localhost:${MOCK_USS_PORT:-5000}/status" || exit 1
curl --fail --max-time 1 "http://localhost:${MOCK_USS_PORT:-5000}/status" || exit 1
Loading