remove unnecessary port specification in docker-compos and app-servers chart

This commit is contained in:
Jonathan Math 2021-04-07 10:22:01 -05:00
parent 00601b49c1
commit d3c29aaa33
2 changed files with 3 additions and 3 deletions

View file

@ -168,7 +168,7 @@ services:
ports:
- 19999:19999
environment:
- MONITOR_URL=https://haproxy:443/monitor
- MONITOR_URL=https://haproxy/monitor
volumes:
- ./docker/netdata/netdatalib:/var/lib/netdata
- ./docker/netdata/netdatacache:/var/cache/netdata

View file

@ -4,10 +4,10 @@ import os
import requests
MONITOR_URL = os.getenv("MONITOR_URL")
if MONITOR_URL == "https://haproxy:443/monitor":
if MONITOR_URL == "https://haproxy/monitor":
verify = False
else:
verify = False
verify = True
endpoints = {