diff options
author | halil.cakal <halil.cakal@est.tech> | 2024-10-07 16:48:05 +0100 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2024-10-09 09:43:26 +0100 |
commit | 69bd654946ab5512aa282bc8b74b654d80bf5245 (patch) | |
tree | 3fda10fa3f2609e9160fcc605741522cb6be95c0 /docker-compose/config/nginx/nginx.conf | |
parent | e2517a8b993ed884edb251b91ce600d0a1a9fefe (diff) |
Autodiscover cps-and-ncmp containers when load balancing
- remove hard-coded container names from load balancer(nginx) and
prometheus
Issue-ID: CPS-2437
Change-Id: Ia64b949c2eb3e4d67e123b046e66d5bfdda2c801
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'docker-compose/config/nginx/nginx.conf')
-rw-r--r-- | docker-compose/config/nginx/nginx.conf | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docker-compose/config/nginx/nginx.conf b/docker-compose/config/nginx/nginx.conf index 7d6b997f77..6e9d102fed 100644 --- a/docker-compose/config/nginx/nginx.conf +++ b/docker-compose/config/nginx/nginx.conf @@ -21,9 +21,7 @@ http { # Add more server entries here for scaling or load balancing upstream cps-and-ncmp { least_conn; - server docker-compose-cps-and-ncmp-1:8080; - ### DEBUG: Disable next line for easier debugging on 1 instance (see also docker-compose.yml) - server docker-compose-cps-and-ncmp-2:8080; + server cps-and-ncmp:8080; } server { |